:root{
    --orange:#f47a20;
    --orange-dark:#d95f0c;
    --orange-soft:#fff1e7;

    --green:#20854d;
    --green-dark:#146b3a;
    --green-soft:#eaf7ef;

    --dark:#1c2720;
    --text:#526158;
    --white:#ffffff;
    --cream:#fafbf8;
    --border:#e6ebe6;
    --shadow:0 15px 45px rgba(28,39,32,.08);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'DM Sans',sans-serif;
    background:var(--cream);
    color:var(--dark);
    line-height:1.6;
}

a{
    text-decoration:none;
    color:inherit;
}

.container{
    width:min(1180px,calc(100% - 40px));
    margin:auto;
}

/* HEADER */

.site-header{
    position:sticky;
    top:0;
    z-index:999;
    background:rgba(255,255,255,.96);
    border-bottom:1px solid var(--border);
    backdrop-filter:blur(12px);
}

.nav-wrapper{
    height:82px;
    display:flex;
    align-items:center;
    gap:35px;
}

.brand-logo{
    display:flex;
    align-items:center;
    gap:10px;
    min-width:max-content;
}

.logo-mark{
    width:45px;
    height:45px;
    border-radius:14px;
    background:linear-gradient(135deg,var(--orange),#ff9a3d);
    display:grid;
    place-items:center;
    color:#fff;
    font-family:'Outfit',sans-serif;
    font-size:26px;
    font-weight:800;
    box-shadow:0 8px 20px rgba(244,122,32,.25);
}

.logo-text{
    display:flex;
    flex-direction:column;
    line-height:1;
}

.logo-text strong{
    font-family:'Outfit',sans-serif;
    font-size:23px;
    letter-spacing:1px;
    color:var(--green-dark);
}

.logo-text small{
    margin-top:4px;
    color:var(--orange);
    font-size:8px;
    font-weight:800;
    letter-spacing:2px;
}

.main-nav{
    display:flex;
    align-items:center;
    gap:25px;
    margin-left:auto;
}

.main-nav a{
    font-size:14px;
    font-weight:600;
    color:#425047;
    position:relative;
}

.main-nav a:hover,
.main-nav a.active{
    color:var(--orange-dark);
}

.main-nav a.active:after{
    content:"";
    position:absolute;
    left:0;
    bottom:-9px;
    width:100%;
    height:2px;
    background:var(--orange);
}

.nav-actions{
    display:flex;
    align-items:center;
    gap:8px;
}

.nav-icon{
    width:40px;
    height:40px;
    display:grid;
    place-items:center;
    border-radius:12px;
    background:var(--cream);
    font-size:20px;
}

.cart-button{
    background:var(--green);
    color:#fff;
    padding:10px 13px;
    border-radius:12px;
    display:flex;
    align-items:center;
    gap:6px;
    font-size:13px;
}

.cart-button em{
    width:18px;
    height:18px;
    border-radius:50%;
    display:grid;
    place-items:center;
    background:#fff;
    color:var(--green);
    font-size:10px;
    font-style:normal;
}

.mobile-toggle{
    display:none;
    border:0;
    background:none;
    font-size:28px;
    cursor:pointer;
}

/* BUTTONS */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 25px;
    border-radius:14px;
    font-weight:700;
    transition:.25s;
}

.btn-primary{
    background:var(--orange);
    color:#fff;
    box-shadow:0 10px 25px rgba(244,122,32,.25);
}

.btn-primary:hover{
    background:var(--orange-dark);
    transform:translateY(-2px);
}

.btn-secondary{
    background:#fff;
    border:1px solid var(--border);
    color:var(--green-dark);
}

.btn-secondary:hover{
    border-color:var(--green);
}

/* HERO */

.hero{
    padding:80px 0;
    overflow:hidden;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:70px;
}

.eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 13px;
    border-radius:30px;
    background:var(--green-soft);
    color:var(--green-dark);
    font-size:13px;
    font-weight:700;
}

.hero h1{
    margin:20px 0;
    font-family:'Outfit',sans-serif;
    font-size:clamp(42px,5vw,68px);
    line-height:1.04;
    letter-spacing:-2px;
}

.hero h1 span{
    color:var(--orange);
}

.hero p{
    max-width:580px;
    color:var(--text);
    font-size:17px;
}

.hero-buttons{
    display:flex;
    gap:13px;
    margin-top:28px;
}

.hero-stats{
    display:flex;
    gap:35px;
    margin-top:38px;
}

.hero-stats div{
    display:flex;
    flex-direction:column;
}

