/* ============================================================
   FarmCart Website — Main Stylesheet
   Modern & Clean · Green theme · Mobile first
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600&family=Plus+Jakarta+Sans:wght@400;500;600&display=swap');

:root {
  --green:       #2D6A4F;
  --green-dark:  #1B4332;
  --green-mid:   #40916C;
  --green-lt:    #D8F3DC;
  --green-bg:    #F0F7F4;
  --accent:      #E8602C;
  --text:        #111827;
  --text-2:      #374151;
  --muted:       #6B7280;
  --border:      #E5E7EB;
  --white:       #ffffff;
  --radius:      12px;
  --radius-sm:   8px;
  --shadow:      0 4px 24px rgba(0,0,0,.07);
  --shadow-sm:   0 2px 8px rgba(0,0,0,.05);
  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Plus Jakarta Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 15px; color: var(--text-2); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── UTILS ── */
.container  { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.text-center { text-align: center; }
.green { color: var(--green); }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: var(--font-head); color: var(--text); line-height: 1.25; }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.2rem; }
.section-label { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--green); margin-bottom: 10px; display: block; }
.section-title { margin-bottom: 14px; }
.section-sub   { color: var(--muted); font-size: 15px; max-width: 520px; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 26px; border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 14px; font-weight: 600; cursor: pointer; transition: all .18s; border: none; }
.btn-primary { background: var(--green); color: white; }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-outline:hover { background: var(--green-bg); }
.btn-white  { background: white; color: var(--green); }
.btn-white:hover { background: var(--green-lt); }
.btn-lg { padding: 15px 32px; font-size: 15px; }
.btn-wa { background: #25D366; color: white; }
.btn-wa:hover { background: #1ebe5d; }

/* ── BADGE ── */
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; }
.badge-green { background: var(--green-lt); color: var(--green-dark); }
.badge-orange { background: #FEF0EA; color: var(--accent); }
.badge-sale { background: var(--accent); color: white; }

/* ── ANNOUNCEMENT BAR ── */
#announcementBar { background: var(--green-dark); color: white; text-align: center; padding: 9px 24px; font-size: 13px; font-weight: 500; position: relative; }
#announcementBar a { color: var(--green-lt); text-decoration: underline; }
#announcementBar .close-bar { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); background: none; border: none; color: white; cursor: pointer; font-size: 18px; opacity: .7; }

/* ── NAVBAR ── */
.navbar { position: sticky; top: 0; z-index: 100; background: white; border-bottom: 1px solid var(--border); transition: box-shadow .2s; }
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-icon { width: 38px; height: 38px; background: var(--green); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.nav-logo-icon img { width: 26px; height: 26px; filter: brightness(0) invert(1); }
.nav-logo-text { font-family: var(--font-head); font-size: 20px; color: var(--text); }
.nav-logo-tag { font-size: 10px; color: var(--muted); display: block; margin-top: -2px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-2); transition: color .15s; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-links a.active::after { content:''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--green); border-radius: 2px; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-wa { display: flex; align-items: center; gap: 6px; background: #25D366; color: white; padding: 8px 16px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; transition: all .15s; }
.nav-wa:hover { background: #1ebe5d; }
.mobile-nav { display: none; }

/* ── HERO ── */
.hero { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 55%, var(--green-mid) 100%); overflow: hidden; position: relative; }
.hero::before { content:''; position:absolute; top:-100px; right:-100px; width:500px; height:500px; border-radius:50%; background:rgba(255,255,255,.04); }
.hero::after  { content:''; position:absolute; bottom:-80px; left:-80px; width:300px; height:300px; border-radius:50%; background:rgba(255,255,255,.03); }
.hero-inner   { display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: center; padding: 80px 0 72px; position: relative; z-index: 1; }
.hero-tag     { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.15); color: white; font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 20px; margin-bottom: 20px; }
.hero h1      { color: white; margin-bottom: 18px; font-size: clamp(2rem, 3.5vw, 2.8rem); }
.hero-sub     { color: rgba(255,255,255,.8); font-size: 15px; margin-bottom: 28px; max-width: 420px; }
.hero-btns    { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats   { display: flex; gap: 28px; margin-top: 36px; }
.hero-stat    { text-align: left; }
.hero-stat-num { font-family: var(--font-head); font-size: 24px; color: white; font-weight: 600; }
.hero-stat-lbl { font-size: 12px; color: rgba(255,255,255,.65); margin-top: 2px; }
.hero-right   { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-card    { background: rgba(255,255,255,.12); border-radius: var(--radius); padding: 20px 16px; text-align: center; backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.1); transition: transform .2s; cursor: pointer; }
.hero-card:hover { transform: translateY(-3px); background: rgba(255,255,255,.18); }
.hero-card-emoji { font-size: 38px; margin-bottom: 8px; }
.hero-card-name { font-size: 13px; font-weight: 600; color: white; margin-bottom: 3px; }
.hero-card-price { font-size: 12px; color: rgba(255,255,255,.7); }

/* ── TRUST BAR ── */
.trust-bar { background: var(--green-bg); border-bottom: 1px solid #C3E6CC; }
.trust-inner { display: flex; justify-content: center; align-items: center; gap: 40px; padding: 16px 0; flex-wrap: wrap; }
.trust-item  { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--green); }
.trust-item svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── PRODUCTS ── */
.cat-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.cat-btn { padding: 7px 18px; border-radius: 20px; font-size: 13px; font-weight: 500; cursor: pointer; border: 1.5px solid var(--border); background: white; color: var(--muted); transition: all .15s; }
.cat-btn:hover { border-color: var(--green); color: var(--green); }
.cat-btn.active { background: var(--green); color: white; border-color: var(--green); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.product-card { background: white; border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; transition: all .2s; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green-lt); }
.product-img  { background: var(--green-bg); height: 160px; display: flex; align-items: center; justify-content: center; font-size: 64px; position: relative; }
.product-badge { position: absolute; top: 10px; right: 10px; }
.product-body { padding: 14px; }
.product-name { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.product-unit { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-size: 16px; font-weight: 700; color: var(--green); }
.product-wa   { background: #25D366; color: white; border: none; padding: 7px 14px; border-radius: var(--radius-sm); font-size: 12px; font-weight: 600; cursor: pointer; transition: all .15s; }
.product-wa:hover { background: #1ebe5d; }
.no-products  { text-align: center; padding: 60px 0; color: var(--muted); font-size: 15px; }
.loading-products { text-align: center; padding: 60px 0; }
.spinner { width: 36px; height: 36px; border: 3px solid var(--green-lt); border-top-color: var(--green); border-radius: 50%; animation: spin .8s linear infinite; margin: 0 auto 12px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── WHY US ── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.feature-card { background: white; border-radius: var(--radius); padding: 28px 24px; border: 1px solid var(--border); transition: all .2s; }
.feature-card:hover { border-color: var(--green-mid); box-shadow: var(--shadow-sm); }
.feature-icon { width: 52px; height: 52px; background: var(--green-bg); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feature-icon svg { width: 26px; height: 26px; color: var(--green); }
.feature-title { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.feature-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ── CTA BANNER ── */
.cta-banner { background: linear-gradient(135deg, var(--green-dark), var(--green)); border-radius: var(--radius); padding: 56px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content:''; position:absolute; top:-60px; right:-60px; width:280px; height:280px; border-radius:50%; background:rgba(255,255,255,.05); }
.cta-banner h2 { color: white; font-size: clamp(1.4rem, 2.5vw, 1.9rem); margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,.8); margin-bottom: 28px; font-size: 15px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main { width: 100%; height: 380px; background: var(--green-bg); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 80px; }
.about-img-badge { position: absolute; bottom: -16px; right: -16px; background: var(--accent); color: white; border-radius: var(--radius); padding: 16px 20px; text-align: center; box-shadow: var(--shadow); }
.about-img-badge-num { font-family: var(--font-head); font-size: 28px; font-weight: 600; }
.about-img-badge-lbl { font-size: 11px; opacity: .9; }
.about-text .section-label { margin-bottom: 8px; }
.about-text h2 { margin-bottom: 16px; }
.about-text p  { color: var(--muted); font-size: 15px; margin-bottom: 16px; }
.about-features { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.about-feature  { display: flex; align-items: flex-start; gap: 12px; }
.about-feature-dot { width: 22px; height: 22px; background: var(--green-lt); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.about-feature-dot svg { width: 13px; height: 13px; color: var(--green); }
.about-feature-text { font-size: 14px; color: var(--text-2); }
.about-hours { background: var(--green-bg); border-radius: var(--radius-sm); padding: 16px 20px; margin-top: 24px; }
.about-hours-title { font-size: 13px; font-weight: 600; color: var(--green); margin-bottom: 10px; }
.hours-row { display: flex; justify-content: space-between; font-size: 13px; padding: 4px 0; border-bottom: 1px solid #C3E6CC; color: var(--text-2); }
.hours-row:last-child { border-bottom: none; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 28px; }
.contact-info-icon { width: 44px; height: 44px; background: var(--green-bg); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { width: 22px; height: 22px; color: var(--green); }
.contact-info-label { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; }
.contact-info-value { font-size: 15px; color: var(--text); font-weight: 500; }
.contact-info-sub   { font-size: 13px; color: var(--muted); margin-top: 2px; }
.contact-form { background: var(--green-bg); border-radius: var(--radius); padding: 32px; }
.form-group { margin-bottom: 16px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; display: block; }
.form-control { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 14px; color: var(--text); background: white; transition: border-color .15s; outline: none; }
.form-control:focus { border-color: var(--green); }
textarea.form-control { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.map-wrap { border-radius: var(--radius); overflow: hidden; height: 220px; background: var(--green-bg); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 14px; margin-top: 16px; border: 1px solid var(--border); }

/* ── FOOTER ── */
.footer { background: var(--green-dark); color: white; }
.footer-top { padding: 56px 0 40px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand-text { font-family: var(--font-head); font-size: 22px; margin-bottom: 6px; }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,.55); margin-bottom: 16px; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.8; max-width: 260px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.social-btn { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; transition: background .15s; }
.social-btn:hover { background: rgba(255,255,255,.2); }
.social-btn svg { width: 18px; height: 18px; color: white; }
.footer-heading { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: rgba(255,255,255,.45); margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.7); transition: color .15s; }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.45); }
.footer-dev  { font-size: 11px; color: rgba(255,255,255,.35); }
.footer-dev a { color: rgba(255,255,255,.55); }

/* ── WA FLOAT BTN ── */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.wa-float-btn { width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: transform .2s; cursor: pointer; border: none; }
.wa-float-btn:hover { transform: scale(1.08); }
.wa-float-btn svg { width: 28px; height: 28px; color: white; }
.wa-tooltip { background: var(--text); color: white; font-size: 12px; padding: 6px 12px; border-radius: var(--radius-sm); white-space: nowrap; opacity: 0; transition: opacity .2s; pointer-events: none; }
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ── TOAST ── */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px); background: var(--text); color: white; padding: 12px 22px; border-radius: var(--radius-sm); font-size: 14px; z-index: 9999; transition: transform .3s; pointer-events: none; }
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.green { background: var(--green); }

/* ── PAGE HEADER ── */
.page-header { background: linear-gradient(135deg, var(--green-dark), var(--green)); padding: 56px 0 48px; text-align: center; }
.page-header h1 { color: white; margin-bottom: 10px; }
.page-header p  { color: rgba(255,255,255,.75); font-size: 15px; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb-sep { color: rgba(255,255,255,.4); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .nav-wa span { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
  .hero-right { grid-template-columns: repeat(4,1fr); }
  .hero-card { padding: 14px 10px; }
  .hero-card-emoji { font-size: 28px; }
  .trust-inner { gap: 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .section { padding: 48px 0; }
  .cta-banner { padding: 36px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .mobile-nav { display: flex; flex-direction: column; gap: 0; position: fixed; top: 68px; left: 0; right: 0; background: white; border-bottom: 1px solid var(--border); z-index: 99; transform: translateY(-100%); transition: transform .25s; box-shadow: var(--shadow); }
  .mobile-nav.open { transform: translateY(0); }
  .mobile-nav a { padding: 14px 24px; font-size: 15px; font-weight: 500; border-bottom: 1px solid var(--border); color: var(--text); }
  .mobile-nav a.active { color: var(--green); background: var(--green-bg); }
}
@media (max-width: 480px) {
  .hero-right { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}

/* ============================================================
   FULLY RESPONSIVE — Complete overhaul
   ============================================================ */

/* ── TABLET (max 1024px) ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 340px; gap: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .products-grid { grid-template-columns: repeat(3,1fr); }
}

/* ── MOBILE (max 768px) ── */
@media (max-width: 768px) {
  /* Container */
  .container { padding: 0 16px; }

  /* Nav */
  .nav-links { display: none !important; }
  .nav-hamburger { display: block !important; }
  .nav-wa span { display: none; }
  .nav-wa { padding: 8px 10px; }
  .nav-inner { height: 60px; }
  .nav-logo-text { font-size: 17px; }

  /* Mobile nav */
  .mobile-nav {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    z-index: 999;
    transform: translateY(-110%);
    transition: transform .25s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
  }
  .mobile-nav.open { transform: translateY(0); }
  .mobile-nav a {
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    display: block;
  }
  .mobile-nav a.active { color: var(--green); background: var(--green-bg); }
  .mobile-nav a:last-child { border-bottom: none; }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0 32px;
    text-align: center;
  }
  .hero-left { order: 1; }
  .hero-right { order: 2; grid-template-columns: repeat(4,1fr); gap: 8px; }
  .hero-card { padding: 12px 8px; }
  .hero-card-emoji { font-size: 26px; margin-bottom: 6px; }
  .hero-card-name { font-size: 11px; }
  .hero-card-price { font-size: 10px; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-sub { margin: 0 auto 20px; }
  .hero h1 { font-size: 1.7rem; }

  /* Trust bar */
  .trust-inner { gap: 14px; padding: 12px 16px; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
  .trust-item { font-size: 12px; white-space: nowrap; flex-shrink: 0; }

  /* Sections */
  .section { padding: 40px 0; }
  .section-sm { padding: 32px 0; }
  h2 { font-size: 1.4rem; }

  /* Products grid */
  .products-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .product-img { height: 130px; }
  .product-img img { height: 130px; }
  .product-name { font-size: 13px; }
  .product-price { font-size: 14px; }
  .product-body { padding: 10px; }

  /* Category filters */
  .cat-filters { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
  .cat-btn { white-space: nowrap; flex-shrink: 0; }
  .cat-filters::-webkit-scrollbar { height: 3px; }
  .cat-filters::-webkit-scrollbar-thumb { background: var(--green-lt); border-radius: 3px; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; gap: 14px; }
  .feature-card { padding: 20px 16px; display: flex; align-items: flex-start; gap: 14px; }
  .feature-icon { margin-bottom: 0; flex-shrink: 0; }
  .feature-title { margin-bottom: 4px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-img-main { height: 240px; }
  .about-img-badge { right: 0; bottom: -12px; }

  /* CTA */
  .cta-banner { padding: 32px 20px; border-radius: var(--radius); }
  .cta-banner h2 { font-size: 1.3rem; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; justify-content: center; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-form { padding: 20px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 28px; padding: 36px 0 24px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
  .footer-desc { max-width: 100%; }
  .footer-social { justify-content: flex-start; }

  /* Page header */
  .page-header { padding: 36px 0 28px; }
  .page-header h1 { font-size: 1.5rem; }

  /* Announcement bar */
  #announcementBar { font-size: 12px; padding: 8px 36px 8px 16px; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  /* Hours */
  .hours-row { font-size: 13px; }

  /* WA float button */
  .wa-float { bottom: 20px; right: 16px; }
  .wa-float-btn { width: 50px; height: 50px; }

  /* Map */
  .map-wrap { height: 180px; }
}

/* ── SMALL MOBILE (max 480px) ── */
@media (max-width: 480px) {
  .hero-right { grid-template-columns: repeat(2,1fr); }
  .hero-card-emoji { font-size: 28px; }
  .hero-card-name { font-size: 12px; }
  .hero-stats { gap: 16px; }
  .hero-stat-num { font-size: 20px; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .product-img { height: 110px; }
  .product-img img { height: 110px; }
  .product-wa { padding: 6px 10px; font-size: 11px; }
  .btn-lg { padding: 12px 22px; font-size: 14px; }
  .trust-inner { gap: 12px; }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  .cta-banner { padding: 24px 16px; }
  .footer-top { padding: 28px 0 20px; }
  .section { padding: 32px 0; }
  .about-hours { padding: 12px 14px; }
  .contact-info-item { gap: 10px; }
  .contact-info-icon { width: 38px; height: 38px; }
}

/* ── VERY SMALL (max 360px) ── */
@media (max-width: 360px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-right { grid-template-columns: repeat(4,1fr); }
  .hero-card { padding: 10px 6px; }
  .nav-logo-tag { display: none; }
}

/* Hide WhatsApp nav button on mobile — use float button instead */
@media (max-width: 768px) {
  .nav-wa { display: none !important; }
  .nav-hamburger { display: block !important; }
}

/* ── NAV FINAL FIX ── */
.mobile-nav { display: none !important; }
.nav-hamburger { display: none !important; }

@media (max-width: 768px) {
  .nav-links { display: none !important; }
  .nav-wa { display: none !important; }
  .nav-hamburger { display: flex !important; align-items: center; justify-content: center; background: none; border: none; cursor: pointer; padding: 6px; }
  .mobile-nav { display: flex !important; flex-direction: column; position: fixed; top: 60px; left: 0; right: 0; background: white; border-bottom: 2px solid var(--border); z-index: 9999; transform: translateY(-110%); transition: transform .25s ease; box-shadow: 0 8px 24px rgba(0,0,0,.15); }
  .mobile-nav.open { transform: translateY(0) !important; }
  .mobile-nav a { display: block !important; padding: 16px 20px; font-size: 15px; font-weight: 500; border-bottom: 1px solid var(--border); color: var(--text); text-decoration: none; }
  .mobile-nav a:last-child { border-bottom: none; }
  .mobile-nav a.active { color: var(--green); background: var(--green-bg); }
}

/* Desktop only / Mobile only utilities */
.desktop-only { display: inline-flex; }
@media (max-width: 768px) {
  .desktop-only { display: none !important; }
}

/* ── HAMBURGER SHOW/HIDE FINAL ── */
.nav-hamburger { display: none !important; }
@media (max-width: 768px) {
  .nav-hamburger { display: flex !important; align-items: center; justify-content: center; background: none; border: none; cursor: pointer; padding: 6px; color: var(--text); }
}

/* ══════════════════════════════════════════
   NAV FINAL — overrides everything above
   ══════════════════════════════════════════ */
#navWaBtn    { display: inline-flex !important; }
#hamburgerBtn{ display: none !important; }
#mobileNav   { display: none !important; }

@media (max-width: 768px) {
  #navWaBtn     { display: none !important; }
  #hamburgerBtn { display: flex !important; align-items: center; justify-content: center; background: none; border: none; cursor: pointer; padding: 6px; color: var(--text); }
  #mobileNav    { display: flex !important; flex-direction: column; position: fixed; top: 60px; left: 0; right: 0; background: #fff; z-index: 9999; transform: translateY(-110%); transition: transform .3s ease; box-shadow: 0 8px 32px rgba(0,0,0,.15); border-bottom: 2px solid var(--green-lt); }
  #mobileNav.open { transform: translateY(0) !important; }
  #mobileNav a { display: block !important; padding: 16px 24px !important; font-size: 16px !important; font-weight: 500 !important; border-bottom: 1px solid var(--border) !important; color: var(--text) !important; text-decoration: none !important; }
  #mobileNav a:last-child { border-bottom: none !important; }
  #mobileNav a.active { color: var(--green) !important; background: var(--green-bg) !important; }
  .nav-links { display: none !important; }
}

/* ── HERO SLIDER ── */
.sdot { width:10px; height:10px; border-radius:50%; border:2px solid rgba(255,255,255,.6); background:transparent; cursor:pointer; padding:0; transition:all .3s; }
.sdot.active { background:white; border-color:white; transform:scale(1.2); }
.sdot:hover { border-color:white; }

/* ══════════════════════════════════════
   NAV FINAL DEFINITIVE FIX
   ══════════════════════════════════════ */

/* Desktop — show WA button, hide hamburger */
.nav-wa       { display: inline-flex !important; }
.nav-hamburger{ display: none !important; }
#mobileNav    { display: none !important; }

@media (max-width: 768px) {
  /* Hide WA button and nav links on mobile */
  .nav-wa    { display: none !important; }
  .nav-links { display: none !important; }

  /* Show hamburger */
  .nav-hamburger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: var(--text);
    flex-shrink: 0;
  }

  /* Nav inner — logo left, actions right, no wrapping */
  .nav-inner {
    height: 60px;
    flex-wrap: nowrap;
  }

  /* Nav actions — cart + hamburger only, no gap issues */
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
  }

  /* Mobile dropdown */
  #mobileNav {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    z-index: 9999;
    transform: translateY(-110%);
    transition: transform .3s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
    border-bottom: 2px solid var(--green-lt);
  }
  #mobileNav.open { transform: translateY(0) !important; }
  #mobileNav a {
    display: block !important;
    padding: 16px 20px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    border-bottom: 1px solid var(--border) !important;
    color: var(--text) !important;
    text-decoration: none !important;
  }
  #mobileNav a:last-child { border-bottom: none !important; }
  #mobileNav a.active { color: var(--green) !important; background: var(--green-bg) !important; }
}