/* ========================= */
/* GLOBAL */
/* ========================= */


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', Arial, sans-serif;
}


body{
    background:#f7f9fb;
    overflow-x:clip;
    padding-top:106px;
}


/* ========================= */
/* ANNOUNCEMENT RUNNING BAR */
/* ========================= */


.announcement-bar{
    width:100%;
    max-width:100%;
    background:#043d04;
    color:#d8ffd8;
    font-size:12.5px;
    font-weight:500;
    overflow:hidden;
    padding:8px 0;
    position:relative;
    z-index:10000;
}


.announcement-track{
    display:flex;
    width:100%;
    max-width:100%;
    overflow:hidden;
}


.announcement-move{
    display:flex;
    align-items:center;
    white-space:nowrap;
    animation:announcementScroll 32s linear infinite;
    will-change:transform;
}


.announcement-move span{
    padding:0 20px;
    flex-shrink:0;
}


.announcement-move i{
    margin-right:6px;
    color:#6fcf6f;
}


.ann-sep{
    color:rgba(255,255,255,0.3);
    padding:0 4px !important;
}


@keyframes announcementScroll{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}


.announcement-bar:hover .announcement-move{
    animation-play-state:paused;
}


/* ========================= */
/* STICKY HEADER WRAPPER */
/* ========================= */


.sticky-header-wrap{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
}


/* ========================= */
/* HEADER */
/* ========================= */


.header{
    width:100%;
    height:72px;
    background:linear-gradient(
        90deg,
        #043d04 0%,
        #056d05 35%,
        #0f9b0f 65%,
        #056d05 100%
    );
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 24px;
    box-shadow:
        0 4px 24px rgba(0,0,0,0.18),
        0 1px 0 rgba(255,255,255,0.08) inset;
}


/* ========================= */
/* LOGO SECTION */
/* ========================= */


.logo-section{
    display:flex;
    align-items:center;
    gap:10px;
    flex-shrink:0;
}


.logo-section a:has(.logo){
    display:flex;
    align-items:center;
    line-height:0;
}


.logo{
    width:44px;
    height:44px;
    border-radius:50%;
    object-fit:cover;
    background:#fff;
    padding:3px;
    box-shadow:0 0 0 3px rgba(255,255,255,0.25);
    transition:0.3s;
}


.logo:hover{
    transform:scale(1.06) rotate(5deg);
}


.company-name{
    color:#fff;
    text-decoration:none;
    font-size:22px;
    font-weight:800;
    letter-spacing:0.3px;
}


.brand-highlight{
    color:#a3ffb0;
    font-style:italic;
}


/* ========================= */
/* NAVBAR */
/* ========================= */


.navbar{
    flex:1;
    display:flex;
    justify-content:center;
}


.nav-links{
    display:flex;
    align-items:center;
    gap:6px;
    list-style:none;
}


.nav-links li{
    position:relative;
}


.nav-links li > a{
    color:#fff;
    text-decoration:none;
    font-size:13.5px;
    font-weight:600;
    padding:8px 14px;
    border-radius:8px;
    display:flex;
    align-items:center;
    gap:6px;
    transition:background 0.25s, color 0.25s;
    white-space:nowrap;
}


.nav-links li > a:hover{
    background:rgba(255,255,255,0.14);
    color:#a3ffb0;
}


.nav-arrow{
    font-size:10px;
    transition:transform 0.25s;
}


.nav-links li.dropdown:hover .nav-arrow{
    transform:rotate(180deg);
}


/* ========================= */
/* GIFTING NAV LINK */
/* ========================= */


.gifting-link{
    background:transparent !important;
    border:none !important;
    outline:none !important;
    box-shadow:none !important;
    border-radius:8px !important;
}


.gifting-link:hover{
    background:rgba(255,255,255,0.14) !important;
    border:none !important;
    box-shadow:none !important;
}


.gifting-icon-nav{
    color:#f9d423;
    font-size:13px;
}


/* ========================= */
/* DROPDOWN */
/* ========================= */


.dropdown{
    padding:0;
    position:relative;
}


/* invisible hover bridge fills the gap between nav link and dropdown */
.dropdown > a{
    padding-top:8px !important;
    padding-bottom:8px !important;
}


/* pseudo-element extends the hover area downward to cover the gap */
.dropdown > a::after{
    content:'';
    position:absolute;
    bottom:-12px;
    left:0;
    width:100%;
    height:12px;
}