.hero-stats strong{
    font-family:'Outfit';
    font-size:25px;
    color:var(--green-dark);
}

.hero-stats span{
    font-size:12px;
    color:var(--text);
}

.hero-visual{
    min-height:480px;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-orb{
    position:absolute;
    width:430px;
    height:430px;
    border-radius:50%;
    background:linear-gradient(135deg,#ffe1c8,#e0f3e7);
}

.hero-product-card{
    width:min(400px,100%);
    min-height:440px;
    border-radius:35px;
    position:relative;
    z-index:1;
    padding:30px;
    background:linear-gradient(160deg,var(--green),#116438);
    box-shadow:0 30px 60px rgba(22,107,58,.25);
    overflow:hidden;
}

.hero-product-card:before{
    content:"";
    position:absolute;
    width:250px;
    height:250px;
    border:45px solid rgba(255,255,255,.08);
    border-radius:50%;
    right:-100px;
    top:-80px;
}

.bottle{
    position:absolute;
    width:150px;
    height:285px;
    bottom:25px;
    left:50%;
    transform:translateX(-50%);
    border-radius:30px 30px 40px 40px;
    background:linear-gradient(90deg,#fff,#f0f6f1);
    box-shadow:20px 25px 35px rgba(0,0,0,.2);
}

.bottle:before{
    content:"";
    position:absolute;
    width:70px;
    height:45px;
    left:40px;
    top:-36px;
    border-radius:8px 8px 0 0;
    background:var(--orange);
}

.bottle-label{
    position:absolute;
    top:80px;
    left:15px;
    right:15px;
    padding:22px 10px;
    border-radius:16px;
    background:var(--orange);
    color:#fff;
    text-align:center;
}

.bottle-label strong{
    display:block;
    font-family:'Outfit';
    font-size:22px;
    letter-spacing:1px;
}

.bottle-label small{
    font-size:9px;
    letter-spacing:2px;
}

.product-badge{
    position:relative;
    z-index:2;
    display:inline-block;
    padding:9px 14px;
    background:#fff;
    border-radius:20px;
    color:var(--green-dark);
    font-size:12px;
    font-weight:700;
}

/* SECTION */

.section{
    padding:85px 0;
}

.section-heading{
    max-width:680px;
    margin:0 auto 45px;
    text-align:center;
}

.section-heading span{
    color:var(--orange);
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:2px;
}

.section-heading h2{
    margin-top:10px;
    font-family:'Outfit';
    font-size:38px;
    line-height:1.15;
}

.section-heading p{
    margin-top:12px;
    color:var(--text);
}

/* CATEGORY */

.category-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:16px;
}

.category-card{
    padding:24px 15px;
    text-align:center;
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    transition:.25s;
}

.category-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow);
    border-color:#f7c8a5;
}

.category-icon{
    width:62px;
    height:62px;
    margin:0 auto 15px;
    border-radius:20px;
    display:grid;
    place-items:center;
    background:var(--orange-soft);
    font-size:28px;
}

.category-card:nth-child(even) .category-icon{
    background:var(--green-soft);
}

.category-card h3{
    font-size:14px;
}

/* PRODUCT CARDS */

.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.product-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    overflow:hidden;
    transition:.25s;
}

.product-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow);
}

