:root{
    --g:#1f7d55;
    --gd:#0d3b2e;
    --light:#f2faf5;
    --text:#183128;
    --muted:#6c7e75;
    --border:#e2ece7;
    --orange:#f4a02d;
    --shadow:0 18px 45px rgba(13,59,46,.12);
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:"DM Sans",sans-serif;
    color:var(--text);
    line-height:1.6;
    background:#fff;
}

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

img{
    width:100%;
    display:block;
}

button,
input,
textarea,
select{
    font:inherit;
}

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

.section{
    padding:85px 0;
}

/* =========================
   TOP BAR
========================= */

.topbar{
    background:var(--gd);
    color:#fff;
    font-size:13px;
}

.topbar-inner{
    min-height:38px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

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

.header{
    position:sticky;
    top:0;
    background:#fff;
    z-index:1000;
    border-bottom:1px solid var(--border);
}

.header-row{
    min-height:80px;
    display:grid;
    grid-template-columns:290px 1fr auto;
    gap:24px;
    align-items:center;
}

.brand{
    display:flex;
    gap:12px;
    align-items:center;
}

.brand-logo{
    width:48px;
    height:48px;
    flex-shrink:0;
    border-radius:15px;
    background:linear-gradient(135deg,var(--g),var(--gd));
    color:#fff;
    display:grid;
    place-items:center;
    font-weight:800;
}

.brand strong{
    display:block;
    font-size:20px;
    line-height:1.2;
}

.brand small{
    display:block;
    color:var(--muted);
    font-size:11px;
    margin-top:3px;
}

.search{
    height:48px;
    min-width:0;
    border:1px solid var(--border);
    border-radius:14px;
    background:#f8faf9;
    display:flex;
    align-items:center;
    gap:10px;
    padding:0 15px;
}

.search input{
    border:0;
    outline:0;
    background:transparent;
    width:100%;
    min-width:0;
}

.header-actions{
    display:flex;
    align-items:center;
    gap:9px;
}

.icon-btn,
.menu-btn{
    width:44px;
    height:44px;
    border:1px solid var(--border);
    border-radius:13px;
    display:grid;
    place-items:center;
    background:#fff;
    position:relative;
    cursor:pointer;
}

.cart-button span{
    position:absolute;
    right:-5px;
    top:-5px;
    background:var(--orange);
    color:#fff;
    width:20px;
    height:20px;
    border-radius:50%;
    font-size:11px;
    display:grid;
    place-items:center;
}

.menu-btn{
    display:none;
}

/* =========================
   NAVIGATION
========================= */

.nav{
    width:100%;
    border-top:1px solid #f2f5f3;
}

.nav-links{
    min-height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px 24px;
    padding:10px 0;
}

.nav-links a{
    display:inline-flex;
    align-items:center;
    min-height:32px;
    padding:4px 0;
    white-space:nowrap;
    font-size:15px;
    font-weight:600;
    transition:.2s;
}

.nav-links a:hover,
.nav-links a.active{
    color:var(--g);
}

/* =========================
   HERO
========================= */

.hero{
    padding:75px 0;
    background:linear-gradient(135deg,#f8fff9,#eff8f0);
}

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

.kicker,
.section-kicker{
    color:var(--g);
    font-size:12px;
    font-weight:900;
    letter-spacing:1.5px;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.contact-card h2,
.page-banner h1{
    font-family:"Playfair Display",serif;
}

.hero h1{
    font-size:clamp(48px,6vw,80px);
    line-height:1.02;
    margin:14px 0;
}

.hero h1 em{
    display:block;
    color:var(--g);
    font-style:normal;
}

.hero p{
    color:var(--muted);
    font-size:18px;
    margin-bottom:25px;
}

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.btn{
    min-height:50px;
    border:0;
    border-radius:14px;
    padding:0 22px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    cursor:pointer;
}

.primary{
    background:var(--g);
    color:#fff;
}

.light{
    background:#fff;
    border:1px solid var(--border);
}

.white{
    background:#fff;
    color:var(--gd);
}

.whatsapp{
    background:#25d366;
    color:#fff;
}

.danger{
    background:#b83d3d;
    color:#fff;
}

.hero-image{
    position:relative;
}

.hero-image > img{
    height:520px;
    object-fit:cover;
    border-radius:45% 45% 28% 28%;
    border:10px solid #fff;
    box-shadow:var(--shadow);
}

.fresh-badge{
    position:absolute;
    right:-10px;
    bottom:30px;
    background:#fff;
    border-radius:16px;
    padding:14px;
    display:flex;
    gap:10px;
    box-shadow:var(--shadow);
}

/* =========================
   SECTION HEADINGS
========================= */

.section-heading{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:20px;
    margin-bottom:35px;
}

.section-heading h2,
.about-copy h2,
.contact-card h2{
    font-size:45px;
    line-height:1.1;
}

/* =========================
   CATEGORIES
========================= */

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

.category-card{
    border:1px solid var(--border);
    border-radius:20px;
    padding:18px;
    display:flex;
    align-items:center;
    gap:15px;
    background:#fff;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.category-icon{
    width:68px;
    height:68px;
    flex-shrink:0;
    border-radius:18px;
    display:grid;
    place-items:center;
    font-size:32px;
}

.fruit-bg{
    background:#fff0eb;
}

.veg-bg{
    background:#e8f7ee;
}

.leaf-bg{
    background:#edf8dc;
}

.combo-bg{
    background:#fff5df;
}

.category-card p{
    font-size:13px;
    color:var(--muted);
}

/* =========================
   PRODUCTS
========================= */

.products-section{
    background:var(--light);
}

.product-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(13,59,46,.07);
}

.product-image{
    width:100%;
    height:230px;
    position:relative;
    overflow:hidden;
    background:#eef5f0;
}

.product-image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    opacity:1 !important;
    visibility:visible !important;
    filter:none !important;
    transition:transform .35s;
}

.product-card:hover .product-image img{
    transform:scale(1.07);
}

.discount{
    position:absolute;
    left:13px;
    top:13px;
    background:var(--orange);
    color:#fff;
    border-radius:999px;
    padding:5px 9px;
    font-size:11px;
    font-weight:800;
}

.product-info{
    padding:17px;
}

.product-category{
    font-size:11px;
    text-transform:uppercase;
    color:var(--g);
    font-weight:900;
}

.product-info h3{
    font-size:19px;
    line-height:1.35;
    margin-top:4px;
}

.product-unit{
    font-size:13px;
    color:var(--muted);
    margin-top:4px;
}

.product-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    margin-top:13px;
}