.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;
    min-width:240px;
    background:#fff;
    display:none;
    flex-direction:column;
    padding:10px;
    border-radius:0 14px 14px 14px;
    box-shadow:0 12px 40px rgba(0,0,0,0.14);
    z-index:999;
    animation:dropdownAnimation 0.22s ease;
    border-top:3px solid #0f9b0f;
    /* small negative margin pulls menu flush against nav link - kills the gap */
    margin-top:-1px;
}


.dropdown:hover .dropdown-menu{
    display:flex;
}


.dropdown-menu a{
    color:#222 !important;
    padding:11px 12px;
    border-radius:9px;
    transition:0.25s;
    font-size:13.5px;
    font-weight:500;
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
}


.dropdown-menu a:hover{
    background:#eef8ee;
    color:#056d05 !important;
    padding-left:16px;
}


.dd-icon{
    width:30px;
    height:30px;
    border-radius:8px;
    background:#eef8ee;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#056d05;
    font-size:13px;
    flex-shrink:0;
    transition:0.25s;
}


.dropdown-menu a:hover .dd-icon{
    background:#056d05;
    color:#fff;
}


/* GIFTING DROPDOWN SPECIAL */


.gifting-dropdown{
    min-width:260px;
}


.dd-gift-header{
    font-size:11px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    color:#0f9b0f;
    padding:8px 12px 6px;
    border-bottom:1px dashed #d5f0d5;
    margin-bottom:4px;
}


/* ========================= */
/* TRACK ORDER NAV LINK */
/* ========================= */


.track-order-link{
    background:transparent !important;
    border:none !important;
}


.track-order-link:hover{
    background:rgba(255,255,255,0.14) !important;
    border:none !important;
}


.track-order-icon{
    color:#a3ffb0;
    font-size:13px;
}


/* MOBILE TRACK ORDER */


.mobile-track-order{
    background:rgba(163,255,176,0.08) !important;
    border-bottom:1px solid rgba(163,255,176,0.2) !important;
}


.mobile-track-order i{
    color:#a3ffb0;
}


