*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.container-fluid{
    background-color: #303f3c;
}
.navbar-brand {
    color: white;
    font-family:'Cormorant Garamond';
    font-size: 20pt;
    font-weight: 18px;
}
#mainContent{
    background-image: linear-gradient(135deg, #000000, #555555);
    width: 100%;
    height: auto;
    padding-top: 130px;
}
.categories{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    
}
.jewellery-icon{
    width: 100px;
    height: 100px;
    padding: 5px;
    border: white solid 1px;
    border-radius: 100px;
}
.category-name{
    color: white;
    font-family:'Cormorant Garamond';
    font-size: 20pt;
    font-weight: 18px;
}

.section-name{
    color: white;
    width: 90%;
    background-color: #303f3c;
    margin: 60px 10px 0 40px;
    padding: 20px;
    font-family:'Cormorant Garamond';
    font-size: 20pt;
    font-weight: 18px;
}

.show{
    width: 90%;
    margin: 0 10px 40px 40px;
}
.shop-section img{
    width: 90%;
    height: 230px;
    object-fit: cover;
}

.cards-section{
    display: flex;
    flex-direction: row;
    gap: 2px;
    width: 90%;
    margin: 0 10px 20px 40px;
}


.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    max-width: 280px;
    margin: auto;
    color: white;
    text-align: center;
    font-family: arial;
    background-color: #303f3c;
    }

    .card img{
        padding: 14px;
    }

    .card h1{
        font-size: 1rem;
        font-weight: bold;
    }
.price {
    color:#303f3c;
    font-size: 2rem;
    color: white;
}

.card button {
    border: none;
    outline: 0;
    padding: 3px;
    color: white;
    background-color: #000;
    text-align: center;
    cursor: pointer;
    width: 100%;
    font-size: 18px;
}

.card button:hover {
    opacity: 0.7;
}

.img-hover-zoom {
    height: auto; /* [1.1] Set it as per your need */
    overflow: hidden; /* [1.2] Hide the overflowing of child elements */
  }
  
  /* [2] Transition property for smooth transformation of images */
  .img-hover-zoom img {
    transition: transform .2s ease;
  }
  
  /* [3] Finally, transforming the image when container gets hovered */
  .img-hover-zoom:hover img {
    transform: scale(1.6);
  }