/* ===== GOOGLE RESET ===== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#F9F6EE;
    color:#2b2b2b;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/* ===== TOP BAR ===== */

.top-bar{
    background:#2E7D32;
    color:white;
    font-size:14px;
}

.top-bar .container{
    display:flex;
    justify-content:space-between;
    padding:10px 0;
}

/* ===== HEADER ===== */

header{
    background:white;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

nav{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:35px;
    flex:2;
}

nav a{
    text-decoration:none;
    color:#333;
    font-weight:500;
    font-size:17px;
    transition:.3s;
}

nav a:hover{
    color:#2E7D32;
}

.icons{
    display:flex;
    align-items:center;
    gap:18px;
    font-size:24px;
    flex:1;
    justify-content:flex-end;
}

/* ===== HERO ===== */

.hero{
    height:90vh;

    background:
    linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
    url("https://images.unsplash.com/photo-1515377905703-c4788e51af15?auto=format&fit=crop&w=1600&q=80");

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
}

.overlay{
    width:100%;
}

.hero-content{
    width:90%;
    max-width:650px;
    margin-left:8%;
    color:white;
}

.hero-content h4{
    color:#FFD54F;
    margin-bottom:15px;
    letter-spacing:1px;
}

.hero-content h1{
    font-size:62px;
    line-height:72px;
    margin-bottom:25px;
    font-family:'Cormorant Garamond',serif;
}

.hero-content p{
    font-size:18px;
    line-height:32px;
    margin-bottom:35px;
}

/* ===== BUTTONS ===== */

.buttons a{

    display:inline-block;

    padding:15px 34px;

    margin-right:15px;

    border-radius:40px;

    text-decoration:none;

    font-weight:600;

    transition:.4s;

}

.buttons a:first-child{

    background:#2E7D32;

    color:white;

}

.buttons a:last-child{

    background:#C9A227;

    color:white;

}

.buttons a:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 25px rgba(0,0,0,.25);

}

/* ===== MOBILE ===== */

@media(max-width:900px){

.nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 0;
}

nav{
    display:flex;
    gap:30px;
}

nav a{
    text-decoration:none;
    color:#333;
    font-size:17px;
    font-weight:500;
}

nav a:hover{
    color:#2E7D32;
}

.hero-content h1{

font-size:42px;

line-height:50px;

}

.hero{

height:80vh;

}

}/* ===========================
HEALTH SECTION
=========================== */

.health-section{

    padding:90px 0;

    background:#fff;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:46px;

    color:#2E7D32;

    font-family:'Cormorant Garamond',serif;

    margin-bottom:10px;

}

.section-title p{

    color:#666;

    font-size:18px;

}

.health-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.health-card{

    background:#F9F6EE;

    padding:40px;

    border-radius:20px;

    text-align:center;

    transition:.4s;

    cursor:pointer;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

}

.health-card:hover{

    transform:translateY(-12px);

    background:#2E7D32;

    color:white;

}

.health-card .icon{

    font-size:55px;

    margin-bottom:20px;

}

.health-card h3{

    font-size:22px;

}

/* MOBILE */

@media(max-width:900px){

.health-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.health-grid{

grid-template-columns:1fr;

}

}/* ===========================
FEATURED PRODUCTS
=========================== */

.products-section{

    padding:90px 0;

    background:#F9F6EE;

}

.product-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
}

.product-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    text-align:center;

    padding:25px;

    position:relative;

    transition:.4s;

}

.product-card:hover{

    transform:translateY(-10px);

}

.product-card img{

    width:100%;
    height:320px;
    object-fit:cover;
    border-radius:15px;
    transition:.4s;

}

.product-card:hover img{

    transform:scale(1.05);

}

.sale-badge{

    position:absolute;

    top:15px;

    left:15px;

    background:#2E7D32;

    color:white;

    padding:6px 12px;

    border-radius:30px;

    font-size:12px;

}

.product-card h3{

    margin-top:20px;

    margin-bottom:10px;

}

.rating{

    color:#f5b301;

    margin-bottom:12px;

}

.price{

    font-size:24px;

    font-weight:bold;

    color:#2E7D32;

}