@keyframes dropdownAnimation{
    from{
        opacity:0;
        transform:translateY(8px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}


/* ========================= */
/* RIGHT SECTION */
/* ========================= */


.right-section{
    display:flex;
    align-items:center;
    gap:12px;
    flex-shrink:0;
}


/* ========================= */
/* SEARCH BOX */
/* ========================= */


.search-box{
    background:#fff;
    border-radius:40px;
    overflow:hidden;
    display:flex;
    align-items:center;
    box-shadow:0 4px 14px rgba(0,0,0,0.1);
    border:2px solid transparent;
    transition:border-color 0.25s;
}


.search-box:focus-within{
    border-color:#a3ffb0;
}


.search-box input{
    border:none;
    outline:none;
    padding:10px 16px;
    width:200px;
    font-size:13.5px;
    font-family:'Poppins', Arial, sans-serif;
}


.search-box button{
    border:none;
    background:#056d05;
    padding:10px 15px;
    cursor:pointer;
    color:#fff;
    transition:background 0.25s;
}


.search-box button:hover{
    background:#043d04;
}


/* ========================= */
/* CART */
/* ========================= */


.cart-icon{
    width:42px;
    height:42px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#056d05;
    font-size:17px;
    position:relative;
    text-decoration:none;
    box-shadow:0 4px 14px rgba(0,0,0,0.12);
    transition:transform 0.25s, box-shadow 0.25s;
}


.cart-icon:hover{
    transform:translateY(-2px);
    box-shadow:0 6px 20px rgba(0,0,0,0.18);
}


.cart-count{
    position:absolute;
    top:-5px;
    right:-5px;
    width:18px;
    height:18px;
    border-radius:50%;
    background:#e53935;
    color:#fff;
    font-size:10px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    border:2px solid #fff;
}


/* ========================= */
/* HAMBURGER */
/* ========================= */


.hamburger{
    display:none;
    color:#fff;
    font-size:22px;
    cursor:pointer;
    width:40px;
    height:40px;
    align-items:center;
    justify-content:center;
    border-radius:8px;
    transition:background 0.25s;
}


.hamburger:hover{
    background:rgba(255,255,255,0.14);
}


/* ========================= */
/* MOBILE MENU */
/* ========================= */


.mobile-menu{
    position:fixed;
    top:0;
    left:-100%;
    width:300px;
    height:100vh;
    background:#053d05;
    z-index:99999;
    display:flex;
    flex-direction:column;
    overflow-y:auto;
    transition:0.38s cubic-bezier(0.4,0,0.2,1);
    box-shadow:4px 0 30px rgba(0,0,0,0.3);
}


.mobile-menu.active{
    left:0;
}


/* ========================= */
/* MOBILE TOP */
/* ========================= */


.mobile-menu-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:16px 16px;
    background:rgba(0,0,0,0.22);
    min-height:72px;
    border-bottom:1px solid rgba(255,255,255,0.12);
    flex-shrink:0;
}


.mobile-logo-row{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
}


.mobile-menu-logo{
    width:36px;
    height:36px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid rgba(255,255,255,0.3);
}


.mobile-menu-brand{
    color:#fff;
    font-size:18px;
    font-weight:800;
    letter-spacing:0.3px;
}


.mobile-brand-highlight{
    color:#a3ffb0;
    font-style:italic;
}


/* ========================= */
/* CLOSE MENU */
/* ========================= */


.close-menu{
    width:36px;
    height:36px;
    background:rgba(255,255,255,0.15);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    cursor:pointer;
    border-radius:8px;
    flex-shrink:0;
    transition:0.25s;
}


.close-menu:hover{
    background:rgba(255,255,255,0.25);
}


/* ========================= */
/* MOBILE LINKS */
/* ========================= */


.mobile-menu > a,
.mobile-link-item{
    color:#fff;
    text-decoration:none;
    padding:14px 18px;
    border-bottom:1px solid rgba(255,255,255,0.08);
    font-weight:600;
    font-size:14px;
    transition:0.25s;
    display:flex;
    align-items:center;
    gap:10px;
}


.mobile-menu > a:hover,
.mobile-link-item:hover{
    background:rgba(255,255,255,0.08);
    padding-left:22px;
}


/* ========================= */
/* MOBILE DROPDOWN */
/* ========================= */


.mobile-dropdown{
    width:100%;
}


.mobile-dropdown-btn{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 18px;
    font-weight:600;
    font-size:14px;
    cursor:pointer;
    color:#fff;
    border-bottom:1px solid rgba(255,255,255,0.08);
    transition:0.25s;
}


.mobile-dropdown-btn span{
    display:flex;
    align-items:center;
    gap:10px;
}


.mobile-dropdown-btn:hover{
    background:rgba(255,255,255,0.08);
}


.mobile-dropdown-btn .fa-angle-down{
    transition:0.3s ease;
    font-size:12px;
    color:rgba(255,255,255,0.6);
}


.mobile-gifting-btn{
    background:rgba(249,212,35,0.08) !important;
    border-bottom:1px solid rgba(249,212,35,0.2) !important;
}


.mobile-gifting-btn span i{
    color:#f9d423;
}


.mobile-dropdown-content{
    display:none;
    flex-direction:column;
    background:rgba(0,0,0,0.18);
}


.mobile-dropdown-content.open{
    display:flex;
}


.mobile-dropdown-content a{
    color:rgba(255,255,255,0.85);
    text-decoration:none;
    padding:12px 18px 12px 32px;
    font-size:13.5px;
    border-bottom:1px solid rgba(255,255,255,0.06);
    transition:0.25s;
    display:flex;
    align-items:center;
    gap:10px;
}


.mobile-dropdown-content a i{
    font-size:12px;
    color:rgba(255,255,255,0.5);
    width:16px;
}


.mobile-dropdown-content a:hover{
    background:rgba(255,255,255,0.08);
    color:#a3ffb0;
    padding-left:38px;
}


/* ========================= */
/* MOBILE OVERLAY */
/* ========================= */


.mobile-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background:rgba(0,0,0,0.4);
    opacity:0;
    visibility:hidden;
    transition:0.3s ease;
    z-index:99990;
}


.mobile-overlay.active{
    opacity:1;
    visibility:visible;
}


/* ========================= */
/* FOOTER */
/* ========================= */


.footer{
    margin-top:80px;
    background:linear-gradient(
        160deg,
        #021f02 0%,
        #043d04 40%,
        #056d05 100%
    );
    color:#fff;
}


/* FOOTER TOP STRIP */


.footer-top-strip{
    display:flex;
    align-items:center;
    justify-content:space-around;
    flex-wrap:wrap;
    gap:20px;
    padding:28px 5%;
    border-bottom:1px solid rgba(255,255,255,0.1);
    background:rgba(0,0,0,0.2);
}


