@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600&family=Space+Mono:wght@400;700&display=swap');

/* ── TOKENS ──────────────────────────────────────────────────────────────── */
:root {
  --forest:      #1A3A1F;
  --forest-mid:  #243F29;
  --forest-light:#2E5235;
  --cream:       #F5F0E8;
  --cream-dark:  #EDE7DB;
  --orange:      #E07820;
  --orange-hover:#C96A18;
  --gold:        #B8860B;
  --offwhite:    #F0EBE0;
  --charcoal:    #1C1C1C;
  --muted:       #6A6560;
  --sienna:      #8B4513;
  --rule:        #D8D0C4;
  --rule-dark:   #2A4030;
  --navy:        #16264A;
}

/* ── RESET ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--charcoal); font-size: 15px; line-height: 1.6; }
a { text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { display: block; }
option { background: var(--forest); color: var(--offwhite); }

/* ── NAV ─────────────────────────────────────────────────────────────────── */
.nav {
  background: var(--forest);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px; height: 56px;
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--rule-dark);
}
.nav-logo { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--offwhite); letter-spacing: 0.01em; display: flex; align-items: center; }
.nav-logo span { color: var(--orange); }
.nav-logo img { height: 38px; width: auto; display: block; }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a { color: rgba(240,235,224,0.6); font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--offwhite); }
.nav-links a.nav-active { color: var(--orange); font-weight: 600; }
.nav-cta { background: var(--orange) !important; color: #fff !important; padding: 9px 22px; border-radius: 3px; font-weight: 600 !important; letter-spacing: 0.04em !important; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--orange-hover) !important; }

.nav-container-icon { position: relative; display: flex; align-items: center; cursor: pointer; color: rgba(240,235,224,0.75); font-size: 19px; transition: color 0.2s; }
.nav-container-icon:hover { color: var(--offwhite); }
.container-count { position: absolute; top: -7px; right: -10px; background: var(--orange); color: #fff; font-size: 10px; font-weight: 700; min-width: 17px; height: 17px; border-radius: 9px; display: flex; align-items: center; justify-content: center; padding: 0 4px; font-family: 'Space Mono', monospace; }

.nav-user-area { display: none; align-items: center; gap: 10px; cursor: pointer; }
.nav-user-dot { width: 28px; height: 28px; border-radius: 50%; background: var(--orange); color: #fff; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-user-name { font-size: 12px; color: rgba(240,235,224,0.75); }

/* ── HERO ────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--forest);
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 88vh; overflow: hidden; position: relative;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(-55deg, transparent, transparent 60px, rgba(184,134,11,0.03) 60px, rgba(184,134,11,0.03) 61px);
}
.hero-left { padding: 80px 52px 80px 64px; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 2; }
.hero-eyebrow { font-family: 'Space Mono', monospace; font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 28px; display: flex; align-items: center; gap: 14px; }
.hero-h1 { font-family: 'DM Serif Display', serif; font-size: clamp(20px,2.7vw,49px); color: var(--offwhite); line-height: 1.15; margin-bottom: 28px; letter-spacing: -0.01em; }
.hero-h1 em { font-style: italic; color: var(--orange); }
.hero-h1-highlight { display: inline-block; white-space: nowrap; }
.hero-sub { color: rgba(240,235,224,0.6); font-size: 13.5px; line-height: 1.85; max-width: none; margin-bottom: 44px; }
.hero-tick { color: var(--gold); font-weight: 700; margin-right: 4px; }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.hero-stats { margin-top: 60px; display: flex; flex-direction: column; gap: 18px; padding-top: 36px; border-top: 1px solid var(--rule-dark); }
.stat-val { font-family: 'DM Serif Display', serif; font-size: 38px; color: var(--offwhite); line-height: 1; }
.stat-val span { color: var(--orange); }
.stat-label { font-size: 10px; color: rgba(240,235,224,0.4); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 5px; font-family: 'Space Mono', monospace; max-width: 110px; line-height: 1.4; }
.stat-row-primary { display: flex; align-items: flex-start; gap: 36px; }
.stat-diaspora-row { display: flex; align-items: flex-start; padding: 14px 0; border-top: 1px solid var(--rule-dark); border-bottom: 1px solid var(--rule-dark); }
.stat-diaspora-item { flex: 1; padding: 0 16px 0 0; }
.stat-diaspora-item:not(:first-child) { padding-left: 16px; border-left: 1px solid var(--rule-dark); }
.stat-val-sm { font-family: 'DM Serif Display', serif; font-size: 28px; color: var(--offwhite); line-height: 1; }
.stat-val-sm span { color: var(--orange); }

.hero-right { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.hero-right-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 60% 40%, rgba(224,120,32,0.08) 0%, transparent 65%); }

/* Floating product cards (hero) */
.pcf { position: absolute; background: var(--offwhite); border-radius: 8px; overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,0.28); text-decoration: none; display: block; transition: transform 0.2s, box-shadow 0.2s; }
.pcf:hover { box-shadow: 0 20px 56px rgba(0,0,0,0.36); }
.pcf-1 { width: 245px; top: 8%;  left: 5%;  transform: rotate(-3.5deg); }
.pcf-1:hover { transform: rotate(-3.5deg) scale(1.04); }
.pcf-2 { width: 262px; top: 9%; left: 50%; transform: rotate(2deg); }
.pcf-2:hover { transform: rotate(2deg) scale(1.04); }
.pcf-3 { width: 228px; bottom: 6%; left: 11%; transform: rotate(-1.5deg); }
.pcf-3:hover { transform: rotate(-1.5deg) scale(1.04); }
.pcf-4 { width: 242px; bottom: 6%;  left: 56%; transform: rotate(3.5deg); }
.pcf-4:hover { transform: rotate(3.5deg) scale(1.04); }
.pcf-img { width: 100%; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.pcf-img img { width: 100%; height: 100%; object-fit: contain; padding: 14px; }
.pcf-img-a { background: #FFF6EE; }
.pcf-img-b { background: #EEF4FF; }
.pcf-img-c { background: #EEF8EE; }
.pcf-img-d { background: #FFF0EE; }
.pcf-img-e { background: #F5F0FF; }
.pcf-body { padding: 12px 14px 14px; border-top: 1px solid var(--rule); }
.pcf-name { font-size: 12px; font-weight: 600; color: var(--charcoal); line-height: 1.35; }
.pcf-cat  { font-size: 10px; color: var(--muted); margin-top: 2px; }

/* ── TICKER ──────────────────────────────────────────────────────────────── */
.ticker { background: var(--forest-mid); border-top: 1px solid var(--rule-dark); border-bottom: 1px solid var(--rule-dark); padding: 11px 0; overflow: hidden; white-space: nowrap; }
.ticker-track { display: inline-flex; animation: ticker 32s linear infinite; }
.ticker-item { font-family: 'Space Mono', monospace; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(240,235,224,0.5); padding: 0 28px; border-right: 1px solid var(--rule-dark); }
.ticker-item.hi { color: var(--orange); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── PROMO TICKER (header/hero wedge) ───────────────────────────────────── */
.promo-ticker { background: var(--cream-dark); border-bottom: 1px solid var(--rule); padding: 12px 0; overflow: hidden; white-space: nowrap; }
.promo-ticker-track { display: inline-flex; animation: promoTicker 28s linear infinite; }
.promo-ticker-item { font-family: 'Space Mono', monospace; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0 48px; }
.promo-ticker-item.pt-green { color: var(--forest); }
.promo-ticker-item.pt-navy { color: var(--navy); }
@keyframes promoTicker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── TRADE WITH US (WHY / WHO) ──────────────────────────────────────────── */
.twu { padding: 44px 64px; background: var(--cream); }
.twu-intro { max-width: 680px; margin-bottom: 28px; }
.twu .section-eyebrow { font-size: 13px; font-weight: 700; }
.twu .section-h2 { font-size: clamp(22px,2.4vw,32px); }
.twu-sub { margin-top: 8px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.twu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.twu-col { background: #fff; padding: 26px 30px; }
.twu-col-title { font-family: 'Space Mono', monospace; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--forest); margin-bottom: 14px; }
.twu-why-list, .twu-who-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.twu-why-list li { font-size: 12.5px; color: var(--muted); line-height: 1.55; }
.twu-why-list li strong { color: var(--forest); }
.twu-who-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--charcoal); line-height: 1.5; }
.twu-tick { color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn-primary { background: var(--orange); color: #fff; padding: 14px 28px; border-radius: 3px; font-weight: 600; font-size: 14px; letter-spacing: 0.03em; transition: background 0.2s; border: none; display: inline-block; }
.btn-primary:hover { background: var(--orange-hover); }
.btn-ghost { color: rgba(240,235,224,0.55); font-size: 13px; display: flex; align-items: center; gap: 8px; transition: color 0.2s; font-weight: 500; }
.btn-ghost:hover { color: var(--offwhite); }
.btn-outline { border: 1.5px solid var(--orange); color: var(--orange); padding: 10px 22px; border-radius: 3px; font-size: 13px; font-weight: 600; transition: all 0.2s; letter-spacing: 0.02em; display: inline-block; }
.btn-outline:hover { background: var(--orange); color: #fff; }

/* ── TRUST BAR ───────────────────────────────────────────────────────────── */
.trust-bar { background: var(--cream-dark); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 28px 64px; display: flex; justify-content: space-between; align-items: center; gap: 32px; }
.trust-item { display: flex; align-items: center; gap: 14px; flex: 1; }
.trust-icon { font-size: 28px; flex-shrink: 0; }
.trust-label { font-weight: 600; font-size: 13px; color: var(--forest); line-height: 1.3; margin-bottom: 2px; }
.trust-desc  { font-size: 12px; color: var(--muted); line-height: 1.4; }
.trust-divider { width: 1px; height: 40px; background: var(--rule); flex-shrink: 0; }

/* ── HOW IT WORKS ────────────────────────────────────────────────────────── */
.how { padding: 48px 64px 88px; background: var(--cream); }
.how-intro { max-width: 520px; margin-bottom: 28px; }
.how .section-eyebrow { color: var(--orange); }
.how-intro p { margin-top: 16px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.how-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--rule); background: var(--rule); gap: 1px; }
.how-step { background: var(--cream); padding: 36px 28px 40px; }
.step-num { font-family: 'DM Serif Display', serif; font-size: 52px; color: var(--rule); line-height: 1; margin-bottom: 18px; }
.step-icon { font-size: 26px; display: block; margin-bottom: 14px; }
.step-title { font-weight: 600; font-size: 14px; color: var(--forest); margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }
.step-checklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.step-checklist li { font-size: 13px; color: var(--muted); line-height: 1.5; display: flex; align-items: flex-start; gap: 8px; }
.step-checklist .tick { color: #1FA34C; font-weight: 700; flex-shrink: 0; }
.how-note { margin-top: 24px; padding: 18px 24px; background: var(--cream-dark); border-left: 3px solid var(--gold); border-radius: 0 4px 4px 0; font-size: 13px; color: var(--charcoal); line-height: 1.65; display: flex; align-items: flex-start; gap: 12px; }
.how-note .note-icon { font-size: 17px; flex-shrink: 0; margin-top: 1px; }
.how-note strong { color: var(--forest); }

/* ── SECTION LABELS ──────────────────────────────────────────────────────── */
.section-eyebrow { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.section-h2 { font-family: 'DM Serif Display', serif; font-size: clamp(30px,3.5vw,44px); color: var(--forest); line-height: 1.15; }

/* ── CATALOGUE (HOMEPAGE SECTION) ────────────────────────────────────────── */
.catalogue-section { padding: 88px 64px; background: #fff; border-top: 1px solid var(--rule); }
.cat-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 36px; }
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-pill { padding: 6px 16px; border: 1.5px solid var(--rule); border-radius: 100px; font-size: 12px; font-weight: 500; color: var(--muted); cursor: pointer; background: none; transition: all 0.15s; }
.filter-pill.active, .filter-pill:hover { background: var(--forest); color: var(--offwhite); border-color: var(--forest); }

/* ── PRODUCT GRID ────────────────────────────────────────────────────────── */
.product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.product-grid.cols-3 { grid-template-columns: repeat(3,1fr); }
.product-card { background: #fff; position: relative; display: flex; flex-direction: column; }

/* Card image */
.card-img { width: 100%; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 52px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: contain; padding: 14px; }
.ci-a { background: #FFF7EE; }
.ci-b { background: #EEF3FF; }
.ci-c { background: #EEFAEE; }
.ci-d { background: #FFF0EE; }
.ci-e { background: #F5EEFF; }
.ci-f { background: #FFFAEE; }
.ci-g { background: #FFF0FA; }
.ci-h { background: #EEFAFF; }

/* Card body */
.card-body { padding: 16px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.card-cat { font-family: 'Space Mono', monospace; font-size: 9px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); }
.card-cat-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 5px; }
.card-name { font-weight: 600; font-size: 13px; color: var(--charcoal); line-height: 1.4; margin-bottom: 4px; }
.card-name a { color: inherit; }
.card-name a:hover { color: var(--orange); }
.card-sku { font-family: 'Space Mono', monospace; font-size: 9px; color: var(--muted); letter-spacing: 0.06em; }

/* Price stack on cards */
.price-add-stack { display: flex; flex-direction: column; gap: 7px; margin-top: auto; padding-top: 12px; }
.btn-price { width: 100%; background: var(--cream-dark); color: var(--charcoal); border: 1px solid var(--rule); border-radius: 4px; padding: 7px 0; font-size: 10.5px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 7px; transition: background 0.15s; }
.btn-price:hover { background: #E6E1D5; }
.btn-price .q-icon { width: 15px; height: 15px; border-radius: 50%; background: var(--muted); color: #fff; font-size: 9px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.btn-add { width: 100%; background: #FFD500; color: #1A1A1A; border: none; border-radius: 6px; padding: 9px 0; font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 7px; box-shadow: 0 1px 0 rgba(0,0,0,0.08), 0 2px 6px rgba(255,213,0,0.3); transition: background 0.15s, transform 0.1s; }
.btn-add:hover { background: #F0C700; transform: translateY(-1px); }
.btn-add:active { transform: translateY(0); }
.btn-add.added { background: #1A5C2A; color: #fff; }

/* Price unlocked (logged-in card view) */
.price-unlocked { margin-top: auto; padding-top: 10px; border-top: 1px solid var(--rule); }
.fob-line { display: flex; align-items: baseline; gap: 5px; margin-bottom: 7px; }
.fob-tag { font-family: 'Space Mono', monospace; font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); white-space: nowrap; flex-shrink: 0; }
.fob-amt { font-family: 'DM Serif Display', serif; font-size: 17px; color: var(--forest); line-height: 1; }
.fob-unit { font-size: 9px; color: var(--muted); }

/* ── REGISTER CTA ────────────────────────────────────────────────────────── */
.register-cta { background: var(--forest); padding: 80px 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.cta-left h2 { font-family: 'DM Serif Display', serif; font-size: clamp(26px,3vw,40px); color: var(--offwhite); line-height: 1.2; margin-bottom: 16px; }
.cta-left p { color: rgba(240,235,224,0.55); font-size: 14px; line-height: 1.75; margin-bottom: 28px; }
.perks-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.perks-list li { display: flex; gap: 12px; font-size: 13px; color: rgba(240,235,224,0.6); align-items: flex-start; }
.perk-dot { color: var(--orange); font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.cta-form { background: rgba(255,255,255,0.05); border: 1px solid rgba(184,134,11,0.2); border-radius: 6px; padding: 36px; }

/* ── FORMS ───────────────────────────────────────────────────────────────── */
.form-row { margin-bottom: 16px; }
.form-label { display: block; font-family: 'Space Mono', monospace; font-size: 9px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(240,235,224,0.4); margin-bottom: 7px; }
.form-label.dark { color: var(--muted); }
.form-input { width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 3px; padding: 10px 14px; color: var(--offwhite); font-size: 14px; font-family: 'Inter', sans-serif; outline: none; transition: border-color 0.2s; }
.form-input:focus { border-color: var(--orange); }
.form-input::placeholder { color: rgba(240,235,224,0.2); }
.form-input.light { background: #fff; border: 1.5px solid var(--rule); color: var(--charcoal); }
.form-input.light::placeholder { color: rgba(26,26,26,0.3); }
.form-input.light:focus { border-color: var(--orange); }
.form-submit { width: 100%; background: var(--orange); color: #fff; border: none; padding: 14px; border-radius: 3px; font-size: 14px; font-weight: 700; letter-spacing: 0.04em; cursor: pointer; margin-top: 8px; transition: background 0.2s; }
.form-submit:hover { background: var(--orange-hover); }
.form-note { text-align: center; font-size: 11px; color: rgba(240,235,224,0.25); margin-top: 10px; }
.form-note.dark { color: var(--muted); }

/* ── CATALOGUE PAGE ──────────────────────────────────────────────────────── */
.cat-page-hero { background: var(--forest); padding: 56px 64px 48px; border-bottom: 1px solid var(--rule-dark); }
.cat-page-hero h1 { font-family: 'DM Serif Display', serif; font-size: 50px; color: var(--offwhite); line-height: 1.1; margin-bottom: 12px; }
.cat-page-hero p { color: rgba(240,235,224,0.5); font-size: 14px; max-width: 460px; line-height: 1.7; }

.catalogue-layout { display: grid; grid-template-columns: 232px 1fr; background: #fff; min-height: 70vh; }
.sidebar { border-right: 1px solid var(--rule); padding: 36px 0 36px 64px; background: var(--cream); }
.sidebar-label { font-family: 'Space Mono', monospace; font-size: 9px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.sidebar-cats { list-style: none; }
.sidebar-cats li { padding: 9px 0 9px 0; border-bottom: 1px solid var(--rule); display: flex; justify-content: space-between; align-items: center; padding-right: 24px; }
.sidebar-cats li:last-child { border-bottom: none; }
.sidebar-cats a { font-size: 13px; color: var(--charcoal); font-weight: 500; transition: color 0.15s; }
.sidebar-cats li:hover a { color: var(--orange); }
.sidebar-cats li.active a { color: var(--forest); font-weight: 700; }
.sidebar-cats li.active { border-left: 2px solid var(--orange); padding-left: 10px; margin-left: -2px; }
.cat-count { font-family: 'Space Mono', monospace; font-size: 10px; color: var(--muted); }

.main-area { padding: 36px 40px 36px 36px; }
.search-row { display: flex; gap: 10px; margin-bottom: 28px; }
.search-input { flex: 1; border: 1.5px solid var(--rule); border-radius: 3px; padding: 10px 14px; font-size: 13px; font-family: 'Inter', sans-serif; color: var(--charcoal); outline: none; background: #fff; transition: border-color 0.15s; }
.search-input:focus { border-color: var(--orange); }
.sort-select { border: 1.5px solid var(--rule); border-radius: 3px; padding: 10px 14px; font-size: 13px; font-family: 'Inter', sans-serif; color: var(--charcoal); background: #fff; outline: none; }
.no-results { text-align: center; color: var(--muted); font-size: 13px; padding: 48px 0; grid-column: 1/-1; }

/* ── BREADCRUMB ──────────────────────────────────────────────────────────── */
.breadcrumb-bar { background: var(--cream); padding: 14px 64px; border-bottom: 1px solid var(--rule); font-size: 12px; color: var(--muted); }
.breadcrumb-bar a { color: var(--sienna); font-weight: 500; }
.breadcrumb-bar a:hover { color: var(--orange); }

/* ── PRODUCT PAGE ────────────────────────────────────────────────────────── */
.product-page-layout { display: grid; grid-template-columns: 1fr 1fr; background: #fff; }
.product-gallery { background: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 130px; border-right: 1px solid var(--rule); position: relative; padding: 32px; min-height: 560px; }
.product-gallery img { max-width: 100%; max-height: 520px; object-fit: contain; }
.gallery-badge { position: absolute; top: 24px; right: 24px; background: var(--forest); color: var(--offwhite); font-family: 'Space Mono', monospace; font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; }

.product-info { padding: 56px 52px; }
.product-brand { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.product-name { font-family: 'DM Serif Display', serif; font-size: 36px; color: var(--forest); line-height: 1.15; margin-bottom: 8px; }
.product-sku { font-family: 'Space Mono', monospace; font-size: 10px; color: var(--muted); letter-spacing: 0.08em; margin-bottom: 22px; }
.product-badges { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 28px; }
.badge { padding: 4px 10px; border-radius: 3px; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.badge-stock { background: #E6F4EC; color: #1A5C2A; border: 1px solid #B8DFC4; }
.product-desc { font-size: 14px; color: var(--muted); line-height: 1.78; padding: 22px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); margin-bottom: 28px; }
.product-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 32px; }
.spec-label { font-family: 'Space Mono', monospace; font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.spec-val { font-size: 14px; font-weight: 600; color: var(--charcoal); }

/* Price gate (guests) */
.price-gate-box { background: var(--cream); border: 1px solid var(--rule); border-left: 3px solid var(--gold); border-radius: 3px; padding: 20px 22px; display: flex; align-items: center; gap: 18px; margin-bottom: 20px; }
.gate-icon { width: 42px; height: 42px; background: rgba(184,134,11,0.1); border-radius: 3px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.gate-text h4 { font-size: 13px; font-weight: 600; color: var(--forest); margin-bottom: 3px; }
.gate-text p { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* Price panel (logged in) */
.pp-price-panel { background: var(--cream); border: 1px solid var(--rule); border-left: 3px solid var(--forest); border-radius: 3px; padding: 22px 24px; margin-bottom: 20px; }
.pp-fob-label { font-family: 'Space Mono', monospace; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.pp-fob-price { font-family: 'DM Serif Display', serif; font-size: 36px; color: var(--forest); line-height: 1; margin-bottom: 2px; }
.pp-fob-sub { font-size: 12px; color: var(--muted); }

/* Steppers */
.qty-steppers { margin-bottom: 22px; }
.stepper-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.stepper-label { font-family: 'Space Mono', monospace; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--forest); width: 90px; flex-shrink: 0; }
.stepper-control { display: flex; align-items: center; flex: 1; border: 1px solid var(--rule); border-radius: 4px; overflow: hidden; }
.stepper-btn { width: 42px; height: 42px; background: var(--cream-dark); border: none; font-size: 17px; font-weight: 700; color: var(--charcoal); cursor: pointer; flex-shrink: 0; transition: background 0.15s; }
.stepper-btn:hover { background: #E6E1D5; }
.stepper-val { flex: 1; text-align: center; font-size: 15px; font-weight: 600; color: var(--charcoal); font-family: 'Space Mono', monospace; }
.stepper-hint { font-size: 11px; color: var(--muted); margin-top: -6px; margin-bottom: 14px; }

/* Product action buttons */
.product-actions { display: flex; flex-direction: column; gap: 10px; }
.btn-add-lg { width: 100%; background: #FFD500; color: #1A1A1A; border: none; border-radius: 6px; padding: 14px 0; font-size: 14px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; box-shadow: 0 1px 0 rgba(0,0,0,0.08), 0 2px 6px rgba(255,213,0,0.35); transition: background 0.15s, transform 0.1s; }
.btn-add-lg:hover { background: #F0C700; transform: translateY(-1px); }
.btn-add-lg.added { background: #1A5C2A; color: #fff; }
.btn-enquire { width: 100%; padding: 13px 20px; background: none; border: 1.5px solid var(--rule); border-radius: 3px; font-size: 13px; font-weight: 600; color: var(--charcoal); cursor: pointer; transition: border-color 0.2s, color 0.2s; }
.btn-enquire:hover { border-color: var(--orange); color: var(--orange); }
.btn-price-lg { width: 100%; background: var(--cream-dark); color: var(--charcoal); border: 1px solid var(--rule); border-radius: 4px; padding: 13px 0; font-size: 13px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: background 0.15s; }
.btn-price-lg:hover { background: #E6E1D5; }
.btn-price-lg .q-icon { width: 18px; height: 18px; border-radius: 50%; background: var(--muted); color: #fff; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ── MODALS ──────────────────────────────────────────────────────────────── */
.modal-overlay { position: fixed; inset: 0; background: rgba(20,30,20,0.55); display: none; align-items: center; justify-content: center; z-index: 1000; padding: 24px; }
.modal-overlay.open { display: flex; }
.modal-box { background: var(--cream); border-radius: 8px; width: 100%; max-width: 420px; max-height: 88vh; overflow-y: auto; padding: 32px; position: relative; box-shadow: 0 24px 60px rgba(0,0,0,0.3); }
.modal-close { position: absolute; top: 16px; right: 18px; background: none; border: none; font-size: 20px; color: var(--muted); cursor: pointer; line-height: 1; }
.modal-close:hover { color: var(--charcoal); }
.modal-eyebrow { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.modal-title { font-family: 'DM Serif Display', serif; font-size: 24px; color: var(--forest); margin-bottom: 18px; line-height: 1.25; }
.modal-box .form-row { margin-bottom: 14px; }
.modal-box .form-label { display: block; font-family: 'Space Mono', monospace; font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.modal-box .form-input { width: 100%; background: #fff; border: 1px solid var(--rule); border-radius: 3px; padding: 11px 13px; color: var(--charcoal); font-size: 14px; font-family: 'Inter', sans-serif; outline: none; transition: border-color 0.2s; }
.modal-box .form-input:focus { border-color: var(--orange); }
.modal-submit { width: 100%; background: var(--orange); color: #fff; border: none; border-radius: 4px; padding: 13px 0; font-size: 14px; font-weight: 700; cursor: pointer; margin-top: 6px; transition: background 0.15s; }
.modal-submit:hover { background: var(--orange-hover); }
.modal-note { font-size: 11.5px; color: var(--muted); margin-top: 12px; line-height: 1.5; text-align: center; }
.modal-note a { color: var(--orange); }
.login-error { color: #c0392b; font-size: 12px; margin-top: -8px; margin-bottom: 8px; display: none; }

/* ── CART DRAWER ─────────────────────────────────────────────────────────── */
.cart-drawer-overlay { position: fixed; inset: 0; background: rgba(20,30,20,0.45); z-index: 999; display: none; }
.cart-drawer-overlay.open { display: block; }
.cart-drawer { position: fixed; top: 0; right: -420px; width: 100%; max-width: 420px; height: 100%; background: var(--cream); z-index: 1000; display: flex; flex-direction: column; transition: right 0.25s ease; box-shadow: -10px 0 40px rgba(0,0,0,0.2); }
.cart-drawer.open { right: 0; }
.cart-drawer-head { padding: 24px 26px 18px; border-bottom: 1px solid var(--rule); display: flex; align-items: center; justify-content: space-between; }
.cart-drawer-head h3 { font-family: 'DM Serif Display', serif; font-size: 21px; color: var(--forest); }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 18px 26px; }
.cart-empty { text-align: center; color: var(--muted); font-size: 13px; padding: 60px 20px; line-height: 1.7; }
.cart-line { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--rule); }
.cart-line-img { width: 52px; height: 52px; border-radius: 4px; background: var(--cream-dark); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.cart-line-info { flex: 1; min-width: 0; }
.cart-line-name { font-size: 13px; font-weight: 600; color: var(--charcoal); line-height: 1.35; margin-bottom: 3px; }
.cart-line-meta { font-family: 'Space Mono', monospace; font-size: 10.5px; color: var(--muted); }
.cart-line-remove { background: none; border: none; color: var(--muted); font-size: 12px; cursor: pointer; text-decoration: underline; padding: 0; margin-top: 4px; }
.cart-line-remove:hover { color: var(--orange); }
.cart-drawer-foot { padding: 20px 26px 26px; border-top: 1px solid var(--rule); }
.cart-total-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.cart-total-row strong { color: var(--forest); font-size: 14px; }
.btn-checkout { width: 100%; background: var(--orange); color: #fff; border: none; border-radius: 4px; padding: 14px 0; font-size: 14px; font-weight: 700; letter-spacing: 0.02em; cursor: pointer; transition: background 0.15s; }
.btn-checkout:hover { background: var(--orange-hover); }
.btn-checkout:disabled { background: var(--rule); color: var(--muted); cursor: not-allowed; }
.cart-price-notice { background: rgba(0,0,0,0.04); border-left: 2px solid var(--orange); border-radius: 2px; padding: 9px 12px; font-size: 11px; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.price-notice-bar { background: rgba(0,0,0,0.03); border-left: 3px solid var(--orange); border-radius: 2px; padding: 10px 14px; font-size: 11.5px; color: var(--muted); line-height: 1.6; margin-bottom: 20px; }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
footer { background: #0F2214; padding: 56px 64px 32px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(240,235,224,0.08); }
.footer-brand { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--offwhite); margin-bottom: 14px; }
.footer-brand span { color: var(--orange); }
.footer-brand img { height: 56px; width: auto; display: block; }
.footer-desc { font-size: 13px; color: rgba(240,235,224,0.35); line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-family: 'Space Mono', monospace; font-size: 9px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(240,235,224,0.3); margin-bottom: 18px; }
.footer-col a { display: block; font-size: 13px; color: rgba(240,235,224,0.5); margin-bottom: 9px; transition: color 0.2s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 11px; color: rgba(240,235,224,0.2); font-family: 'Space Mono', monospace; letter-spacing: 0.04em; }

/* ── REGISTER PAGE ───────────────────────────────────────────────────────── */
.register-page { background: var(--forest); min-height: calc(100vh - 56px); padding: 80px 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.register-left h1 { font-family: 'DM Serif Display', serif; font-size: clamp(32px,4vw,52px); color: var(--offwhite); line-height: 1.1; margin-bottom: 20px; }
.register-left p { color: rgba(240,235,224,0.55); font-size: 14px; line-height: 1.8; margin-bottom: 32px; max-width: 380px; }
.mobile-apply-btn { display: none; }
.register-form { background: rgba(255,255,255,0.05); border: 1px solid rgba(184,134,11,0.2); border-radius: 6px; padding: 40px; }
.register-form h2 { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--offwhite); margin-bottom: 28px; }
.register-success { display: none; text-align: center; padding: 40px 20px; }
.register-success .success-icon { font-size: 48px; margin-bottom: 16px; }
.register-success h3 { font-family: 'DM Serif Display', serif; font-size: 26px; color: var(--offwhite); margin-bottom: 12px; }
.register-success p { color: rgba(240,235,224,0.55); font-size: 14px; line-height: 1.7; }

/* ── UTILITIES ───────────────────────────────────────────────────────────── */
.hidden { display: none !important; }

/* ── NAV HAMBURGER (hidden on desktop) ───────────────────────────────────── */
.nav-hamburger { display: none; background: none; border: none; color: var(--offwhite); font-size: 24px; cursor: pointer; padding: 4px 6px; line-height: 1; }

/* ── MOBILE ──────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {

  /* NAV */
  .nav { padding: 0 20px; position: relative; }
  .nav-hamburger { display: flex; align-items: center; justify-content: center; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: fixed; top: 56px; left: 0; right: 0;
    background: var(--forest); border-bottom: 2px solid var(--rule-dark);
    padding: 8px 20px 20px; z-index: 99;
  }
  .nav-links.nav-open { display: flex; }
  .nav-links li { padding: 13px 0; border-bottom: 1px solid var(--rule-dark); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { font-size: 15px; letter-spacing: 0.03em; }
  .nav-cta { display: inline-block; margin-top: 4px; }
  .nav-user-area { gap: 8px; }

  /* HERO — reordered on mobile so the product cards sit above the stats block */
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 24px 24px 0; }
  .hero-left { display: contents; }
  .hero-eyebrow { order: 1; flex-direction: column; align-items: flex-start; gap: 2px; margin-bottom: 18px; }
  .hero-eyebrow .eyebrow-sep { display: none; }
  .hero-h1 { order: 2; font-size: clamp(16px,6.3vw,27px); }
  .hero-sub { order: 3; font-size: 11px; line-height: 1.8; margin-bottom: 32px; }
  .hero-actions { order: 4; flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-right { order: 5; }
  .hero-stats { order: 6; margin-top: 4px; margin-bottom: 36px; }
  .stat-row-primary { gap: 24px; justify-content: center; }
  .stat-row-primary > div:nth-child(2) { display: none; }
  .stat-row-primary > div:first-child { text-align: center; }

  /* Diaspora stats: one horizontal row, smaller text */
  .stat-diaspora-row { flex-direction: row; padding: 10px 0; }
  .stat-diaspora-item { flex: 1; padding: 0 6px 0 0; min-width: 0; }
  .stat-diaspora-item:not(:first-child) { padding-left: 6px; border-left: 1px solid var(--rule-dark); }
  .stat-val-sm { font-size: 21px; }
  .stat-label { font-size: 9px; max-width: none; line-height: 1.3; letter-spacing: 0.07em; }

  /* MOBILE HERO CARDS — 3 cards, equal size, 0° angle, even spacing */
  .hero-right {
    display: flex; flex-direction: row; align-items: stretch;
    justify-content: center; gap: 10px;
    padding: 16px 0 6px; height: auto;
  }
  .hero-right-bg { pointer-events: none; }
  .pcf { position: static; display: flex; flex-direction: column; box-shadow: 0 8px 20px rgba(0,0,0,0.2); z-index: 1; }
  .pcf-body { flex: 1; padding: 7px 10px 9px; }
  .pcf-1 { flex: 1; width: auto; transform: none; }
  .pcf-1:hover { transform: scale(1.03); }
  .pcf-2 { flex: 1; width: auto; transform: none; }
  .pcf-2:hover { transform: scale(1.03); }
  .pcf-3 { flex: 1; width: auto; transform: none; }
  .pcf-3:hover { transform: scale(1.03); }
  .pcf-4 { display: none; }
  .pcf-name { font-size: 10px; }
  .pcf-cat  { font-size: 9px; }

  /* TRUST BAR */
  .trust-bar { flex-direction: column; padding: 28px 24px; gap: 20px; align-items: flex-start; }
  .trust-divider { display: none; }

  /* TRADE WITH US (WHY / WHO) */
  .twu { padding: 32px 24px; }
  .twu-grid { grid-template-columns: 1fr; }
  .twu-col { padding: 20px 18px; }

  /* HOW IT WORKS */
  .how { padding: 52px 24px; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .how-step { padding: 22px 16px 26px; }
  .step-num { font-size: 38px; }

  /* HOMEPAGE CATALOGUE SECTION */
  .catalogue-section { padding: 52px 24px; }
  .cat-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .product-grid.cols-3 { grid-template-columns: repeat(2,1fr); }

  /* SHIPPING SECTION */
  .shipping-section { padding: 48px 24px !important; }
  .shipping-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .shipping-grid p { text-align: justify; font-size: 14px !important; max-width: 100%; }

  /* REGISTER CTA */
  .register-cta { grid-template-columns: 1fr; gap: 36px; padding: 52px 24px; }
  .cta-form { padding: 24px 20px; }

  /* FOOTER */
  footer { padding: 40px 24px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px 28px; padding-bottom: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* REGISTER PAGE */
  .register-page { grid-template-columns: 1fr; gap: 36px; padding: 40px 24px 60px; min-height: auto; }
  .mobile-apply-btn { display: inline-block; margin: 4px 0 20px; }
  .register-form { padding: 26px 20px; }

  /* CATALOGUE PAGE */
  .cat-page-hero { padding: 36px 24px 28px; }
  .cat-page-hero h1 { font-size: 30px; }
  .catalogue-layout { grid-template-columns: 1fr; }
  .sidebar { border-right: none; border-bottom: 1px solid var(--rule); padding: 20px 24px; }
  .main-area { padding: 20px 24px 40px; }
  .search-row { flex-wrap: wrap; }
  .search-input { min-width: 0; }
  .breadcrumb-bar { padding: 12px 24px; }

  /* PRODUCT PAGE */
  .product-page-layout { grid-template-columns: 1fr; }
  .product-gallery { min-height: 260px; border-right: none; border-bottom: 1px solid var(--rule); padding: 24px; }
  .product-gallery img { max-height: 220px; }
  .product-info { padding: 28px 24px 40px; }
  .product-name { font-size: 28px; }
  .product-specs { grid-template-columns: 1fr 1fr; gap: 10px; }

  /* CART DRAWER */
  .cart-drawer { max-width: 100%; }

  /* MODALS */
  .modal-box { padding: 24px 20px; max-height: 92vh; }
  .modal-overlay { padding: 16px; }
}