.price span{

    color:#888;

    text-decoration:line-through;

    font-size:18px;

    margin-left:8px;

}

.product-card button{

    margin-top:20px;

    width:100%;

    border:none;

    background:#2E7D32;

    color:white;

    padding:14px;

    border-radius:40px;

    cursor:pointer;

    transition:.3s;

}

.product-card button:hover{

    background:#C9A227;

}

@media(max-width:900px){

.product-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.product-grid{

grid-template-columns:1fr;

}

}/* WHY CHOOSE US */

.why-us{

    padding:90px 0;

    background:#ffffff;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.why-card{

    background:#F9F6EE;

    border-radius:20px;

    padding:40px 25px;

    text-align:center;

    transition:.4s;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.why-card:hover{

    transform:translateY(-10px);

    background:#2E7D32;

    color:#fff;

}

.why-icon{

    font-size:55px;

    margin-bottom:20px;

}

.why-card h3{

    margin-bottom:15px;

    font-size:24px;

}

.why-card p{

    line-height:1.7;

    color:#666;

}

.why-card:hover p{

    color:#fff;

}

@media(max-width:900px){

.why-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.why-grid{

grid-template-columns:1fr;

}

}/* ================= TESTIMONIALS ================= */

.testimonials{

padding:90px 8%;

background:#F9F6EE;

}

.testimonial-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:50px;

}

.testimonial-card{

background:white;

padding:40px;

border-radius:20px;

text-align:center;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.4s;

}

.testimonial-card:hover{

transform:translateY(-10px);

}

.testimonial-card img{

width:90px;

height:90px;

border-radius:50%;

margin-bottom:20px;

}

.testimonial-card h3{

margin-bottom:10px;

}

.stars{

color:#C9A227;

font-size:22px;

margin-bottom:15px;

}

.testimonial-card p{

line-height:1.8;

color:#666;

}

@media(max-width:900px){

.testimonial-grid{

grid-template-columns:1fr;

}

}/*================ BLOG ================*/

.blog-section{

padding:90px 8%;

background:#fff;

}

.blog-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

margin-top:50px;

}

.blog-card{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.4s;

}

.blog-card:hover{

transform:translateY(-10px);

}

.blog-card img{

width:100%;

height:230px;

object-fit:cover;

}

.blog-content{

padding:25px;

}

.blog-content span{

display:inline-block;

background:#2E7D32;

color:white;

padding:6px 15px;

border-radius:20px;

font-size:14px;

margin-bottom:15px;

}

.blog-content h3{

margin-bottom:15px;

font-size:24px;

color:#222;

}

.blog-content p{

line-height:1.8;

color:#666;

margin-bottom:20px;

}

.blog-content a{

text-decoration:none;

color:#2E7D32;

font-weight:bold;

}

.blog-content a:hover{

color:#C9A227;

}

@media(max-width:900px){

.blog-grid{

grid-template-columns:1fr;

}

}/*======================
FOOTER
=======================*/

.footer{

    background:#1f4d2e;

    color:white;

    padding:70px 0 20px;

}

.footer-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:40px;

}

.footer-col h2,
.footer-col h3{

    margin-bottom:20px;

}

.footer-col p{

    color:#d8d8d8;

    line-height:1.8;

    margin-bottom:12px;

}

.footer-col a{

    display:block;

    color:#d8d8d8;

    text-decoration:none;

    margin-bottom:12px;

    transition:.3s;

}

.footer-col a:hover{

    color:#C9A227;

    padding-left:6px;

}

.socials{

    display:flex;

    gap:15px;

    font-size:26px;

    margin-top:20px;

}

.socials span{

    cursor:pointer;

    transition:.3s;

}

.socials span:hover{

    transform:translateY(-5px);

}

.copyright{

    text-align:center;

    margin-top:50px;

    padding-top:20px;

    border-top:1px solid rgba(255,255,255,.2);

    color:#ccc;

}

@media(max-width:900px){

.footer-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.socials{

justify-content:center;

}

}.cart-icon{
    position:relative;
    display:inline-block;
    font-size:24px;
    cursor:pointer;
    margin:0 10px;
}