.footer-strip-item{
    display:flex;
    align-items:center;
    gap:14px;
}


.footer-strip-item > i{
    font-size:28px;
    color:#a3ffb0;
    flex-shrink:0;
}


.footer-strip-item div{
    display:flex;
    flex-direction:column;
}


.footer-strip-item strong{
    font-size:14px;
    font-weight:700;
    color:#fff;
}


.footer-strip-item span{
    font-size:12px;
    color:rgba(255,255,255,0.6);
    margin-top:2px;
}


/* FOOTER MAIN */


.footer-main{
    padding:60px 5% 40px;
}


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


.footer-column h2,
.footer-column h3{
    margin-bottom:18px;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:8px;
}


.footer-column h3{
    font-size:15px;
    color:#a3ffb0;
    padding-bottom:10px;
    border-bottom:1px solid rgba(255,255,255,0.1);
}


.footer-column p{
    line-height:1.8;
    color:rgba(255,255,255,0.75);
    font-size:13.5px;
    margin-bottom:18px;
}


.footer-column ul{
    list-style:none;
}


.footer-column ul li{
    margin-bottom:10px;
}


.footer-column ul li a{
    color:rgba(255,255,255,0.7);
    text-decoration:none;
    transition:0.25s;
    font-size:13.5px;
    display:flex;
    align-items:center;
    gap:7px;
}


.footer-column ul li a i{
    font-size:10px;
    color:#6fcf6f;
    transition:0.25s;
}


.footer-column ul li a:hover{
    color:#a3ffb0;
    padding-left:4px;
}


/* FOOTER BRAND COL */


.footer-brand-col h2{
    font-size:22px;
    color:#fff;
}


.footer-brand-highlight{
    color:#a3ffb0;
    font-style:italic;
}


.footer-contact-info{
    display:flex;
    flex-direction:column;
    gap:8px;
    margin-bottom:20px;
}


.footer-contact-info span{
    font-size:13px;
    color:rgba(255,255,255,0.65);
    display:flex;
    align-items:center;
    gap:8px;
}


.footer-contact-info i{
    color:#6fcf6f;
    width:14px;
}


/* SOCIAL ICONS */


.social-icons{
    display:flex;
    gap:12px;
}


.social-icons a{
    width:40px;
    height:40px;
    background:rgba(255,255,255,0.1);
    border:1px solid rgba(255,255,255,0.2);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    font-size:16px;
    transition:0.3s;
}


.social-icons a:hover{
    transform:translateY(-3px);
    background:#0f9b0f;
    border-color:#0f9b0f;
}


/* NEWSLETTER */


.footer-newsletter{
    margin-top:24px;
    padding-top:18px;
    border-top:1px solid rgba(255,255,255,0.1);
}


.footer-newsletter h4{
    font-size:13px;
    color:#a3ffb0;
    margin-bottom:10px;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:6px;
}


.newsletter-form{
    display:flex;
    border-radius:10px;
    overflow:hidden;
    border:1.5px solid rgba(255,255,255,0.18);
}


.newsletter-form input{
    flex:1;
    border:none;
    outline:none;
    padding:10px 14px;
    font-size:13px;
    background:rgba(255,255,255,0.1);
    color:#fff;
    font-family:'Poppins', Arial, sans-serif;
}


.newsletter-form input::placeholder{
    color:rgba(255,255,255,0.4);
}


.newsletter-form button{
    border:none;
    background:#0f9b0f;
    color:#fff;
    padding:10px 16px;
    cursor:pointer;
    font-size:14px;
    transition:background 0.25s;
    flex-shrink:0;
}


.newsletter-form button:hover{
    background:#056d05;
}


/* FOOTER BOTTOM */


.footer-bottom{
    padding:18px 5%;
    border-top:1px solid rgba(255,255,255,0.1);
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:12px;
    background:rgba(0,0,0,0.18);
    font-size:13px;
    color:rgba(255,255,255,0.55);
}


.footer-bottom-links{
    display:flex;
    gap:20px;
}


.footer-bottom-links a{
    color:rgba(255,255,255,0.55);
    text-decoration:none;
    font-size:13px;
    transition:color 0.25s;
}


.footer-bottom-links a:hover{
    color:#a3ffb0;
}


/* ========================= */
/* RESPONSIVE */
/* ========================= */


@media(max-width:1100px){

    .nav-links{
        gap:2px;
    }

    .nav-links li > a{
        font-size:12.5px;
        padding:8px 10px;
    }

    .search-box input{
        width:160px;
    }
}