.product-image{
    height:220px;
    display:grid;
    place-items:center;
    background:linear-gradient(135deg,#fff6ee,#f2faf4);
    font-size:65px;
}

.product-info{
    padding:18px;
}

.product-info span{
    color:var(--green);
    font-size:11px;
    font-weight:700;
}

.product-info h3{
    margin:5px 0 12px;
    font-size:16px;
}

.price-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.price-row strong{
    color:var(--orange-dark);
    font-size:18px;
}

.price-row del{
    color:#9aa49e;
    font-size:12px;
}

/* WHY */

.why-section{
    background:var(--green-dark);
    color:#fff;
}

.why-section .section-heading h2,
.why-section .section-heading p{
    color:#fff;
}

.why-section .section-heading span{
    color:#ffb06b;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.why-card{
    padding:27px;
    border:1px solid rgba(255,255,255,.14);
    background:rgba(255,255,255,.06);
    border-radius:22px;
}

.why-card .why-icon{
    font-size:30px;
}

.why-card h3{
    margin:14px 0 8px;
}

.why-card p{
    color:rgba(255,255,255,.7);
    font-size:14px;
}

/* FRANCHISE */

.franchise-box{
    background:linear-gradient(135deg,#fff0e4,#e8f7ed);
    border-radius:35px;
    padding:55px;
    display:grid;
    grid-template-columns:1.3fr .7fr;
    align-items:center;
    gap:40px;
    overflow:hidden;
}

.franchise-box h2{
    font-family:'Outfit';
    font-size:42px;
    line-height:1.1;
}

.franchise-box p{
    margin:15px 0 25px;
    color:var(--text);
}

.franchise-points{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:28px;
}

.franchise-points span{
    padding:8px 12px;
    border-radius:30px;
    background:#fff;
    color:var(--green-dark);
    font-size:12px;
    font-weight:700;
}

.franchise-graphic{
    min-height:270px;
    position:relative;
}

.india-placeholder{
    width:260px;
    height:230px;
    margin:auto;
    border-radius:45% 55% 55% 45%;
    background:var(--green);
    position:relative;
    transform:rotate(-12deg);
}

.map-pin{
    position:absolute;
    width:17px;
    height:17px;
    border-radius:50% 50% 50% 0;
    background:var(--orange);
    transform:rotate(-45deg);
    box-shadow:0 5px 12px rgba(0,0,0,.18);
}

.pin-1{top:50px;left:95px;}
.pin-2{top:95px;left:145px;}
.pin-3{top:135px;left:100px;}

/* FOOTER */

.site-footer{
    background:#16231b;
    color:#fff;
}

.footer-main{
    padding:65px 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr;
    gap:45px;
}

.footer-logo .logo-text strong{
    color:#fff;
}

.footer-brand p{
    max-width:330px;
    margin-top:18px;
    color:rgba(255,255,255,.62);
}

.footer-grid h4{
    margin-bottom:17px;
    font-size:15px;
}

.footer-grid a:not(.brand-logo){
    display:block;
    margin:9px 0;
    color:rgba(255,255,255,.62);
    font-size:14px;
}

.footer-grid a:hover{
    color:#fff;
}

.footer-grid p{
    color:rgba(255,255,255,.62);
    font-size:14px;
}

.footer-socials{
    display:flex;
    gap:8px;
    margin-top:15px;
}

.footer-socials a{
    width:35px;
    height:35px;
    display:grid !important;
    place-items:center;
    border-radius:10px;
    background:rgba(255,255,255,.1);
}

.footer-bottom{
    padding:18px 0;
    border-top:1px solid rgba(255,255,255,.1);
}

.footer-bottom .container{
    display:flex;
    justify-content:space-between;
    gap:20px;
}

.footer-bottom p{
    color:rgba(255,255,255,.5);
    font-size:12px;
}

.footer-bottom a{
    display:inline;
    margin-left:15px;
}

/* RESPONSIVE */

@media(max-width:1000px){

    .main-nav{
        gap:15px;
    }

    .category-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .product-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:760px){

    .container{
        width:min(100% - 30px,1180px);
    }

    .nav-wrapper{
        height:72px;
        gap:10px;
    }

    .main-nav{
        display:none;
        position:absolute;
        top:72px;
        left:0;
        right:0;
        padding:20px;
        flex-direction:column;
        align-items:flex-start;
        background:#fff;
        border-bottom:1px solid var(--border);
    }

    .main-nav.show{
        display:flex;
    }

    .nav-actions{
        margin-left:auto;
    }

    .nav-icon{
        display:none;
    }

    .cart-button b{
        display:none;
    }

    .mobile-toggle{
        display:block;
    }

    .hero{
        padding:50px 0;
    }

    .hero-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .hero h1{
        font-size:45px;
    }

    .hero-visual{
        min-height:400px;
    }

    .hero-stats{
        gap:20px;
    }

    .category-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .section{
        padding:60px 0;
    }

    .section-heading h2{
        font-size:30px;
    }

    .franchise-box{
        padding:30px;
        grid-template-columns:1fr;
    }

    .franchise-box h2{
        font-size:32px;
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
        gap:30px;
    }

}

@media(max-width:520px){

    .logo-text strong{
        font-size:19px;
    }

    .logo-mark{
        width:39px;
        height:39px;
        font-size:22px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn{
        width:100%;
    }

    .hero-stats{
        justify-content:space-between;
    }

    .product-grid{
        grid-template-columns:1fr 1fr;
        gap:10px;
    }

    .product-image{
        height:150px;
        font-size:45px;
    }

    .product-info{
        padding:13px;
    }

    .product-info h3{
        font-size:13px;
    }

    .why-grid{
        grid-template-columns:1fr;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

    .footer-bottom .container{
        flex-direction:column;
    }

}