.products-section{
    padding: 90px 7%;
    background: #f8fafc;
}

.section-heading{
    text-align: center;
    margin-bottom: 60px;
}

.section-heading h2{
    font-size: 42px;
    font-family: 'Cinzel', serif;
    color: #0f172a;
}

.section-heading p{
    color: #64748b;
    margin-top: 10px;
}

.products-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 35px;
}

.product-card{
    background: white;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: 0.35s ease;
}

.product-card:hover{
    transform: translateY(-8px);
}

.product-image{
    background: transparent;
    padding: 25px;
    text-align: center;
}

.product-image img{
    width: 100%;
    max-height: 420px;
    object-fit: contain;
}

.product-content{
    padding: 28px;
}

.product-content h3{
    font-size: 30px;
    margin-bottom: 10px;
    color: #0f172a;
}

.rating{
    color: #f59e0b;
    font-size: 18px;
    margin-bottom: 14px;
}

.rating span{
    color: #475569;
    font-weight: 600;
    margin-left: 6px;
}

.product-short{
    color: #64748b;
    margin-bottom: 20px;
}

.size-options{
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.size-btn{
    border: 1px solid #d4af37;
    background: white;
    color: #0f172a;
    padding: 8px 18px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s ease;
}

.size-btn:hover{
    background: #fef3c7;
}

.active-size{
    background: #d4af37;
    color: #0f172a;
}

.price{
    font-size: 34px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 25px;
}

.product-buttons{
    display: flex;
    gap: 12px;
}

.cart-btn{
    flex: 1;
    background: #0f172a;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
}

.details-btn{
    flex: 1;
    background: #d4af37;
    color: #0f172a;
    text-decoration: none;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
}

.cart-btn:hover,
.details-btn:hover{
    opacity: 0.9;
}



/* =========================
   BULK CARD
========================= */

.bulk-card{
    grid-column: 1 / -1;
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.bulk-icon{
    padding-top: 50px;
}

.bulk-icon i{
    font-size: 70px;
    color: #d4af37;
}

.bulk-content{
    align-items: stretch;
}

.bulk-features{
    width: 100%;
    margin-bottom: 30px;
}

.bulk-feature{
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 12px;
    color: #334155;
    font-weight: 500;
}

.bulk-feature i{
    color: #16a34a;
    margin-right: 8px;
}



/* =========================
   BUTTONS
========================= */

.product-buttons{
    display: flex;
    gap: 14px;
    margin-top: auto;
}

.view-btn,
.buy-btn{
    flex: 1;
    text-align: center;
    text-decoration: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s ease;
}

.view-btn{
    background: #0f172a;
    color: white;
}

.view-btn:hover{
    background: #1e293b;
}

.buy-btn{
    background: #25d366;
    color: white;
}

.buy-btn:hover{
    background: #1ebe5d;
}



/* =========================
   RESPONSIVE
========================= */

@media(max-width:900px){

    .products-grid{
        grid-template-columns: 1fr;
    }

    .bulk-card{
        max-width: 100%;
    }

}

@media(max-width:768px){

    .products-section{
        padding: 70px 5%;
    }

    .section-heading h2{
        font-size: 34px;
    }

    .product-content{
        padding: 28px;
    }

    .product-buttons{
        flex-direction: column;
    }

    .product-details{
        grid-template-columns: 1fr;
    }

    .full-width{
        grid-column: span 1;
    }
.bulk-card{
    width: calc(100% - 20px);
    max-width: 700px;
    margin: 0 auto;
}

.bulk-content{
    padding: 24px;
}

.bulk-icon{
    padding-top: 35px;
}
}


/* =========================
   CART TOAST
========================= */

.cart-toast{

    position: fixed;

    bottom: 25px;

    right: 25px;

    background: #16a34a;

    color: white;

    padding: 16px 20px;

    border-radius: 14px;

    display: flex;

    align-items: center;

    gap: 18px;

    box-shadow: 0 12px 35px rgba(0,0,0,0.18);

    z-index: 9999;

    opacity: 0;

    visibility: hidden;

    transform: translateY(30px);

    transition: 0.35s ease;
}

.cart-toast.show-toast{

    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}

.toast-content{

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 15px;

    font-weight: 600;
}

.toast-content i{

    font-size: 18px;
}

.go-cart-btn{

    background: white;

    color: #16a34a;

    text-decoration: none;

    font-weight: 700;

    padding: 10px 16px;

    border-radius: 8px;

    transition: 0.3s ease;
}

.go-cart-btn:hover{

    transform: translateY(-2px);
}

@media(max-width:768px){

    .cart-toast{

        left: 15px;

        right: 15px;

        bottom: 15px;

        flex-direction: column;

        align-items: stretch;

        text-align: center;
    }

    .go-cart-btn{

        text-align: center;
    }

}

/* =========================
   COMBO PRODUCTS
========================= */

.combo-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:35px;
    margin-top:70px;
}

.combo-card:nth-child(1),
.combo-card:nth-child(2),
.combo-card:nth-child(3){
    grid-column:span 2;
}

.combo-card:nth-child(4){
    grid-column:2 / span 2;
}

.combo-card:nth-child(5){
    grid-column:4 / span 2;
}

@media(max-width:992px){

    .combo-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .combo-card{
        grid-column:auto !important;
    }

}

@media(max-width:768px){

    .combo-grid{
        grid-template-columns:1fr;
    }

    .combo-card{
        grid-column:auto !important;
    }

}

.combo-card{
    overflow:hidden;
}

.combo-card{
    overflow:hidden;
    background:#fff;
    border-radius:22px;
}

.combo-card .product-image{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 22px 22px 8px;
    background: #fff;
    overflow: hidden;
}

.combo-card .product-image img{
    width:88%;
    aspect-ratio:1/1;
    object-fit:contain;
    transition:.35s ease;
}

.combo-card:hover .product-image img{
    transform:scale(1.04);
}

.combo-card:hover .product-image img{
    transform:scale(1.05);
}

.combo-card .product-content{
    padding:24px;
    text-align:center;
}
.combo-card h3{
    font-size:26px;
    color:#0f172a;
    margin-bottom:10px;
    font-weight:700;
}

.combo-card .product-short{
    color:#64748b;
    font-size:15px;
    margin-bottom:24px;
    min-height:42px;
}

.combo-price{
    display:flex;
    justify-content:center;
    align-items:flex-start;
    gap:12px;
    margin-bottom:28px;
    flex-wrap:wrap;
}

.combo-price .mrp{
    color:#94a3b8;
    text-decoration:line-through;
    font-size:18px;
    font-weight:600;
}

.combo-price .offer-price{
    color:#0f172a;
    font-size:32px;
    font-weight:700;
    line-height:1;
}

.combo-price .discount{
    background:#dcfce7;
    color:#15803d;
    font-size:12px;
    font-weight:700;
    padding:5px 10px;
    border-radius:30px;
    align-self:flex-start;
}

.combo-card .product-buttons{
    display:flex;
}

.combo-card .cart-btn{
    width:100%;
}

.combo-card .cart-btn:hover{
    transform:translateY(-3px);
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

    .combo-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .combo-card .product-image{
        min-height:200px;
        padding:24px;
    }

    .combo-card .product-image img{
        max-width:170px;
    }

    .combo-card h3{
        font-size:22px;
    }

    .combo-price .offer-price{
        font-size:28px;
    }

}


.free-shipping-ribbon{

    position: absolute;

    top: 18px;

    left: -42px;

    width: 170px;

    background: #dc2626;

    color: white;

    text-align: center;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

    padding: 8px 0;

    transform: rotate(-45deg);

    box-shadow: 0 4px 12px rgba(0,0,0,.18);

    z-index: 100;

    pointer-events: none;

}


/* =========================
   MAIN PRODUCT PRICE
========================= */

.product-price-box{
    margin: 18px 0 24px;
}

.product-price-box .combo-price{
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.product-price-box .mrp{
    font-size: 17px;
}

.product-price-box .offer-price{
    font-size: 30px;
}

.product-price-box .discount{
    margin-top: -3px;
}