@media(max-width:992px){

    .navbar{
        display:none;
    }

    .hamburger{
        display:flex;
    }

    .search-box{
        display:none;
    }

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

    .announcement-bar{
        font-size:11.5px;
    }
}


@media(max-width:768px){

    body{
        padding-top:98px;
    }

    .header{
        height:64px;
        padding:0 14px;
    }

    .company-name{
        font-size:18px;
    }

    .logo{
        width:38px;
        height:38px;
    }

    .cart-icon{
        width:38px;
        height:38px;
        font-size:16px;
    }

    .right-section{
        gap:10px;
    }

    .footer-top-strip{
        gap:16px;
        padding:20px 5%;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

    .footer-bottom-links{
        justify-content:center;
    }
}


@media(max-width:576px){

    .company-name{
        display:flex;
        font-size:16px;
    }

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

    .mobile-menu{
        width:280px;
    }

    .footer-top-strip{
        grid-template-columns:1fr 1fr;
        display:grid;
        gap:16px;
    }

    .footer-strip-item{
        gap:10px;
    }

    .announcement-move{
        animation-duration:22s;
    }
}


/* ===================================
   MINI CART DRAWER
=================================== */


.mini-cart-overlay{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;

    background:rgba(0,0,0,.45);

    opacity:0;
    visibility:hidden;

    transition:.3s;

    z-index:99998;

}


.mini-cart-overlay.active{

    opacity:1;
    visibility:visible;

}


.mini-cart-drawer{

    position:fixed;

    top:0;
    right:-420px;

    width:400px;
    max-width:100%;

    height:100vh;

    background:#fff;

    z-index:99999;

    display:flex;
    flex-direction:column;

    transition:.35s ease;

    box-shadow:
    -10px 0 40px rgba(0,0,0,.15);

}


.mini-cart-drawer.active{

    right:0;

}


.mini-cart-header{

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:20px;

    border-bottom:
    1px solid #eee;

}


.mini-cart-header h3{

    font-size:22px;
    color:#056d05;

}


.mini-cart-header button{

    border:none;
    background:none;

    font-size:22px;

    cursor:pointer;

}


.mini-cart-body{

    flex:1;

    overflow-y:auto;

    padding:20px;

}


.mini-cart-item{

    display:flex;

    gap:12px;

    margin-bottom:18px;

    padding-bottom:18px;

    border-bottom:
    1px solid #eee;

}


.mini-cart-item img{

    width:70px;
    height:70px;

    border-radius:10px;

    object-fit:cover;

}


.mini-cart-info{

    flex:1;

}


.mini-cart-info h4{

    font-size:14px;

    margin-bottom:6px;

}


.mini-cart-price{

    color:#056d05;

    font-weight:700;

}


.mini-cart-qty{

    font-size:13px;
    color:#666;

    margin-top:4px;

}


.empty-mini-cart{

    text-align:center;

    color:#777;

    padding:40px 10px;

}


.mini-cart-footer{

    border-top:
    1px solid #eee;

    padding:20px;

}


.mini-cart-total{

    display:flex;
    justify-content:space-between;

    margin-bottom:15px;

    font-size:18px;

}


.view-cart-btn{

    display:flex;

    justify-content:center;
    align-items:center;

    width:100%;
    height:50px;

    border-radius:12px;

    background:#056d05;

    color:#fff;

    text-decoration:none;

    font-weight:600;

}


.view-cart-btn:hover{

    background:#044f04;

}


@media(max-width:768px){

    .mini-cart-drawer{

        width:100%;

    }

}


.mini-remove-btn{

    width:38px;
    height:38px;

    border:none;

    background:#fff2f2;

    color:#dc2626;

    border-radius:10px;

    cursor:pointer;

    flex-shrink:0;

    transition:.3s;

}


.mini-remove-btn:hover{

    background:#ffe4e4;

}


.mini-cart-brand{

    display:inline-block;

    font-size:11px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.5px;

    color:#056d05;

    background:#e8f7e8;

    padding:4px 8px;

    border-radius:20px;

    margin-bottom:6px;

}


.mini-cart-color{

    font-size:12px;

    color:#666;

    margin-top:4px;

    margin-bottom:6px;

    font-weight:500;

}


.mini-cart-variant{

    font-size:12px;

    color:#666;

    margin-top:4px;

    margin-bottom:6px;

    font-weight:500;

}