#cart-count{
    position:absolute;
    top:-8px;
    right:-10px;
    background:#C9A227;
    color:white;
    width:20px;
    height:20px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:bold;
}/* CART SIDEBAR */

.cart-sidebar{

position:fixed;

top:0;

right:-420px;

width:400px;

height:100%;

background:white;

box-shadow:-5px 0 25px rgba(0,0,0,.2);

transition:.4s;

z-index:9999;

display:flex;

flex-direction:column;

}

.cart-sidebar.active{

right:0;

}

.cart-header{

display:flex;

justify-content:space-between;

align-items:center;

padding:20px;

background:#2E7D32;

color:white;

}
#close-cart,
#close-wishlist,
#close-login{
    font-size:28px;
    font-weight:bold;
    cursor:pointer;
    line-height:1;
    color:#fff;
    transition:.3s;
}

#close-cart:hover,
#close-wishlist:hover,
#close-login:hover{
    color:#ffd54f;
}

#cart-items{
    flex:1;
    overflow-y:auto;
    padding:20px;
    padding-bottom:120px;
}

.cart-item{

display:flex;

justify-content:space-between;

margin-bottom:15px;

padding-bottom:15px;

border-bottom:1px solid #ddd;

}

.cart-footer{
    padding:20px;
    border-top:1px solid #ddd;
    background:#fff;
    position:sticky;
    bottom:0;
    z-index:5;
}

.cart-footer h3{
    margin:0 0 15px 0;
}

.checkout-btn{

width:100%;

padding:15px;

background:#2E7D32;

color:white;

border:none;

border-radius:10px;

cursor:pointer;

font-size:18px;

}

.checkout-btn:hover{

background:#C9A227;

}.qty-box{

display:flex;

align-items:center;

gap:10px;

margin-top:10px;

}

.qty-box button{

width:30px;

height:30px;

border:none;

background:#2E7D32;

color:white;

border-radius:5px;

cursor:pointer;

font-size:18px;

}

.qty-box span{

font-weight:bold;

font-size:18px;

}

.remove-btn{

background:#d32f2f;

color:white;

border:none;

padding:8px 14px;

border-radius:5px;

cursor:pointer;

}

.remove-btn:hover{

background:#b71c1c;

}/* ================= STATS ================= */

.stats-section{
    padding:80px 0;
    background:#2E7D32;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    text-align:center;
}

.stat-card{
    color:white;
}

.stat-card h2{
    font-size:48px;
    color:#FFD54F;
    margin-bottom:10px;
}

.stat-card p{
    font-size:18px;
}

@media(max-width:900px){
    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .stats-grid{
        grid-template-columns:1fr;
    }
}/* ==========================
SHOP BANNER
========================== */

.shop-banner{

    background: linear-gradient(rgba(46,125,50,.85), rgba(46,125,50,.85)),
    url("https://images.unsplash.com/photo-1514996937319-344454492b37?auto=format&fit=crop&w=1600&q=80");

    background-size: cover;
    background-position: center;

    padding: 100px 0;

    text-align: center;

    color: white;
}

.shop-banner h1{

    font-size: 60px;

    font-family: 'Cormorant Garamond', serif;

    margin-bottom: 20px;
}

.shop-banner p{

    font-size: 20px;

    max-width: 700px;

    margin: auto;

    line-height: 1.8;
}

