/* Desktop - 5 cards */
@media (min-width:1200px){
    .col-lg-custom{
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* Laptop - 4 cards */
@media (min-width:992px) and (max-width:1199px){
    .col-lg-custom{
        flex: 0 0 25%;
        max-width: 25%;
    }
}

/* Tablet - 3 cards */
@media (min-width:768px) and (max-width:991px){
    .col-lg-custom{
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

/* Mobile */
@media (max-width:767px){

.product-name {
    font-size: 13px !important;
}
.price{
    font-size: 18px !important; 
}

    .feature-card img{
        height:180px !important;
    }

    .feature-body{
        padding:10px;
    }

    .product-name{
        font-size:13px;
    }

    .price{
        font-size:16px;
    }

    .old{
        font-size:11px;
    }

    .style-btn,.discount{
        display:none !important;
    }

    .discount{
        display:none;
    }

    .card-row{
        justify-content:flex-start;
        gap:8px;
    }

    .card-row.mt-3{
        margin-top:5px !important;
    }

    .price-box{
        gap:5px;
    }
    
}


.style-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#ff3f6c;
    color:#fff;
    text-decoration:none;
    border:1px solid #ff3f6c;
    border-radius:25px;
    padding:7px 16px;
    font-size:12px;
    font-weight:600;
}


.trending-section{
    background:#f7e4f3;
    padding:50px 0;
    border-radius:12px;
}

.section-title{
    font-size:36px;
    font-weight:700;
    color:#222;
}

.section-subtitle{
    color:#666;
    font-size:16px;
}

/* Card */

.feature-card{
    background:#fff;
    border-radius:7px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    height:100%;
}

.feature-card:hover{
    box-shadow:0 15px 30px rgba(0,0,0,.15);
}

.feature-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

/* Body */

.feature-body{
    padding:18px;
}

/* Common Row */

.card-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
}

/* Product Name */

.product-name{
    margin:0;
    flex:1;
    font-size:18px;
    font-weight:600;
    color:#222;
}

/* Discount */

.discount{
    display:inline-block;
    background:#ff3f6c;
    color:#fff;
    padding:6px 14px;
    border-radius:20px;
    font-size:12px;
    font-weight:600;
}

/* Price */

.price-box{
    display:flex;
    align-items:center;
    gap:10px;
}

.price{
    font-size:24px;
    font-weight:700;
    color:#222;
}

.old{
    font-size:15px;
    color:#888;
    text-decoration:line-through;
}

/* Shop Button */

.buy-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    background:#ff3f6c;
    color:#fff;
    text-decoration:none;

    padding:8px 18px;

    border-radius:25px;

    font-size:13px;
    font-weight:600;

    white-space:nowrap;

    transition:.3s;
}

.trending-row{
    margin-top:3px !important;
}

.buy-btn:hover{
    background:#e0315b;
    color:#fff;
}