/* -------------------------- Products -------------------------- */
.products-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 2rem;
}

.product-width-container{
    position: relative;
    display: flex;
    justify-content: center;
    width: 30%; /* Ensure 3 items per row */
    margin-bottom: 20px; /* Add some spacing between rows */
}

.product-width-container a{
    color: rgb(37, 37, 37);
    text-decoration: none;
}

.product-card{    
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 19vw;
    height: 19vw;
    padding: 0.7rem;
    transition: .3s ease;
}

/* .product-card::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 57%;
    height: 57%;
    border-radius: 50%;
    z-index: -1;
    transition: .3s ease;
}

.product-card:hover::before{
    width: 150%;
    height: 150%;
} */

.color-bg{
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    overflow: hidden;
    transition: .25s ease;
    justify-content: center;
    align-items: center;
}

.product-card:hover .color-bg{
    border-radius: .25rem;
}

.product-card:hover .color-bg img{
    transform: scale(1.1);
}

.product-card img {
    width: 150%;
    height: 150%;
    object-fit: cover;
}

.product-image {
    width: 100% !important;
    height: 100% !important;
    transform: rotate(-29deg);
}

.product-name{
    font-family: Amsterdam;
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    filter: drop-shadow(0px 0px 3px black);
}

/* .Angelic::before{
    background-color: #be1e1e;
}

.Unstoppable::before{
    background-color: #ad706b;
}

.Unforgettable::before{
    background-color: #cd4458;
}

.Irresistible::before{
    background-color: #cbc4da;
}

.Unbreakable::before{
    background-color: #5a301d;
} */

/* -------------------------- End Products -------------------------- */

.ratings i {
    font-size: 16px;
    color: red;
}
.strike-text {
    color: red;
    text-decoration: line-through;
}
.dot {
    height: 7px;
    width: 7px;
    margin-left: 6px;
    margin-right: 6px;
    margin-top: 3px;
    background-color: blue;
    border-radius: 50%;
    display: inline-block;
}
.spec-1 {
    color: #938787;
    font-size: 15px;
}
h5 {
    font-weight: 400;
}
.para {
    font-size: 16px;
}

@media(max-width:900px){

    .product-width-container{
        width: 50%;
    }

    .product-card{
        width: 50vw;
        height: 50vw;
    }

}


@media(max-width:500px){

    .product-width-container{
        margin-bottom: 50px;
    }

    .product-name{
        font-size: .9rem;
        bottom: 2%;
    }


}