@media(max-width:768px){

    .shop-banner h1{

        font-size:42px;

    }

    .shop-banner p{

        font-size:18px;

    }

}@media (max-width:1200px){
    .product-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media (max-width:768px){
    .product-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:480px){
    .product-grid{
        grid-template-columns:1fr;
    }
}/* ================= PRODUCT DETAILS PAGE ================= */

.product-page{
    padding:80px 0;
    background:#f9f6ee;
}

.product-details{
    display:flex;
    gap:60px;
    align-items:flex-start;
    flex-wrap:wrap;
}

.product-gallery{
    flex:1;
    min-width:450px;
}

.product-gallery #mainImage{
    width:100%;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.thumb-images{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.thumb-images img{
    width:90px;
    height:90px;
    object-fit:cover;
    border-radius:10px;
    cursor:pointer;
    border:2px solid transparent;
    transition:.3s;
}

.thumb-images img:hover{
    border-color:#2E7D32;
}

.product-info{
    flex:1;
    min-width:400px;
}

.product-info h1{
    font-size:42px;
    color:#2E7D32;
    margin-bottom:15px;
}

.product-price{
    font-size:38px;
    color:#2E7D32;
    margin:20px 0;
}

.product-price span{
    color:#888;
    text-decoration:line-through;
    font-size:24px;
    margin-left:10px;
}

.rating{
    color:#f5b301;
    font-size:24px;
    margin-bottom:20px;
}

.short-desc{
    font-size:18px;
    color:#555;
    line-height:1.8;
    margin-bottom:25px;
}

.quantity{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:30px;
}

.quantity button{
    width:45px;
    height:45px;
    border:none;
    background:#2E7D32;
    color:white;
    font-size:22px;
    border-radius:8px;
    cursor:pointer;
}

.quantity input{
    width:60px;
    height:45px;
    text-align:center;
    font-size:18px;
}

.cart-btn,
.buy-btn{
    width:220px;
    padding:16px;
    border:none;
    border-radius:50px;
    font-size:18px;
    cursor:pointer;
    margin-right:15px;
    margin-top:15px;
}

.cart-btn{
    background:#2E7D32;
    color:white;
}

.buy-btn{
    background:#d4a017;
    color:white;
}

.cart-btn:hover,
.buy-btn:hover{
    opacity:.9;
}/* Product Description */

.product-description{

    padding:70px 0;

    background:#fff;

}

.product-description h2{

    color:#2E7D32;

    margin:35px 0 15px;

    font-size:32px;

}

.product-description p{

    color:#555;

    font-size:18px;

    line-height:1.9;

}

.product-description ul{

    margin-left:25px;

    margin-bottom:20px;

}

.product-description li{

    font-size:18px;

    color:#444;

    line-height:2;

}/* Customer Reviews */

.reviews{

    padding:70px 0;

    background:#f9f6ee;

}

.reviews h2{

    text-align:center;

    color:#2E7D32;

    margin-bottom:40px;

    font-size:36px;

}

.review-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.review-card{

    background:#fff;

    padding:30px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.review-card:hover{

    transform:translateY(-8px);

}

.review-card h3{

    margin:15px 0;

    color:#2E7D32;

}

.review-card p{

    color:#555;

    line-height:1.8;

}/* Related Products */

.related-products{
    padding:80px 0;
    background:#fff;
}

.related-products h2{
    text-align:center;
    color:#2E7D32;
    margin-bottom:50px;
    font-size:42px;
}

.related-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.related-card{
    background:#fff;
    border-radius:20px;
    padding:20px;
    text-align:center;
    transition:0.4s;
}

.related-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.related-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:15px;
}

.related-card h3{

    margin:20px 0 10px;

}

.related-card p{

    color:#2E7D32;

    font-size:24px;

    font-weight:bold;

    margin-bottom:20px;

}

.view-btn{
    display:inline-block;
    margin-top:20px;
    padding:12px 28px;
    background:#2E7D32;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    transition:.3s;
}

.view-btn:hover{
    background:#1B5E20;
}/* ================= FAQ ================= */

.faq-section{

    padding:90px 0;

    background:#F9F6EE;

}

.faq{

    max-width:900px;

    margin:auto;

}

.faq-item{

    background:#fff;

    border-radius:15px;

    margin-bottom:20px;

    overflow:hidden;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.faq-question{

    width:100%;

    padding:22px 30px;

    background:none;

    border:none;

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-size:20px;

    font-weight:600;

    cursor:pointer;

    color:#2E7D32;

}

.faq-answer{

    display:none;

    padding:0 30px 25px;

}

.faq-answer p{

    color:#555;

    line-height:1.8;

}/* ================= FOOTER ================= */

.footer{
    background:#1f5c2e;
    color:#fff;
    padding:60px 0 20px;
    margin-top:60px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

.footer-col h3{
    margin-bottom:20px;
    color:#d4af37;
    font-size:22px;
}

.footer-col p{
    line-height:1.8;
    color:#ddd;
}

.footer-col a{
    display:block;
    color:#ddd;
    text-decoration:none;
    margin-bottom:12px;
    transition:.3s;
}

.footer-col a:hover{
    color:#d4af37;
    padding-left:5px;
}

.footer-bottom{
    text-align:center;
    border-top:1px solid rgba(255,255,255,.2);
    margin-top:40px;
    padding-top:20px;
    color:#ccc;
}

/* Responsive */

@media(max-width:768px){

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:500px){

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

}.thumb{
    cursor:pointer;
    border:2px solid transparent;
    transition:.3s;
}

.thumb:hover{
    transform:scale(1.05);
}

.thumb.active{
    border:3px solid #2E7D32;
}/* ================= IMAGE ZOOM ================= */

.product-gallery{
    overflow: hidden;
    border-radius: 20px;
}

.product-gallery #mainImage{
    transition: transform .4s ease;
    cursor: zoom-in;
}

.product-gallery:hover #mainImage{
    transform: scale(1.15);
}/* Breadcrumb */

.breadcrumb{
    background:#f8f5ec;
    padding:15px 0;
    font-size:15px;
}

.breadcrumb a{
    text-decoration:none;
    color:#2E7D32;
    font-weight:600;
}

.breadcrumb span{
    color:#666;
}

/* Product Badges */

.stock-status,
.delivery-info,
.secure-payment{
    margin:10px 0;
    color:#2E7D32;
    font-weight:600;
}/* Product Features */

.product-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:35px;
}

.feature-box{
    background:#fff;
    padding:20px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.feature-box:hover{
    transform:translateY(-5px);
}

.feature-box h4{
    margin:10px 0 5px;
    color:#2E7D32;
}

.feature-box p{
    font-size:14px;
    color:#666;
}/* ================= CART PAGE ================= */

.cart-page{
    padding:80px 0;
    background:#F9F6EE;
}

.cart-layout{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
}

.cart-products{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.cart-summary{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    height:fit-content;
}

.summary-box p,
.summary-box h3{
    display:flex;
    justify-content:space-between;
    margin:20px 0;
}

.summary-box hr{
    border:none;
    border-top:1px solid #ddd;
    margin:20px 0;
}

.summary-box button{
    width:100%;
    margin-top:20px;
}

/* Cart Items */

.cart-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding:20px 0;
    border-bottom:1px solid #eee;
}

.cart-item img{
    width:100px;
    border-radius:12px;
}

.cart-item-info{
    flex:1;
}

.cart-item-info h3{
    margin-bottom:10px;
}

.cart-item-price{
    color:#2E7D32;
    font-weight:bold;
    font-size:20px;
}

.remove-btn{
    background:#d32f2f;
    color:#fff;
    border:none;
    padding:8px 15px;
    border-radius:8px;
    cursor:pointer;
}

.remove-btn:hover{
    background:#b71c1c;
}

/* Responsive */

@media(max-width:900px){

    .cart-layout{
        grid-template-columns:1fr;
    }

}/* ================= CHECKOUT PAGE ================= */

.checkout-page{
    padding:70px 0;
    background:#f8f5ed;
}

.checkout-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
}

.checkout-form,
.payment-box{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.checkout-form h2,
.payment-box h2{
    margin-bottom:25px;
    color:#2E7D32;
}

.checkout-form form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.checkout-form input,
.checkout-form textarea{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:15px;
    font-family:Poppins,sans-serif;
}

.checkout-form textarea{
    height:120px;
    resize:none;
}

.payment-box label{
    font-size:16px;
    cursor:pointer;
}

.payment-box input{
    margin-right:10px;
}

.payment-box .buy-btn{
    width:100%;
    margin-top:25px;
}

@media(max-width:768px){

.checkout-grid{

grid-template-columns:1fr;

}

}/* ================= SUCCESS PAGE ================= */

.success-page{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#f8f5ed;
}

.success-box{
    background:#fff;
    padding:50px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
    max-width:600px;
}

.success-box h1{
    color:#2E7D32;
    margin-bottom:20px;
}

.success-box p{
    margin:15px 0;
    font-size:18px;
}

.success-box .buy-btn{
    display:inline-block;
    margin-top:25px;
    text-decoration:none;
}/* Sticky Header */

header{
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    transition: 0.3s;
}

header.scrolled{
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}/* ===== Premium Logo ===== */

.logo{
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo a{
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img{
    height: 60px;
    width: auto;
    display: block;
}

.logo h2{
    margin: 0;
    font-size: 28px;
    font-family: 'Cormorant Garamond', serif;
    color: #2E7D32;
    font-weight: 700;
    line-height: 1;
}

.logo h2 span{
    color: #C9A227;
}.product-card h3 a{
    text-decoration: none;
    color: #222;
    transition: .3s;
}

.product-card h3 a:hover{
    color: #2E7D32;
}

.product-card img{
    cursor: pointer;
}nav a.active{
    color:#2E7D32;
    font-weight:700;
    border-bottom:3px solid #2E7D32;
    padding-bottom:6px;
}/* ================= TOAST NOTIFICATION ================= */

.toast{
    position: fixed;
    top: 25px;
    right: 25px;
    background: #2E7D32;
    color: #fff;
    padding: 14px 22px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: .35s;
    z-index: 9999;
}

.toast.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* ===== ICONS ===== */

.wishlist-icon,
.cart-icon{

    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:.3s;

}

.wishlist-icon:hover,
.cart-icon:hover{

    transform:scale(1.12);

}

#wishlist-count,
#cart-count{

    position:absolute;
    top:-8px;
    right:-10px;
    width:20px;
    height:20px;
    border-radius:50%;
    background:#C9A227;
    color:#fff;
    font-size:12px;
    font-weight:bold;
    display:flex;
    align-items:center;
    justify-content:center;

}

.wishlist-btn{

    width:100%;
    margin-top:10px;
    background:#fff;
    border:2px solid #e91e63;
    color:#e91e63;
    border-radius:40px;
    padding:12px;
    cursor:pointer;
    transition:.3s;

}

.wishlist-btn:hover{

    background:#e91e63;
    color:#fff;

}
/* ================= LOGIN POPUP ================= */

.login-popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.5);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.login-popup.active{
    display:flex;
}

.login-box{
    width:380px;
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    position:relative;
    box-shadow:0 20px 40px rgba(0,0,0,.2);
}

.login-box h2{
    color:#2E7D32;
    margin-bottom:25px;
}

.login-box input{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:10px;
    margin-bottom:20px;
    font-size:16px;
}

.login-box button{
    width:100%;
    padding:14px;
    background:#2E7D32;
    color:#fff;
    border:none;
    border-radius:10px;
    cursor:pointer;
    font-size:16px;
}

.login-box button:hover{
    background:#C9A227;
}

#close-login{
    position:absolute;
    right:18px;
    top:12px;
    font-size:28px;
    cursor:pointer;
}

.user-icon{
    cursor:pointer;
    font-size:24px;
}
/* ===== CHECKOUT SUBTITLE ===== */

.checkout-subtitle{
    color:#777;
    font-size:15px;
    margin-top:-15px;
    margin-bottom:25px;
    line-height:1.7;
}
.payment-info{
    color:#777;
    font-size:15px;
    margin-bottom:18px;
}
/* ===== PREMIUM PAYMENT OPTIONS ===== */

.payment-option{
    display:flex;
    align-items:center;
    gap:12px;
    padding:16px 18px;
    margin:15px 0;
    border:2px solid #e8e8e8;
    border-radius:12px;
    cursor:pointer;
    transition:.3s;
    background:#fff;
}

.payment-option:hover{
    border-color:#2E7D32;
    background:#F7FFF7;
    transform:translateY(-2px);
}

.payment-option input{
    transform:scale(1.2);
    accent-color:#2E7D32;
}
/* ===== ORDER SUMMARY ===== */

.summary-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 0;
    border-bottom:1px solid #f0f0f0;
}