.product-price strong{
    font-size:18px;
}

.product-price span{
    font-size:13px;
    color:#999;
    text-decoration:line-through;
    margin-left:6px;
}

.add-btn{
    width:43px;
    height:43px;
    flex-shrink:0;
    border-radius:13px;
    background:var(--g);
    color:#fff;
    display:grid;
    place-items:center;
}

/* =========================
   ABOUT
========================= */

.about-section{
    background:#fffaf1;
}

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

.about-image{
    position:relative;
}

.about-image img{
    height:540px;
    object-fit:cover;
    border-radius:35px;
}

.experience{
    position:absolute;
    right:-20px;
    bottom:30px;
    background:var(--gd);
    color:#fff;
    padding:20px;
    border-radius:20px;
}

.experience strong{
    display:block;
    font-size:42px;
}

.about-copy p{
    color:var(--muted);
    margin:18px 0;
}

.about-copy ul{
    list-style:none;
    margin-bottom:25px;
}

/* =========================
   CTA
========================= */

.contact-card{
    background:linear-gradient(135deg,var(--gd),var(--g));
    color:#fff;
    padding:50px;
    border-radius:30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:25px;
}

.contact-actions{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

/* =========================
   PAGE BANNER
========================= */

.page-banner{
    padding:65px 0;
    background:linear-gradient(135deg,var(--gd),var(--g));
    color:#fff;
}

.page-banner h1{
    font-size:50px;
}

/* =========================
   SHOP FILTERS
========================= */

.shop-tools{
    margin-bottom:25px;
    overflow-x:auto;
    padding-bottom:5px;
}

.filter-buttons{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.filter-buttons a{
    min-height:44px;
    padding:9px 18px;
    border-radius:999px;
    border:1px solid var(--border);
    background:#fff;
    font-weight:700;
    white-space:nowrap;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.filter-buttons a:hover,
.filter-buttons a.active{
    background:var(--g);
    color:#fff;
    border-color:var(--g);
}

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

.cart-page-grid,
.checkout-grid{
    display:grid;
    grid-template-columns:minmax(0,1.7fr) minmax(300px,.8fr);
    gap:30px;
    align-items:start;
}

/* LEFT CART BOX */

.cart-table{
    width:100%;
    min-width:0;
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:24px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

/* RIGHT ORDER SUMMARY BOX */

.summary-card{
    width:100%;
    min-width:0;
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:28px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);

    display:flex;
    flex-direction:column;
    align-self:start;
}

.summary-card h2,
.summary-card h3{
    margin:0 0 22px;
    color:var(--text);
    font-size:25px;
    line-height:1.3;
}

/* SUMMARY ROWS */

.summary-card > div{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin:0;
    padding:13px 0;
}

.summary-card > div span:first-child{
    color:var(--muted);
}

.summary-card > div span:last-child,
.summary-card > div strong:last-child{
    color:var(--text);
    text-align:right;
}

/* DELIVERY TEXT */

.summary-card .delivery-text{
    font-weight:700;
    text-align:right;
}

/* SUMMARY DIVIDER */

.summary-card hr{
    width:100%;
    height:1px;
    margin:10px 0;
    border:0;
    background:var(--border);
}

/* TOTAL ROW */

.summary-card .grand{
    margin-top:4px;
    padding-top:16px;
    border-top:1px solid var(--border);
    font-size:21px;
    font-weight:800;
}

.summary-card .grand span,
.summary-card .grand strong{
    font-size:21px;
    font-weight:800;
    color:var(--text);
}

/* PROCEED TO CHECKOUT BUTTON */

.summary-card .btn,
.summary-card .primary,
.summary-card .full,
.summary-card a.full,
.summary-card button.full{
    width:100%;
    min-height:56px;
    margin-top:28px;
    padding:14px 20px;

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

    border:0;
    border-radius:14px;
    background:var(--g);
    color:#fff;

    font-size:16px;
    font-weight:800;
    line-height:1.2;
    text-align:center;
    cursor:pointer;
    box-sizing:border-box;
    transition:.25s;
}

.summary-card .btn:hover,
.summary-card .primary:hover,
.summary-card .full:hover{
    background:var(--gd);
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(31,125,85,.22);
}

/* CHECKOUT FORM CARD */

.form-card{
    width:100%;
    min-width:0;
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:24px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

/* CART PRODUCT ROW */

.cart-row{
    display:grid;
    grid-template-columns:90px minmax(0,1fr) 90px 110px;
    gap:16px;
    align-items:center;
    padding:18px 0;
    border-bottom:1px solid var(--border);
}

.cart-row:last-of-type{
    border-bottom:0;
}

.cart-row img{
    width:90px;
    height:85px;
    object-fit:cover;
    border-radius:14px;
}

.cart-row h3{
    margin:0 0 3px;
    font-size:18px;
    line-height:1.3;
}

.cart-row p{
    margin:0;
    color:var(--muted);
    font-size:14px;
}

.cart-row input{
    width:75px;
    min-height:48px;
    padding:10px;
    border:1px solid var(--border);
    border-radius:10px;
    outline:0;
}

.cart-row input:focus{
    border-color:var(--g);
    box-shadow:0 0 0 3px rgba(31,125,85,.1);
}

.cart-row > strong{
    text-align:right;
    font-size:17px;
    white-space:nowrap;
}

/* CART BUTTONS */

.cart-actions{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:12px;
    margin-top:22px;
}

.cart-actions .btn{
    min-height:48px;
    padding:0 20px;
}

/* FULL WIDTH CLASS */

.full{
    width:100%;
}

/* EMPTY CART */

.empty-box{
    width:100%;
    padding:60px 25px;
    text-align:center;
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.empty-box div{
    margin-bottom:15px;
    font-size:60px;
}

.empty-box h2{
    margin-bottom:8px;
}

.empty-box p{
    margin-bottom:22px;
    color:var(--muted);
}

/* CART PAGE BOTTOM SPACE */

.cart-page-grid{
    margin-bottom:30px;
}

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

@media(max-width:992px){

    .cart-page-grid,
    .checkout-grid{
        grid-template-columns:1fr;
        gap:24px;
    }

    .summary-card{
        width:100%;
        max-width:none;
    }
}

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

@media(max-width:600px){

    .cart-page-grid,
    .checkout-grid{
        display:grid;
        grid-template-columns:1fr;
        gap:20px;
    }

    .cart-table,
    .summary-card,
    .form-card{
        width:100%;
        padding:18px;
        border-radius:16px;
    }

    .cart-row{
        grid-template-columns:72px minmax(0,1fr);
        gap:12px;
        padding:16px 0;
    }

    .cart-row img{
        width:72px;
        height:72px;
        grid-row:1 / span 3;
    }

    .cart-row input{
        grid-column:2;
        width:75px;
        min-height:44px;
    }

    .cart-row > strong{
        grid-column:2;
        text-align:left;
    }

    .cart-actions{
        display:grid;
        grid-template-columns:1fr;
        gap:10px;
    }

    .cart-actions .btn,
    .cart-actions button,
    .cart-actions a{
        width:100%;
    }

    .summary-card h2,
    .summary-card h3{
        margin-bottom:16px;
        font-size:23px;
    }

    .summary-card > div{
        gap:12px;
        padding:11px 0;
    }

    .summary-card > div span:last-child,
    .summary-card > div strong:last-child{
        max-width:65%;
    }

    .summary-card .btn,
    .summary-card .primary,
    .summary-card .full,
    .summary-card a.full,
    .summary-card button.full{
        min-height:54px;
        margin-top:24px;
        padding:13px 15px;
        font-size:15px;
        border-radius:13px;
    }

    .empty-box{
        padding:45px 18px;
    }
}
/* =========================
   FORMS
========================= */

.auth-section{
    min-height:70vh;
    display:grid;
    place-items:center;
    padding:70px 15px;
    background:var(--light);
}

.auth-card{
    width:min(460px,100%);
    background:#fff;
    padding:35px;
    border-radius:24px;
    box-shadow:var(--shadow);
}

.auth-card h1{
    margin:8px 0 20px;
}

.auth-card input,
.form-card input,
.form-card textarea,
.form-card select,
.admin-form input,
.admin-form select{
    width:100%;
    padding:13px;
    border:1px solid var(--border);
    border-radius:12px;
    margin-bottom:12px;
}

.form-card textarea{
    min-height:120px;
}

.alert{
    background:#ffe9e9;
    color:#9c2d2d;
    padding:10px;
    border-radius:10px;
    margin-bottom:12px;
}

.success-card{
    text-align:center;
}

.success-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:var(--g);
    color:#fff;
    display:grid;
    place-items:center;
    margin:auto;
    font-size:35px;
}

/* =========================
   ORDERS
========================= */

.order-card{
    display:grid;
    grid-template-columns:1fr auto auto;
    gap:20px;
    align-items:center;
    padding:20px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:16px;
    margin-bottom:14px;
}

.status{
    background:#fff4cf;
    padding:6px 10px;
    border-radius:999px;
}

/* =========================
   ADMIN
========================= */

.admin-layout{
    display:grid;
    grid-template-columns:240px 1fr;
    min-height:100vh;
}

.admin-sidebar{
    background:var(--gd);
    color:#fff;
    padding:25px;
}

.admin-sidebar h2{
    margin-bottom:25px;
}

.admin-sidebar a{
    display:block;
    padding:11px;
    border-radius:10px;
    margin-bottom:6px;
}

.admin-sidebar a:hover{
    background:rgba(255,255,255,.1);
}

.admin-main{
    padding:35px;
    background:#f5f8f6;
}

.stat-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:20px;
    margin-top:25px;
}

.stat-grid > div{
    background:#fff;
    padding:25px;
    border-radius:18px;
}

.stat-grid strong{
    display:block;
    font-size:32px;
}

.admin-form{
    background:#fff;
    padding:20px;
    border-radius:18px;
    margin:20px 0;
}

.admin-table{
    background:#fff;
    border-radius:18px;
    padding:20px;
    overflow-x:auto;
}

.admin-row{
    display:grid;
    grid-template-columns:70px 1fr 120px 90px;
    gap:15px;
    align-items:center;
    padding:12px;
    border-bottom:1px solid var(--border);
    min-width:650px;
}

.admin-row img{
    height:55px;
    object-fit:cover;
    border-radius:10px;
}

.danger-link{
    color:#b12d2d;
}

.order-admin{
    grid-template-columns:1fr 120px 180px 100px;
}

/* =========================
   REVEAL
========================= */

.reveal{
    opacity:0;
    transform:translateY(25px);
    transition:.7s;
}

.reveal.visible{
    opacity:1;
    transform:none;
}

/* =========================
   CONTACT OUTLETS
========================= */

.contact-section{
    width:100%;
    padding:80px 20px;
    background:#f6faf7;
}

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

.contact-title{
    text-align:center;
    margin-bottom:35px;
}

.contact-title h2{
    margin:0 0 10px;
    color:#243d35;
    font-size:clamp(34px,4vw,52px);
    line-height:1.1;
}

.contact-title p{
    margin:0;
    color:#738078;
    font-size:16px;
}

.outlet-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:28px;
    width:100%;
}

.outlet-card{
    display:flex;
    flex-direction:column;
    min-width:0;
    overflow:hidden;
    padding:24px;
    background:#fff;
    border:1px solid #e2ece6;
    border-radius:22px;
    box-shadow:0 12px 35px rgba(30,72,57,.08);
}

.outlet-card h3{
    margin:0 0 14px;
    color:#315e50;
    font-size:23px;
    line-height:1.3;
}

.outlet-card p{
    margin:0 0 10px;
    color:#68766f;
    font-size:15px;
    line-height:1.75;
}

.direction-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    align-self:flex-start;
    min-height:44px;
    margin:8px 0 18px;
    padding:10px 18px;
    color:#fff !important;
    background:#376d5d;
    border-radius:999px;
    font-size:14px;
    font-weight:700;
    transition:.25s;
}

.direction-btn:hover{
    color:#fff !important;
    background:#285447;
    transform:translateY(-2px);
}

.outlet-card iframe{
    display:block;
    width:100% !important;
    height:260px !important;
    margin-top:auto;
    border:0;
    border-radius:16px;
}

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

.footer{
    width:100%;
    background:linear-gradient(135deg,#172c29,#203d37,#142522);
    color:#fff;
    padding:70px 0 0;
    margin-top:60px;
}

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

.footer-grid{
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1.2fr;
    gap:50px;
    align-items:start;
}

.footer-column{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.footer-brand{
    display:flex;
    align-items:center;
    gap:14px;
    color:#fff;
    margin-bottom:22px;
}

.footer-brand .brand-logo{
    width:58px;
    height:58px;
    border-radius:16px;
    background:linear-gradient(135deg,#68b77c,#38875d);
    color:#fff;
    font-size:19px;
    font-weight:800;
    box-shadow:0 12px 30px rgba(0,0,0,.2);
}

.footer-brand .brand-text{
    display:flex;
    flex-direction:column;
}

.footer-brand strong{
    display:block;
    color:#fff;
    font-size:24px;
    line-height:1.2;
    font-weight:800;
}

.footer-brand small{
    display:block;
    margin-top:6px;
    color:rgba(255,255,255,.68);
    font-size:13px;
}

.footer-description{
    max-width:320px;
    margin:0 0 24px;
    color:rgba(255,255,255,.74);
    font-size:15px;
    line-height:1.8;
}

.footer-column h4{
    position:relative;
    margin:4px 0 24px;
    padding-bottom:12px;
    color:#fff;
    font-size:18px;
    font-weight:800;
}

.footer-column h4::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:38px;
    height:3px;
    border-radius:20px;
    background:#68b77c;
}

.footer-column > a{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-bottom:14px;
    color:rgba(255,255,255,.76);
    font-size:15px;
    line-height:1.5;
    transition:.25s;
}

.footer-column > a:hover{
    color:#8de0a1;
    transform:translateX(5px);
}

.footer-contact p{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin:0 0 14px;
    color:rgba(255,255,255,.76);
    font-size:15px;
    line-height:1.6;
}

.footer-contact i{
    width:18px;
    margin-top:3px;
    color:#7ed493;
}

.footer-social{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:12px;
    margin-top:4px;
}

.footer-social a{
    width:42px;
    height:42px;
    margin:0;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#fff;
    background:rgba(255,255,255,.1);
    border:1px solid rgba(255,255,255,.15);
    font-size:17px;
    transition:.25s;
}

.footer-social a:hover{
    color:#fff;
    transform:translateY(-5px);
    box-shadow:0 10px 22px rgba(0,0,0,.25);
}

.footer-social .facebook:hover{
    background:#1877f2;
}

.footer-social .instagram:hover{
    background:linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045);
}

.footer-social .twitter:hover{
    background:#000;
}

.footer-social .youtube:hover{
    background:#f00;
}

.footer-social .whatsapp:hover{
    background:#25d366;
}

.footer-bottom{
    margin-top:55px;
    padding:24px 0;
    border-top:1px solid rgba(255,255,255,.13);
    text-align:center;
}

.footer-bottom p{
    margin:0;
    color:rgba(255,255,255,.66);
    font-size:14px;
}

.floating-whatsapp{
    position:fixed;
    right:24px;
    bottom:24px;
    z-index:9999;
    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#25d366;
    color:#fff;
    font-size:29px;
    box-shadow:0 12px 30px rgba(37,211,102,.4);
    transition:.25s;
}

.floating-whatsapp:hover{
    color:#fff;
    transform:translateY(-5px) scale(1.05);
    box-shadow:0 16px 36px rgba(37,211,102,.5);
}

/* =========================
   TABLET
========================= */

@media(max-width:992px){

    .header-row{
        grid-template-columns:1fr auto;
    }

    .search{
        grid-column:1/-1;
        margin-bottom:12px;
    }

    .menu-btn{
        display:grid;
    }

    .nav{
        max-height:0;
        overflow:hidden;
        transition:max-height .35s;
    }

    .nav.open{
        max-height:700px;
    }

    .nav-links{
        align-items:stretch;
        flex-direction:column;
        gap:5px;
        padding:12px 16px 18px;
    }

    .nav-links a{
        width:100%;
        padding:10px 12px;
        border-radius:9px;
    }

    .nav-links a:hover,
    .nav-links a.active{
        background:var(--light);
        color:var(--g);
    }

    .hero-grid,
    .about-grid,
    .cart-page-grid,
    .checkout-grid{
        grid-template-columns:1fr;
    }

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

    .footer-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:45px 35px;
    }

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

    .outlet-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .outlet-card iframe{
        height:230px !important;
    }
}

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

@media(max-width:600px){

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

    .section{
        padding:58px 0;
    }

    .topbar span:not(:first-child){
        display:none;
    }

    .header-row{
        min-height:72px;
        gap:12px;
    }

    .brand-logo{
        width:44px;
        height:44px;
    }

    .brand strong{
        font-size:18px;
    }

    .header-actions{
        gap:6px;
    }

    .icon-btn,
    .menu-btn{
        width:40px;
        height:40px;
    }

    .hero{
        padding:55px 0;
    }

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

    .hero-image > img{
        height:400px;
    }

    .section-heading,
    .contact-card{
        align-items:flex-start;
        flex-direction:column;
        gap:20px;
    }

    .section-heading h2,
    .about-copy h2,
    .contact-card h2{
        font-size:36px;
    }

    .category-grid,
    .product-grid,
    .footer-grid,
    .stat-grid{
        grid-template-columns:1fr;
    }

    .page-banner{
        padding:50px 0;
    }

    .page-banner h1{
        font-size:40px;
    }

    .filter-buttons{
        flex-wrap:nowrap;
        width:max-content;
        min-width:100%;
    }

    .filter-buttons a{
        min-height:42px;
        padding:8px 16px;
    }

    .product-image{
        height:220px;
    }

    .cart-row{
        grid-template-columns:70px 1fr;
    }

    .cart-row input,
    .cart-row > strong{
        grid-column:2;
    }

    .order-card{
        grid-template-columns:1fr;
    }

    .admin-layout{
        grid-template-columns:1fr;
    }

    .admin-main{
        padding:22px 15px;
    }

    .admin-row,
    .order-admin{
        min-width:0;
        grid-template-columns:1fr;
    }

    .contact-section{
        padding:50px 14px;
    }

    .contact-title{
        text-align:left;
        margin-bottom:30px;
    }

    .contact-title h2{
        font-size:32px;
    }

    .contact-title p{
        font-size:14px;
    }

    .outlet-card{
        padding:20px;
        border-radius:16px;
    }

    .outlet-card h3{
        font-size:20px;
    }

    .outlet-card iframe{
        height:210px !important;
    }

    .footer{
        padding-top:50px;
    }

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

    .footer-grid{
        gap:38px;
    }

    .footer-brand strong{
        font-size:21px;
    }

    .footer-description{
        max-width:100%;
    }

    .footer-social{
        gap:10px;
    }

    .footer-social a{
        width:40px;
        height:40px;
        font-size:16px;
    }

    .footer-bottom{
        margin-top:40px;
        padding:20px 0;
    }

    .floating-whatsapp{
        right:16px;
        bottom:16px;
        width:54px;
        height:54px;
        font-size:26px;
    }

    
}