/* ═══════════════════════════════════════════════════════════
   NEXORA HOMELAND FOODS v3 — style.css (ONE FILE — ALL CSS)
   Cart System · Shopping · Premium UI · Full Responsive
   Brand: Deep Green #0b5d2a | Gold #d4af37
   ═══════════════════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --g1: #0b5d2a; --g2: #0e7a38; --g3: #e8f5ed; --g4: #c8e8d4;
  --gold: #d4af37; --gold2: #e8cc5a; --goldd: #b8941f;
  --cream: #faf8f2; --white: #fff;
  --dark: #0e1a12; --dark2: #1a2e1f;
  --text: #1e2d22; --text2: #3d5244; --muted: #6b7d68;
  --border: #e2ddd0; --border2: rgba(11,93,42,.12);
  --sh: 0 4px 24px rgba(11,93,42,.11);
  --sh2: 0 16px 56px rgba(11,93,42,.16);
  --r: 14px; --r2: 20px; --rpill: 50px;
  --tr: .26s cubic-bezier(.4,0,.2,1);
  --font: 'Outfit','Segoe UI',sans-serif;
  --serif: 'Cormorant Garamond',Georgia,serif;
  --mono: 'Space Mono',monospace;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); background: var(--cream); color: var(--text); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
ul { list-style: none; }
::selection { background: var(--gold); color: var(--dark); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: var(--g1); border-radius: 3px; }

/* ── LAYOUT ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-green { background: var(--g1); position: relative; overflow: hidden; }

/* ── SECTION HEADERS ── */
.sec-hdr { text-align: center; margin-bottom: 52px; }
.sec-tag { display: inline-block; font-family: var(--mono); font-size: 10.5px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.sec-title { font-family: var(--serif); font-size: clamp(28px,4.5vw,50px); font-weight: 700; color: var(--dark); line-height: 1.1; margin-bottom: 14px; }
.sec-title em { color: var(--g1); font-style: normal; }
.sec-sub { font-size: clamp(14px,1.8vw,16.5px); color: var(--muted); max-width: 580px; margin: 0 auto; line-height: 1.75; font-weight: 300; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-family: var(--font); font-weight: 600; font-size: 15px; padding: 14px 30px; border-radius: var(--rpill); transition: all var(--tr); cursor: pointer; border: none; text-decoration: none; white-space: nowrap; }
.btn-gold { background: var(--gold); color: var(--dark); box-shadow: 0 4px 20px rgba(212,175,55,.38); }
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(212,175,55,.5); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.btn-ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.btn-wa { background: #25D366; color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,.32); }
.btn-wa:hover { background: #1fba5a; transform: translateY(-2px); }
.btn-gold-outline { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-gold-outline:hover { background: var(--gold); color: var(--dark); }
.btn-lg { font-size: 16px; padding: 16px 36px; }
.btn-block { width: 100%; justify-content: center; }

/* ── CART SIDEBAR ── */
#cartOverlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1400; opacity: 0; pointer-events: none; transition: opacity .3s; backdrop-filter: blur(3px); }
#cartOverlay.open { opacity: 1; pointer-events: all; }
#cartSidebar { position: fixed; top: 0; right: -420px; width: min(420px,100vw); height: 100vh; background: #fff; z-index: 1500; display: flex; flex-direction: column; box-shadow: -8px 0 48px rgba(0,0,0,.2); transition: right .35s cubic-bezier(.4,0,.2,1); overflow: hidden; }
#cartSidebar.open { right: 0; }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--border); background: var(--g1); }
.cart-header h3 { font-family: var(--serif); font-size: 20px; font-weight: 700; color: #fff; }
.cart-close { background: rgba(255,255,255,.15); border: none; color: #fff; width: 36px; height: 36px; border-radius: 50%; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.cart-close:hover { background: rgba(255,255,255,.28); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 20px; }
.cart-items::-webkit-scrollbar { width: 4px; }
.cart-items::-webkit-scrollbar-thumb { background: var(--g4); border-radius: 2px; }
.cart-empty { text-align: center; padding: 60px 20px; }
.cart-empty span { font-size: 56px; display: block; margin-bottom: 14px; }
.cart-empty p { font-size: 16px; font-weight: 600; color: var(--text2); margin-bottom: 6px; }
.cart-empty small { font-size: 13px; color: var(--muted); }
.cart-item { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); animation: slideIn .2s ease; }
@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
.cart-item-img { flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-qty { display: flex; align-items: center; gap: 8px; }
.qty-btn-sm { width: 28px; height: 28px; border-radius: 50%; background: var(--g3); border: 1px solid var(--g4); color: var(--g1); font-size: 16px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.qty-btn-sm:hover { background: var(--g1); color: #fff; }
.cart-item-qty span { font-size: 15px; font-weight: 700; color: var(--dark); min-width: 20px; text-align: center; }
.cart-item-remove { background: none; border: none; color: var(--muted); font-size: 16px; cursor: pointer; padding: 6px; border-radius: 6px; transition: all .2s; flex-shrink: 0; }
.cart-item-remove:hover { background: #ffeaea; color: #c0392b; }
.cart-footer { padding: 16px 20px 24px; border-top: 2px solid var(--border); background: var(--cream); }
.cart-summary { margin-bottom: 16px; padding: 14px 16px; background: #fff; border-radius: var(--r); border: 1px solid var(--border); }
.cart-count-line { display: flex; justify-content: space-between; font-size: 15px; color: var(--text2); }
.cart-count-line strong { color: var(--g1); font-size: 18px; }
.btn-wa-order { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; background: #25D366; color: #fff; font-family: var(--font); font-size: 16px; font-weight: 700; padding: 16px; border-radius: var(--rpill); border: none; cursor: pointer; transition: all .2s; box-shadow: 0 4px 20px rgba(37,211,102,.35); margin-bottom: 10px; }
.btn-wa-order:hover { background: #1fba5a; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.45); }
.btn-clear-cart { display: block; width: 100%; text-align: center; background: none; border: 1.5px solid var(--border); color: var(--muted); font-size: 13px; font-weight: 500; padding: 10px; border-radius: var(--rpill); cursor: pointer; transition: all .2s; }
.btn-clear-cart:hover { border-color: #c0392b; color: #c0392b; background: #ffeaea; }

/* ── TOAST ── */
#toast { position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%) translateY(16px); background: var(--dark); color: #fff; padding: 13px 24px; border-radius: var(--rpill); font-size: 14px; font-weight: 500; z-index: 2000; opacity: 0; transition: all .3s; pointer-events: none; white-space: nowrap; box-shadow: 0 8px 32px rgba(0,0,0,.3); }
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── CART NAV BTN ── */
.cart-nav-btn { display: flex; align-items: center; gap: 7px; background: rgba(255,255,255,.12); color: rgba(255,255,255,.88); border: 1.5px solid rgba(255,255,255,.25); border-radius: var(--rpill); padding: 8px 16px; font-size: 14px; font-weight: 500; cursor: pointer; transition: all .2s; position: relative; }
.cart-nav-btn:hover { background: rgba(255,255,255,.22); color: #fff; }
.cart-badge { display: flex; align-items: center; justify-content: center; min-width: 20px; height: 20px; background: var(--gold); color: var(--dark); font-size: 11px; font-weight: 700; border-radius: 10px; padding: 0 5px; }

/* ── CART BAR ── */
.cart-bar { display: flex; align-items: center; justify-content: space-between; background: var(--g1); border-radius: var(--r); padding: 14px 24px; margin-bottom: 28px; animation: slideIn .3s ease; }
.cart-bar-info { color: #fff; font-size: 15px; }
.cart-bar-info strong { color: var(--gold); }
.btn-view-cart { background: var(--gold); color: var(--dark); font-size: 14px; font-weight: 700; padding: 10px 22px; border-radius: var(--rpill); border: none; cursor: pointer; transition: all .2s; }
.btn-view-cart:hover { background: var(--gold2); }

/* ── FLOATING WA ── */
.float-wa { position: fixed; bottom: 28px; right: 28px; z-index: 998; width: 62px; height: 62px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 28px rgba(37,211,102,.55); transition: all .3s; text-decoration: none; animation: waPulse 2.5s ease-in-out infinite; }
.float-wa:hover { transform: scale(1.12); box-shadow: 0 8px 40px rgba(37,211,102,.72); }
.float-wa-tip { position: absolute; right: 72px; top: 50%; transform: translateY(-50%); background: var(--dark); color: #fff; padding: 8px 16px; border-radius: 8px; font-size: 13px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .2s; box-shadow: var(--sh); }
.float-wa:hover .float-wa-tip { opacity: 1; }
@keyframes waPulse { 0%,100% { box-shadow: 0 4px 28px rgba(37,211,102,.55); } 50% { box-shadow: 0 4px 48px rgba(37,211,102,.82); } }

/* ── BACK TO TOP ── */
#btt { position: fixed; bottom: 28px; left: 28px; z-index: 998; width: 44px; height: 44px; border-radius: 50%; background: var(--g1); color: #fff; font-size: 18px; display: flex; align-items: center; justify-content: center; box-shadow: var(--sh); opacity: 0; transform: translateY(16px); transition: all .3s; }
#btt.show { opacity: 1; transform: translateY(0); }
#btt:hover { background: var(--g2); transform: translateY(-2px); }

/* ── NAVBAR ── */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(11,93,42,.97); backdrop-filter: blur(20px); height: 72px; padding: 0 5%; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(212,175,55,.18); transition: box-shadow .3s; }
#navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.24); }
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-brand img { height: 46px; width: auto; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text b { font-family: var(--serif); font-size: 18px; font-weight: 700; color: #fff; }
.brand-text small { font-size: 10px; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { color: rgba(255,255,255,.82); font-size: 13.5px; font-weight: 500; padding: 8px 12px; border-radius: 8px; transition: all .2s; }
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,.1); }
.nav-wa { background: var(--gold) !important; color: var(--dark) !important; font-weight: 700 !important; border-radius: var(--rpill) !important; padding: 9px 18px !important; display: inline-flex !important; align-items: center !important; gap: 7px !important; }
.nav-wa:hover { background: var(--gold2) !important; }

/* ── HAMBURGER ── */
#hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; border: none; background: none; cursor: pointer; }
#hamburger span { display: block; width: 26px; height: 2.5px; background: #fff; border-radius: 3px; transition: all .3s; transform-origin: center; }
#hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
#hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
#hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── MOBILE MENU ── */
#mob-menu { display: none; position: fixed; inset: 0; z-index: 999; background: linear-gradient(160deg, var(--g1) 0%, var(--dark2) 100%); flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 40px 24px; }
#mob-menu.open { display: flex; animation: menuFade .3s ease; }
@keyframes menuFade { from { opacity: 0; } to { opacity: 1; } }
.mob-logo { height: 50px; margin-bottom: 20px; object-fit: contain; }
.mob-close { position: absolute; top: 20px; right: 20px; background: rgba(255,255,255,.1); border: none; color: #fff; width: 44px; height: 44px; border-radius: 50%; font-size: 22px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
#mob-menu nav { display: flex; flex-direction: column; align-items: center; gap: 4px; width: 100%; max-width: 300px; }
#mob-menu a { color: rgba(255,255,255,.88); font-size: 22px; font-family: var(--serif); font-weight: 600; padding: 12px 32px; border-radius: var(--r); transition: all .2s; text-align: center; width: 100%; }
#mob-menu a:hover { background: rgba(212,175,55,.15); color: var(--gold); }
.mob-wa { margin-top: 16px !important; background: #25D366 !important; color: #fff !important; border-radius: var(--rpill) !important; font-size: 17px !important; }

/* ── HERO ── */
.hero { min-height: 100vh; position: relative; overflow: hidden; display: flex; align-items: center; padding: 100px 5% 80px; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(11,93,42,.95) 0%, rgba(11,93,42,.8) 45%, rgba(14,26,18,.7) 100%); }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 130px; background: linear-gradient(to top, var(--cream), transparent); z-index: 2; pointer-events: none; }
.hero-content { position: relative; z-index: 3; max-width: 700px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(212,175,55,.16); border: 1px solid rgba(212,175,55,.35); color: var(--gold); font-size: 11.5px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; padding: 8px 20px; border-radius: var(--rpill); margin-bottom: 28px; }
.hero h1 { font-family: var(--serif); font-size: clamp(38px,7vw,78px); font-weight: 700; color: #fff; line-height: 1.07; margin-bottom: 24px; }
.hero h1 span { color: var(--gold); display: block; }
.hero p { color: rgba(255,255,255,.82); font-size: clamp(15px,2vw,18px); max-width: 580px; margin-bottom: 40px; font-weight: 300; line-height: 1.75; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 60px; flex-wrap: wrap; padding-top: 36px; border-top: 1px solid rgba(255,255,255,.12); }
.hstat .hnum { font-family: var(--serif); font-size: 44px; font-weight: 700; color: var(--gold); line-height: 1; }
.hstat .hlbl { font-size: 12px; color: rgba(255,255,255,.65); margin-top: 5px; letter-spacing: .5px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
.animate-up { animation: fadeUp .7s ease both; }
.d0 { animation-delay: 0s; } .d1 { animation-delay: .12s; } .d2 { animation-delay: .24s; } .d3 { animation-delay: .36s; } .d4 { animation-delay: .50s; }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-44px); transition: opacity .75s ease, transform .75s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(44px); transition: opacity .75s ease, transform .75s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── TRUST BAR ── */
.trust-bar { background: var(--gold); padding: 14px 5%; display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.trust-bar span { display: flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: var(--dark); font-family: var(--mono); }

/* ── WHY GRID ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 22px; }
.why-card { background: #fff; border-radius: var(--r2); padding: 36px 28px; border: 1px solid var(--border); box-shadow: var(--sh); transition: all var(--tr); position: relative; overflow: hidden; }
.why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,var(--g1),var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform var(--tr); }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--sh2); }
.why-card:hover::before { transform: scaleX(1); }
.why-ico { font-size: 36px; margin-bottom: 18px; transition: transform .3s; }
.why-card:hover .why-ico { transform: scale(1.15); }
.why-card h3 { font-family: var(--serif); font-size: 21px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* ── PRODUCT SEARCH ── */
.search-wrap { max-width: 500px; margin: 0 auto 28px; position: relative; display: flex; align-items: center; gap: 12px; background: #fff; border: 2px solid var(--border); border-radius: var(--rpill); padding: 0 20px; transition: border-color .2s; }
.search-wrap:focus-within { border-color: var(--g1); box-shadow: 0 0 0 3px rgba(11,93,42,.07); }
.search-wrap span { font-size: 18px; flex-shrink: 0; }
.search-wrap input { width: 100%; padding: 14px 0; font-size: 14px; background: transparent; outline: none; color: var(--text); border: none; }

/* ── FILTERS ── */
.filters { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.filt { padding: 9px 22px; border-radius: var(--rpill); font-size: 13px; font-weight: 600; cursor: pointer; border: 2px solid var(--g1); color: var(--g1); background: transparent; transition: all .2s; font-family: var(--font); }
.filt.active, .filt:hover { background: var(--g1); color: #fff; }

/* ── PRODUCT GRID & CARDS ── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(210px,1fr)); gap: 20px; }
.no-results { grid-column: 1/-1; text-align: center; padding: 80px 20px; color: var(--muted); }
.no-results span { font-size: 56px; display: block; margin-bottom: 14px; }
.no-results p { font-size: 18px; font-weight: 600; color: var(--text2); margin-bottom: 6px; }
.product-card { background: var(--cream); border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); transition: all var(--tr); box-shadow: 0 2px 10px rgba(0,0,0,.05); position: relative; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-7px); box-shadow: var(--sh2); border-color: rgba(11,93,42,.22); }
.card-badge { position: absolute; top: 10px; right: 10px; z-index: 2; font-size: 9.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; background: var(--gold); color: var(--dark); }
.card-badge.badge-best-seller { background: var(--g1); color: #fff; }
.card-badge.badge-popular { background: #e67e22; color: #fff; }
.card-badge.badge-new { background: #2980b9; color: #fff; }
.card-badge.badge-high-margin { background: var(--goldd); color: #fff; }
.card-badge.badge-staple { background: var(--text); color: #fff; }
.card-img { height: 170px; overflow: hidden; background: var(--g3); position: relative; flex-shrink: 0; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .card-img img { transform: scale(1.08); }
.card-img.img-err::after, .img-placeholder { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; font-size: 52px; background: var(--g3); color: var(--g1); }
.card-img.img-err::after { content: '🍽️'; position: absolute; inset: 0; }
.img-placeholder { position: absolute; inset: 0; }
.card-body { padding: 16px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.card-name { font-family: var(--serif); font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.card-desc { font-size: 12.5px; color: var(--muted); line-height: 1.6; font-weight: 300; margin-bottom: 14px; flex: 1; }
.card-actions { margin-top: auto; }
.btn-add-cart { display: flex; align-items: center; justify-content: center; gap: 7px; background: var(--g1); color: #fff; font-size: 13px; font-weight: 600; padding: 11px 16px; border-radius: var(--rpill); transition: all .2s; width: 100%; border: none; cursor: pointer; font-family: var(--font); }
.btn-add-cart:hover { background: var(--g2); box-shadow: 0 4px 16px rgba(11,93,42,.3); transform: translateY(-1px); }
.qty-control { display: flex; align-items: center; gap: 8px; }
.qty-btn { width: 34px; height: 34px; border-radius: 50%; background: var(--g3); border: 1.5px solid var(--g4); color: var(--g1); font-size: 18px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s; flex-shrink: 0; }
.qty-btn:hover { background: var(--g1); color: #fff; border-color: var(--g1); }
.qty-num { flex: 1; text-align: center; font-size: 16px; font-weight: 700; color: var(--dark); }
.btn-remove-cart { background: none; border: none; color: var(--muted); font-size: 14px; cursor: pointer; padding: 6px; border-radius: 6px; transition: all .2s; flex-shrink: 0; }
.btn-remove-cart:hover { background: #ffeaea; color: #c0392b; }

/* ── CUSTOM BANNER ── */
.custom-banner { margin-top: 56px; background: var(--g1); border-radius: var(--r2); padding: 40px 48px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; overflow: hidden; position: relative; }
.custom-banner::before { content: '?'; position: absolute; right: 24px; top: -24px; font-family: var(--serif); font-size: 180px; font-weight: 900; color: rgba(255,255,255,.04); pointer-events: none; }
.custom-banner h3 { font-family: var(--serif); font-size: 23px; color: #fff; margin-bottom: 6px; }
.custom-banner p { color: rgba(255,255,255,.72); font-size: 14px; font-weight: 300; }

/* ── STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(210px,1fr)); gap: 32px; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 40px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg,var(--g1),var(--gold)); z-index: 0; }
.step-card { text-align: center; position: relative; z-index: 1; }
.step-n { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg,var(--g1),var(--g2)); color: #fff; font-family: var(--serif); font-size: 28px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; border: 4px solid var(--cream); box-shadow: 0 4px 24px rgba(11,93,42,.28); transition: transform .3s; }
.step-card:hover .step-n { transform: scale(1.08); }
.step-ico { font-size: 30px; margin-bottom: 12px; }
.step-card h3 { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.step-card p { font-size: 13.5px; color: var(--muted); line-height: 1.7; font-weight: 300; max-width: 180px; margin: 0 auto; }
.secure-note { text-align: center; margin-top: 40px; display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--border2); border-radius: var(--rpill); padding: 14px 28px; font-size: 14px; font-weight: 500; color: var(--text2); box-shadow: var(--sh); margin-left: 50%; transform: translateX(-50%); }
.secure-note strong { color: var(--g1); }

/* ── ABOUT ── */
.bg-green::before { content: 'NHF'; position: absolute; right: -40px; top: 50%; transform: translateY(-50%); font-family: var(--serif); font-size: 400px; font-weight: 900; opacity: .04; color: #fff; line-height: 1; pointer-events: none; white-space: nowrap; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 2; }
.about-img-col { position: relative; }
.founder-frame { border-radius: var(--r2); overflow: hidden; background: rgba(255,255,255,.06); border: 1px solid rgba(212,175,55,.2); aspect-ratio: 4/5; }
.founder-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.founder-badge { position: absolute; bottom: -16px; right: -16px; background: var(--gold); color: var(--dark); border-radius: var(--r); padding: 18px 22px; box-shadow: 0 8px 32px rgba(212,175,55,.38); text-align: center; }
.founder-badge strong { font-family: var(--serif); font-size: 30px; font-weight: 800; display: block; line-height: 1; }
.founder-badge span { font-size: 11px; font-weight: 700; letter-spacing: 1px; margin-top: 4px; display: block; }
.about-text-col p { color: rgba(255,255,255,.8); font-size: 15px; line-height: 1.82; font-weight: 300; margin-bottom: 16px; }
.about-text-col blockquote { border-left: 3px solid var(--gold); padding: 14px 20px; margin: 20px 0; color: rgba(255,255,255,.75); font-style: italic; font-size: 15px; background: rgba(212,175,55,.07); border-radius: 0 var(--r) var(--r) 0; }
.about-icons { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.aico { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r); padding: 12px 14px; color: rgba(255,255,255,.86); font-size: 13px; font-weight: 500; transition: background .2s; }
.aico:hover { background: rgba(255,255,255,.13); }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 20px; }
.review-card { background: #fff; border-radius: var(--r2); padding: 30px; border: 1px solid var(--border); box-shadow: var(--sh); transition: all var(--tr); }
.review-card:hover { transform: translateY(-5px); box-shadow: var(--sh2); }
.stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; margin-bottom: 14px; }
.review-card p { font-family: var(--serif); font-size: 16px; color: var(--text2); line-height: 1.72; font-style: italic; margin-bottom: 18px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.rav { width: 44px; height: 44px; border-radius: 50%; background: var(--g1); color: #fff; font-family: var(--serif); font-size: 19px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.reviewer b { display: block; font-weight: 700; font-size: 14px; color: var(--dark); }
.reviewer small { font-size: 12px; color: var(--muted); }

/* ── CTA BAND ── */
.cta-band { background: linear-gradient(135deg,var(--g1),var(--g2) 70%,#1a9448); text-align: center; padding: 88px 5%; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg,transparent,transparent 50px,rgba(212,175,55,.03) 50px,rgba(212,175,55,.03) 100px); }
.cta-band-inner { position: relative; z-index: 2; }
.cta-band h2 { font-family: var(--serif); font-size: clamp(28px,5vw,52px); font-weight: 700; color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.78); font-size: 16px; margin-bottom: 40px; font-weight: 300; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info h3 { font-family: var(--serif); font-size: 26px; font-weight: 700; color: var(--dark); margin-bottom: 28px; }
.cinfo-item { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }
.cico { width: 50px; height: 50px; min-width: 50px; border-radius: var(--r); background: linear-gradient(135deg,var(--g1),var(--g2)); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.cinfo-item h4 { font-weight: 600; font-size: 14px; color: var(--dark); margin-bottom: 5px; }
.cinfo-item p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }
.cinfo-item a { color: var(--g1); font-weight: 500; transition: color .2s; }
.cinfo-item a:hover { color: var(--goldd); }
.secure-badge { display: flex; align-items: flex-start; gap: 14px; background: var(--g3); border: 1px solid var(--border2); border-radius: var(--r); padding: 18px 20px; margin-top: 22px; }
.secure-badge > span { font-size: 26px; flex-shrink: 0; }
.secure-badge div { font-size: 13.5px; color: var(--text2); line-height: 1.6; }
.secure-badge strong { color: var(--g1); display: block; margin-bottom: 4px; }
.socials { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.soc-btn { display: inline-flex; align-items: center; gap: 7px; padding: 10px 18px; border-radius: var(--rpill); font-size: 13px; font-weight: 600; transition: all .2s; color: #fff; text-decoration: none; }
.soc-ig { background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045); }
.soc-fb { background: #1877F2; }
.soc-wa { background: #25D366; }
.soc-btn:hover { transform: translateY(-2px); filter: brightness(1.1); }
.contact-form { background: #fff; border-radius: var(--r2); padding: 40px; border: 1px solid var(--border); box-shadow: var(--sh); }
.contact-form h3 { font-family: var(--serif); font-size: 25px; font-weight: 700; color: var(--dark); margin-bottom: 26px; }
.fg { margin-bottom: 18px; }
.fg label { display: block; font-size: 12px; font-weight: 600; color: var(--text); margin-bottom: 7px; letter-spacing: .5px; text-transform: uppercase; }
.fg input, .fg select, .fg textarea { width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: var(--r); font-size: 14px; color: var(--text); background: var(--cream); transition: border-color .2s, box-shadow .2s; outline: none; font-family: var(--font); }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--g1); background: #fff; box-shadow: 0 0 0 3px rgba(11,93,42,.07); }
.fg textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── FOOTER ── */
footer { background: var(--dark); padding: 80px 5% 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand img { height: 54px; width: auto; object-fit: contain; margin-bottom: 18px; }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,.5); line-height: 1.78; font-weight: 300; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.footer-socials a { width: 40px; height: 40px; border-radius: var(--r); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 15px; color: rgba(255,255,255,.7); transition: all .2s; text-decoration: none; }
.footer-socials a:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.footer-col h4 { font-family: var(--serif); font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 20px; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,.5); font-size: 13.5px; transition: color .2s; font-weight: 300; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.32); }
.gold { color: var(--gold); }

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-col { max-width: 440px; margin: 0 auto; }
  .founder-badge { right: 8px; bottom: -10px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .steps-grid::before { display: none; }
  .nav-links { gap: 2px; }
  .nav-links a { font-size: 12.5px; padding: 8px 9px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  #hamburger { display: flex; }
  #navbar { padding: 0 18px; height: 64px; }
  .nav-brand img { height: 38px; }
  .hero { padding: 96px 18px 68px; text-align: center; min-height: 100svh; }
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: clamp(30px,9vw,48px); }
  .hero p { font-size: 15px; max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; gap: 24px; padding-top: 24px; }
  .hstat .hnum { font-size: 34px; }
  .section { padding: 64px 0; }
  .container { padding: 0 16px; }
  .why-grid { grid-template-columns: 1fr; gap: 14px; }
  .products-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .card-img { height: 145px; }
  .card-body { padding: 12px 12px 16px; }
  .card-name { font-size: 15px; }
  .card-desc { font-size: 12px; min-height: 28px; }
  .btn-add-cart { font-size: 12px; padding: 10px 12px; }
  .filters { gap: 6px; }
  .filt { font-size: 12px; padding: 7px 14px; }
  .custom-banner { padding: 28px 22px; text-align: center; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
  .step-n { width: 64px; height: 64px; font-size: 22px; }
  .secure-note { flex-direction: column; text-align: center; border-radius: var(--r); font-size: 13px; padding: 14px 20px; }
  .bg-green::before { display: none; }
  .about-img-col { max-width: 320px; }
  .about-icons { grid-template-columns: 1fr; }
  .reviews-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 14px; padding-bottom: 14px; -webkit-overflow-scrolling: touch; }
  .review-card { min-width: calc(90vw - 32px); scroll-snap-align: start; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { text-align: center; }
  .footer-brand img { margin: 0 auto 16px; }
  .footer-brand p { max-width: 100%; }
  .footer-socials { justify-content: center; }
  .footer-col { text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form { padding: 26px 18px; }
  .form-row { grid-template-columns: 1fr; }
  .float-wa { bottom: 18px; right: 18px; width: 54px; height: 54px; }
  .float-wa-tip { display: none; }
  #btt { bottom: 18px; left: 18px; width: 40px; height: 40px; font-size: 15px; }
  #cartSidebar { width: 100vw; }
  .trust-bar { gap: 10px; padding: 11px 16px; }
  .trust-bar span { font-size: 11px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .products-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .card-img { height: 128px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 18px; }
  .hstat .hnum { font-size: 28px; }
  .trust-bar { flex-direction: column; align-items: center; gap: 8px; }
  .cart-bar { flex-direction: column; gap: 10px; text-align: center; }
}
@media (max-width: 360px) {
  .products-grid { grid-template-columns: 1fr 1fr; }
  .brand-text { display: none; }
  .hero h1 { font-size: 25px; }
}
@media (hover: none) {
  .product-card:hover { transform: none; }
  .why-card:hover { transform: none; }
  .btn:hover { transform: none !important; }
  .float-wa:hover { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
@media print {
  #navbar, .float-wa, #btt, #mob-menu, .hero-btns, #cartSidebar, #cartOverlay { display: none !important; }
  .hero { min-height: auto; padding: 40px 0; }
  * { color: #000 !important; background: #fff !important; box-shadow: none !important; }
}