.total-row{
    font-size:22px;
    font-weight:700;
    color:#2E7D32;
    border-bottom:none;
    padding-top:20px;
}

.free-shipping{
    color:#2E7D32;
    font-weight:700;
}
.coupon-box{
    display:flex;
    gap:10px;
    margin:20px 0;
}

.coupon-box input{
    flex:1;
    height:45px;
    padding:0 15px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:15px;
}

.coupon-box button{
    height:45px;
    padding:0 22px;
    border:none;
    background:#2E7D32;
    color:#fff;
    border-radius:10px;
    cursor:pointer;
    font-weight:600;
}

.coupon-box button:hover{
    background:#C9A227;
}
/* ============================
   CART PAGE PREMIUM
============================ */

.summary-box{
    background:#fff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.summary-box p,
.summary-box h3{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:18px 0;
}

.summary-box h3{
    font-size:24px;
    color:#2E7D32;
}

.coupon-box{
    display:flex;
    gap:10px;
    margin:25px 0;
}

.coupon-box input{
    flex:1;
    padding:12px 15px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:15px;
}

.coupon-box button{
    padding:12px 22px;
    border:none;
    border-radius:10px;
    cursor:pointer;
    background:#2E7D32;
    color:#fff;
    font-weight:600;
    transition:.3s;
}

.coupon-box button:hover{
    background:#1B5E20;
}

.secondary-btn{
    display:block;
    text-align:center;
    margin-top:15px;
    padding:14px;
    border:2px solid #2E7D32;
    border-radius:10px;
    color:#2E7D32;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.secondary-btn:hover{
    background:#2E7D32;
    color:#fff;
}

.trust-box{
    margin-top:25px;
    padding-top:20px;
    border-top:1px solid #eee;
}

.trust-box p{
    margin:10px 0;
    color:#666;
    font-size:14px;
}
.no-orders{
    text-align: center;
    padding: 30px 20px;
}

.no-orders h3{
    margin-bottom: 12px;
}

.no-orders p{
    margin-bottom: 20px;
    color: #666;
}

.no-orders .buy-btn{
    display: inline-block;
}
.wishlist-actions{
    display:flex;
    flex-direction:column;
    gap:6px;
    margin-top:8px;
}

.wishlist-cart-btn,
.wishlist-remove-btn{

    width:100%;
    height:30px;

    border:none;
    border-radius:6px;

    font-size:12px;
    font-weight:500;

    cursor:pointer;

    transition:.3s;

}

.wishlist-cart-btn{

    background:#2E7D32;
    color:#fff;

}

.wishlist-cart-btn:hover{

    background:#256428;

}

.wishlist-remove-btn{

    background:#f5f5f5;
    color:#d32f2f;

    border:1px solid #ddd;

}

.wishlist-remove-btn:hover{

    background:#ffecec;

}
/* ==========================================
   REGISTER / LOGIN PAGE
========================================== */

.auth-page{

    background:#F9F6EE;

    padding:70px 20px;

    min-height:80vh;

}

.auth-box{

    max-width:500px;

    margin:auto;

    background:#fff;

    border-radius:20px;

    padding:40px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.auth-box h1{

    text-align:center;

    color:#2E7D32;

    margin-bottom:10px;

}

.auth-box>p{

    text-align:center;

    color:#666;

    margin-bottom:30px;

}

.input-group{

    margin-bottom:20px;

}

.input-group label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

    color:#333;

}

.input-group input{

    width:100%;

    height:50px;

    border:1px solid #ddd;

    border-radius:10px;

    padding:0 15px;

    font-size:15px;

    transition:.3s;

    outline:none;

}

.input-group input:focus{

    border-color:#2E7D32;

    box-shadow:0 0 8px rgba(46,125,50,.15);

}

.auth-box .buy-btn{

    width:100%;

    height:50px;

    margin-top:10px;

    border:none;

    border-radius:10px;

    background:#2E7D32;

    color:#fff;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.auth-box .buy-btn:hover{

    background:#256428;

}

.auth-bottom{

    text-align:center;

    margin-top:25px;

    color:#666;

}

.auth-bottom a{

    color:#2E7D32;

    font-weight:600;

    text-decoration:none;

}

.auth-bottom a:hover{

    text-decoration:underline;

}

/* Mobile */

@media(max-width:600px){

.auth-box{

    padding:25px;

}

.auth-page{

    padding:40px 15px;

}

}