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

/* ==========================================================
   TOKENS — ZEIDA brand system (carried over from the source app)
   ========================================================== */
:root {
  --bg: #FFFFFF;
  --alt-bg: #F7F5F0;
  --heading: #1A3D2B;
  --body: #3B4F43;
  --caption: #7A8C82;
  --blue: #1A6FA8;
  --gold: #C4A66B;
  --cream: #FAF8F5;

  --font-serif: "Playfair Display", ui-serif, Georgia, serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;

  --max-w: 1200px;
  --nav-h: 84px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--body);
}
body {
  margin: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: rgba(26,61,43,.12); color: var(--heading); }

h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--heading); margin: 0; font-weight: 500; }
p { margin: 0; }

.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.section { padding: 96px 0; }
.section--alt { background: var(--alt-bg); }
@media (max-width: 720px) {
  .section { padding: 64px 0; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 3px;
  border: 1px solid transparent;
  transition: all .3s cubic-bezier(.16,1,.3,1);
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--heading); }
.btn-primary:hover { background: #b3925a; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(196,166,107,.35); }
.btn-dark { background: var(--heading); color: #fff; }
.btn-dark:hover { background: #12301f; transform: translateY(-2px); }
.btn-outline { 
  background: var(--heading); 
  border-color: rgba(255,255,255,.5); 
  color: #fff; 
}
.btn-outline:hover { 
  border-color: #fff; 
  background: #1a3d2b94; 
  transform: translateY(-2px);
}
.btn-outline-dark { background: transparent; border-color: rgba(26,61,43,.25); color: var(--heading); }
.btn-outline-dark:hover { border-color: var(--heading); background: rgba(26,61,43,.05); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .45; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ==========================================================
   NAVBAR
   ========================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 200;
  padding: 22px 0;
  transition: all .4s cubic-bezier(.16,1,.3,1);
}
.navbar.is-solid {
  padding: 14px 0;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(26,61,43,.08);
}
.navbar .wrap { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 52px; width: auto; transition: height .3s; }
.navbar.is-solid .nav-logo img { height: 44px; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-link {
  font-size: 12px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  padding: 4px 0;
  transition: color .2s;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.navbar.is-solid .nav-link, .navbar.on-light .nav-link { color: var(--heading); }
.nav-link:hover { color: var(--gold); }

.nav-order-btn {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 11px 22px; border-radius: 3px;
  background: var(--gold); color: var(--heading);
  transition: all .25s;
}
.nav-order-btn:hover { background: #fff; transform: translateY(-1px); }

.lang-toggle {
  font-family: var(--font-mono);
  font-size: 10.5px; font-weight: 600; letter-spacing: .1em;
  padding: 8px 15px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(0,0,0,.18);
  color: #fff;
  transition: all .25s;
}
.navbar.is-solid .lang-toggle, .navbar.on-light .lang-toggle {
  border-color: rgba(26,61,43,.18);
  background: var(--alt-bg);
  color: var(--heading);
}
.lang-toggle:hover { border-color: var(--gold); }
.mobile-menu .lang-toggle {
  align-self: flex-start;
  margin-top: 18px;
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.06);
  color: #fff;
}

.nav-toggle {
  display: none;
  background: none; border: none; padding: 8px;
  color: #fff;
}
.navbar.is-solid .nav-toggle, .navbar.on-light .nav-toggle { color: var(--heading); }
.nav-toggle .bars { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; }
.nav-toggle .bars span { display: block; height: 2px; background: currentColor; transition: all .3s; }
.nav-toggle .bars span:nth-child(1) { width: 24px; }
.nav-toggle .bars span:nth-child(2) { width: 16px; }
.nav-toggle.is-open .bars span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); width: 22px; }
.nav-toggle.is-open .bars span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); width: 22px; }

.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  height: 100vh; width: min(82vw, 340px);
  background: var(--heading);
  z-index: 199;
  padding: 110px 32px 40px;
  display: flex; flex-direction: column; gap: 6px;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.16,1,.3,1);
  box-shadow: -20px 0 60px rgba(0,0,0,.25);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu a.nav-link { color: rgba(255,255,255,.88); padding: 14px 0; font-size: 13px; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-menu a.nav-link::after { display: none; }
.mobile-menu .nav-order-btn { margin-top: 20px; text-align: center; }
.nav-scrim {
  position: fixed; inset: 0; background: rgba(11,20,15,.45);
  z-index: 198; opacity: 0; pointer-events: none; transition: opacity .4s;
}
.nav-scrim.is-open { opacity: 1; pointer-events: auto; }
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ==========================================================
   HOME · HERO (split layout)
   ========================================================== */
.hero-split {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 42%) 1fr;
  min-height: 100svh;
  background: var(--heading);
  overflow: hidden;
}

/* -- text panel -- */
.hero-split-text {
  position: relative;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 48px) 48px 64px clamp(24px, 6vw, 88px);
  z-index: 2;
  overflow: hidden;
}
.hero-split-text-inner { position: relative; z-index: 2; max-width: 440px; }
.hero-split-glow {
  position: absolute; z-index: 0;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,166,107,.22), transparent 70%);
  top: -160px; left: -200px;
  pointer-events: none;
}
.hero-split-dots {
  position: absolute; inset: 0; z-index: 1;
  background-image: radial-gradient(rgba(196,166,107,.28) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 30% 40%, black 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 90% 70% at 30% 40%, black 0%, transparent 75%);
  pointer-events: none;
}
.hero-split-divider {
  position: absolute; top: 14%; bottom: 14%; right: 0; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(196,166,107,.55), transparent);
  transform: scaleY(0); transform-origin: center;
  animation: heroGrowLine 1.1s cubic-bezier(.16,1,.3,1) .55s forwards;
}

.hero-tag {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px; display: block;
}
.hero-name {
  font-family: var(--font-serif);
  color: #fff;
  font-size: clamp(48px, 6.2vw, 84px);
  line-height: .95;
  letter-spacing: -.01em;
  margin-bottom: 20px;
}
.hero-slogan {
  color: rgba(255,255,255,.82);
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 300;
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* -- entrance animation -- */
.hero-anim {
  opacity: 0;
  animation: heroFadeUp .9s cubic-bezier(.16,1,.3,1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroGrowLine {
  to { transform: scaleY(1); }
}

/* -- media panel -- */
.hero-split-media {
  position: relative;
  overflow: hidden;
  background: var(--heading);
}
.hero-split-media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 30%;
  transform: scale(1.08);
  animation: heroKenBurns 22s ease-in-out infinite alternate;
}
.hero-split-media::after {
  content: '';
  position: absolute; inset: 0;
  box-shadow: inset 32px 0 48px -36px rgba(0,0,0,.4);
  pointer-events: none;
}
@keyframes heroKenBurns {
  0%   { transform: scale(1.08) translate(0, 0); }
  100% { transform: scale(1.16) translate(-1.6%, -1%); }
}

@media (max-width: 880px) {
  .hero-split { grid-template-columns: 1fr; grid-template-rows: auto auto; min-height: auto; }
  .hero-split-media { order: 1; width: 100%; }
  .hero-split-media img {
    position: static;
    width: 100%; height: auto;
    object-fit: initial;
    transform: none;
    animation: none;
  }
  .hero-split-text { order: 2; padding: 44px 24px 56px; }
  .hero-split-divider { display: none; }
  .hero-split-glow { width: 360px; height: 360px; top: -120px; left: -140px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-anim { opacity: 1; animation: none; transform: none; }
  .hero-split-divider { transform: scaleY(1); animation: none; }
  .hero-split-media img { animation: none; transform: scale(1); }
}

/* ==========================================================
   ABOUT / STATS / CONTENT SECTIONS (home page)
   ========================================================== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 880px) { .grid-2 { grid-template-columns: 1fr; gap: 40px; } }

.section-heading { font-size: clamp(28px, 3.4vw, 42px); line-height: 1.15; margin: 14px 0 22px; }
.lede { font-size: 16px; line-height: 1.75; color: var(--body); margin-bottom: 18px; }
.about-photo { border-radius: 6px; overflow: hidden; box-shadow: 0 30px 60px -20px rgba(26,61,43,.35); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }

.quote-block {
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 22px;
  margin: 26px 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--heading);
  line-height: 1.6;
}

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
@media (max-width: 720px) { .stat-row { grid-template-columns: 1fr; gap: 20px; } }
.stat-card {
  padding: 26px 22px;
  border: 1px solid rgba(26,61,43,.1);
  border-radius: 6px;
  background: var(--bg);
}
.stat-card .num { font-family: var(--font-serif); font-size: 30px; color: var(--gold); margin-bottom: 6px; }
.stat-card .label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--caption); }

.vm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 56px; }
@media (max-width: 720px) { .vm-row { grid-template-columns: 1fr; } }
.vm-card { background: var(--bg); border-radius: 8px; padding: 34px; border: 1px solid rgba(26,61,43,.08); }
.vm-card h3 { font-size: 20px; margin-bottom: 12px; }
.vm-card p { color: var(--body); line-height: 1.7; font-size: 14.5px; }

/* Product showcase (home) */
.product-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 960px) { .product-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .product-strip { grid-template-columns: 1fr; } }

.showcase-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--heading);
}
.showcase-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.16,1,.3,1); }
.showcase-card:hover img { transform: scale(1.06); }
.showcase-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,20,15,0) 40%, rgba(11,20,15,.85) 100%);
}
.showcase-label {
  position: absolute; left: 20px; right: 20px; bottom: 18px; z-index: 1;
  color: #fff;
}
.showcase-label .cat { font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); display:block; margin-bottom: 4px;}
.showcase-label h4 { color: #fff; font-size: 18px; }

/* Insights (home) */
.insight-list { display: flex; flex-direction: column; }
.insight-row {
  display: grid; grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-top: 1px solid rgba(26,61,43,.1);
}
.insight-row:last-child { border-bottom: 1px solid rgba(26,61,43,.1); }
.insight-row .n { font-family: var(--font-serif); font-size: 26px; color: var(--gold); }
.insight-row h3 { font-size: 19px; margin-bottom: 6px; }
.insight-row .sub { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--caption); margin-bottom: 10px; display:block; }
.insight-row p { color: var(--body); font-size: 14.5px; line-height: 1.7; }

/* Final CTA band */
.cta-band {
  background: var(--heading);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(196,166,107,.15), transparent 55%);
}
.cta-band h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); max-width: 640px; margin: 0 auto 16px; position: relative; }
.cta-band p { color: rgba(255,255,255,.7); max-width: 480px; margin: 0 auto 36px; font-size: 15px; line-height: 1.7; position: relative; }
.cta-band .btn { position: relative; }

/* ==========================================================
   FOOTER
   ========================================================== */
.footer { background: var(--heading); color: rgba(255,255,255,.75); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.1); }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr; gap: 36px; } }
.footer-logo { height: 46px; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .92; }
.footer-bio { font-size: 13.5px; line-height: 1.75; color: rgba(255,255,255,.6); max-width: 320px; }
.footer h4 { color: #fff; font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.footer-link-list { display: flex; flex-direction: column; gap: 12px; }
.footer-link-list a { font-size: 13.5px; color: rgba(255,255,255,.65); transition: color .2s; }
.footer-link-list a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 13.5px; color: rgba(255,255,255,.75); }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 11.5px; letter-spacing: .04em; color: rgba(255,255,255,.45); }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { font-size: 11.5px; letter-spacing: .04em; color: rgba(255,255,255,.55); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ==========================================================
   LEGAL PAGES — Privacy Policy / Terms & Conditions
   ========================================================== */
.legal-content { max-width: 780px; margin: 0 auto; padding: 60px 0 100px; }
.legal-content h2 {
  font-family: var(--font-sans); font-size: 16px; font-weight: 700; color: var(--heading);
  letter-spacing: -.01em; margin: 44px 0 12px; display: flex; align-items: center; gap: 10px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: 15px; line-height: 1.8; color: var(--body); margin-bottom: 14px; }
.legal-content ul { margin: 0 0 14px; padding-left: 20px; }
.legal-content li { font-size: 15px; line-height: 1.8; color: var(--body); margin-bottom: 6px; }
.legal-content .legal-updated { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--caption); margin-bottom: 36px; }
.legal-content .legal-contact-card {
  background: var(--alt-bg); border-radius: 14px; padding: 20px 22px; margin-top: 8px;
  font-family: var(--font-mono); font-size: 13px; line-height: 1.9; color: var(--heading);
}
.legal-content .legal-contact-card strong { display: block; margin-bottom: 4px; font-family: var(--font-sans); }
.footer-social { display: flex; gap: 14px; }
.footer-social a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all .25s; }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--heading); }

/* ==========================================================
   ORDER PAGE
   ========================================================== */
.order-hero, .page-hero {
  background: var(--alt-bg);
  padding: 150px 0 40px;
  border-bottom: 1px solid rgba(26,61,43,.08);
}
.order-hero .eyebrow, .page-hero .eyebrow { margin-bottom: 12px; display:block; }
.order-hero h1, .page-hero h1 { font-size: clamp(30px, 4.2vw, 48px); margin-bottom: 12px; }
.order-hero p, .page-hero p { color: var(--body); max-width: 560px; font-size: 15px; line-height: 1.7; }

/* ==========================================================
   HOME · QUICK INTRO + ADVANTAGES
   ========================================================== */
.intro-band { padding: 96px 0 20px; }
@media (max-width: 720px) { .intro-band { padding: 64px 0 10px; } }
.intro-band .lede { max-width: 720px; font-size: 18px; }
.intro-band .section-heading { max-width: 720px; }

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
@media (max-width: 880px) { .advantages-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .advantages-grid { grid-template-columns: 1fr; } }
.advantage-card {
  background: var(--bg);
  border: 1px solid rgba(26,61,43,.1);
  border-radius: 8px;
  padding: 30px 26px;
}
.advantage-card .adv-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--alt-bg); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.advantage-card h3 { font-size: 18px; margin-bottom: 10px; }
.advantage-card p { color: var(--body); font-size: 14px; line-height: 1.7; }

.learn-more-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--heading);
  margin-top: 22px; padding-bottom: 2px; border-bottom: 1px solid var(--gold);
  transition: gap .25s, color .25s;
}
.learn-more-link:hover { gap: 12px; color: var(--gold); }

.order-toolbar {
  position: sticky; top: var(--nav-h);
  z-index: 40;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(26,61,43,.08);
  padding: 16px 0;
}
.order-toolbar .wrap { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: space-between; }
.toolbar-row { display: flex; align-items: center; gap: 12px; width: 100%; }

.search-box {
  position: relative; flex: 1; min-width: 220px; max-width: 340px;
}
.search-box input {
  width: 100%; padding: 11px 14px 11px 38px; border-radius: 30px;
  border: 1px solid rgba(26,61,43,.15); background: var(--alt-bg);
  font-family: var(--font-sans); font-size: 13.5px; color: var(--heading);
}
.search-box input:focus { outline: none; border-color: var(--blue); background: #fff; }
.search-box svg { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: var(--caption); }

/* Filter dropdown wrapper — inline tabs on desktop, collapsible menu on phone */
.filter-dropdown { position: relative; }
.filter-toggle {
  display: none;
  align-items: center; gap: 8px;
  background: #fff; border: 1px solid rgba(26,61,43,.15); border-radius: 30px;
  padding: 10px 14px; font-family: var(--font-mono); font-size: 11.5px; font-weight: 500;
  color: var(--heading); white-space: nowrap; transition: border-color .2s;
}
.filter-toggle svg:last-child { transition: transform .25s; color: var(--caption); }
.filter-dropdown.is-open .filter-toggle svg:last-child { transform: rotate(180deg); }
.filter-toggle:hover { border-color: var(--heading); }
.filter-active-label { color: var(--gold); max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.category-tabs { display: flex; gap: 8px; flex-wrap: wrap; overflow-x: auto; -ms-overflow-style:none; scrollbar-width:none;}
.category-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: .06em;
  padding: 9px 16px; border-radius: 30px; border: 1px solid rgba(26,61,43,.15);
  color: var(--body); background: #fff; white-space: nowrap; transition: all .2s;
}
.cat-tab.is-active { background: var(--heading); border-color: var(--heading); color: #fff; }
.cat-tab:hover:not(.is-active) { border-color: var(--heading); }

.cart-toggle {
  display: none;
  align-items: center; gap: 8px;
  background: var(--heading); color: #fff;
  padding: 11px 18px; border-radius: 30px;
  font-size: 12px; font-weight: 600;
  flex-shrink: 0;
}
.cart-toggle .badge { background: var(--gold); color: var(--heading); border-radius: 50%; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; font-size: 10.5px; font-weight: 700; }

.order-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  padding: 40px 0 100px;
  align-items: start;
}
@media (max-width: 980px) {
  .order-layout { grid-template-columns: 1fr; }
  .cart-toggle { display: inline-flex; }
}

/* Phone: collapse category tabs into a dropdown, compact cart button */
@media (max-width: 680px) {
  .filter-toggle { display: inline-flex; }
  .category-tabs {
    position: absolute; top: calc(100% + 8px); left: 0; right: auto;
    width: max(220px, 100%);
    flex-direction: column; flex-wrap: nowrap;
    background: #fff; border: 1px solid rgba(26,61,43,.12); border-radius: 14px;
    padding: 8px; box-shadow: 0 20px 40px -12px rgba(26,61,43,.25);
    z-index: 60;
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height .3s ease, opacity .2s ease;
  }
  .filter-dropdown.is-open .category-tabs { max-height: 320px; opacity: 1; overflow-y: auto; }
  .cat-tab { width: 100%; text-align: left; border-radius: 8px; }
  .cart-toggle .cart-toggle-label { display: none; }
  .cart-toggle { padding: 11px 14px; }
  .search-box { min-width: 0; }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}

.qty-hint {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; line-height: 1.5; color: var(--caption);
  margin-bottom: 16px;
}
.qty-hint svg { flex-shrink: 0; opacity: .7; }

.category-heading {
  grid-column: 1 / -1;
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--heading);
  margin: 30px 0 4px;
  padding-top: 20px;
  border-top: 1px solid rgba(26,61,43,.08);
}
.category-heading:first-child { margin-top: 0; padding-top: 0; border-top: none; }

.p-card {
  background: #fff;
  border: 1px solid rgba(26,61,43,.09);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s, transform .3s;
}
.p-card:hover { box-shadow: 0 18px 34px -18px rgba(26,61,43,.28); transform: translateY(-3px); }
.p-card-img { aspect-ratio: 4/3; overflow: hidden; background: var(--alt-bg); position: relative; }
.p-card-img img { width: 100%; height: 100%; object-fit: cover; }
.p-card-unit-badge {
  position: absolute; top: 10px; right: 10px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(4px);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 20px; color: var(--heading);
}
.p-card-body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.p-card-cat { font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.p-card-name { font-family: var(--font-serif); font-size: 16.5px; color: var(--heading); line-height: 1.3; }
.p-card-desc { font-size: 12.5px; line-height: 1.55; color: var(--caption); flex: 1; }
.p-card-stock-badge {
  display: inline-block; align-self: flex-start;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .04em;
  padding: 3px 9px; border-radius: 20px;
  background: rgba(196,166,107,.16); color: #8a6a2f;
}
.p-card-price { font-family: var(--font-mono); font-size: 15px; font-weight: 600; color: var(--heading); margin-top: 4px; }
.p-card-price span { font-size: 10.5px; color: var(--caption); font-weight: 400; text-transform: uppercase; margin-left: 4px; }

.p-card-footer { display: flex; align-items: center; gap: 10px; margin-top: 6px; }
.qty-stepper {
  display: flex; align-items: center; border: 1px solid rgba(26,61,43,.18); border-radius: 6px; overflow: hidden;
}
.qty-stepper button {
  width: 30px; height: 34px; background: var(--alt-bg); border: none; color: var(--heading); font-size: 15px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.qty-stepper button:hover { background: #eee7db; }
.qty-stepper input {
  width: 36px; text-align: center; border: none; font-family: var(--font-mono); font-size: 13px; color: var(--heading);
  -moz-appearance: textfield;
}
.qty-stepper input::-webkit-outer-spin-button, .qty-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.add-btn {
  flex: 1;
  background: var(--heading); color: #fff;
  border: none; border-radius: 6px; padding: 0 12px; height: 34px;
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: background .2s;
}
.add-btn:hover { background: var(--gold); color: var(--heading); }
.add-btn.is-added { background: var(--gold); color: var(--heading); }

.no-results { grid-column: 1/-1; text-align: center; padding: 60px 20px; color: var(--caption); }
.no-results h3 { color: var(--heading); margin-bottom: 8px; font-size: 18px; }

/* Cart panel */
.cart-panel {
  background: #fff;
  border: 1px solid rgba(26,61,43,.1);
  border-radius: 12px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  max-height: calc(100vh - var(--nav-h) - 40px);
  min-height: 480px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 60px -30px rgba(26,61,43,.2);
}
.cart-header { padding: 20px 20px 14px; border-bottom: 1px solid rgba(26,61,43,.08); display: flex; align-items: center; justify-content: space-between; }
.cart-header h3 { font-size: 17px; display: flex; align-items: center; gap: 8px; }
.cart-close { display: none; background: none; border: none; color: var(--heading); padding: 4px; }
.cart-items { overflow-y: auto; padding: 12px 20px; flex: 1; display: flex; flex-direction: column; gap: 14px; min-height: 220px; }
.cart-empty { text-align: center; padding: 30px 10px; color: var(--caption); font-size: 13px; line-height: 1.7; }
.cart-empty svg { color: rgba(26,61,43,.2); margin-bottom: 10px; }
.cart-item { display: grid; grid-template-columns: 46px 1fr auto; gap: 10px; align-items: center; }
.cart-item img { width: 46px; height: 46px; border-radius: 6px; object-fit: cover; }
.cart-item-name { font-size: 12.5px; font-weight: 600; color: var(--heading); line-height: 1.3; margin-bottom: 2px; }
.cart-item-meta { font-family: var(--font-mono); font-size: 10.5px; color: var(--caption); display: flex; align-items: center; gap: 8px; }
.cart-item-remove { background: none; border: none; color: var(--caption); font-size: 11px; text-decoration: underline; padding: 0; }
.cart-item-remove:hover { color: #b0453a; }
.cart-item-price { font-family: var(--font-mono); font-size: 12.5px; font-weight: 600; color: var(--heading); text-align: right; }

.cart-footer { padding: 18px 20px 22px; border-top: 1px solid rgba(26,61,43,.08); }
.delivery-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; font-size: 12.5px; color: var(--body); }
.delivery-row input { accent-color: var(--gold); width: 15px; height: 15px; }
.cart-line { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 6px; color: var(--body); }
.cart-total { display: flex; justify-content: space-between; font-family: var(--font-serif); font-size: 20px; color: var(--heading); margin: 12px 0 18px; }
.cart-hint { font-size: 11px; color: var(--caption); line-height: 1.6; margin-top: 12px; text-align: center; }

@media (max-width: 980px) {
  .cart-panel {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(88vw, 380px);
    border-radius: 0; z-index: 260;
    transform: translateX(100%); transition: transform .4s cubic-bezier(.16,1,.3,1);
    max-height: none;
  }
  .cart-panel.is-open { transform: translateX(0); }
  .cart-close { display: inline-flex; }
}
.cart-scrim {
  position: fixed; inset: 0; background: rgba(11,20,15,.5); z-index: 250;
  opacity: 0; pointer-events: none; transition: opacity .4s;
}
.cart-scrim.is-open { opacity: 1; pointer-events: auto; }

/* Toast */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--heading); color: #fff; padding: 13px 22px; border-radius: 30px;
  font-size: 13px; font-weight: 500; z-index: 300; opacity: 0; pointer-events: none;
  transition: all .35s cubic-bezier(.16,1,.3,1); display: flex; align-items: center; gap: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
}
.toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast svg { color: var(--gold); }

/* Consent banner (Terms & Conditions / Privacy Policy) */
.consent-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 400;
  background: var(--heading); color: #fff;
  box-shadow: 0 -10px 30px rgba(0,0,0,.2);
  animation: consent-rise .4s cubic-bezier(.16,1,.3,1);
}
.consent-banner.is-leaving { animation: consent-fall .3s ease-in forwards; }
@keyframes consent-rise { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes consent-fall { to { transform: translateY(100%); opacity: 0; } }
.consent-banner-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 18px 24px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.consent-banner-text {
  flex: 1 1 420px; font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.88);
}
.consent-banner-text a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.consent-banner-text a:hover { color: #fff; }
.consent-accept-btn { flex: 0 0 auto; padding: 11px 26px; font-size: 13px; }
@media (max-width: 640px) {
  .consent-banner-inner { padding: 16px 20px; }
  .consent-accept-btn { width: 100%; text-align: center; }
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto !important; }
}


.sizeOptions {
  /* display: flex; */
  /* display: none; */
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  margin: auto;
}

.size-slider-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 24px;
  margin-bottom: 12px;
}

.size-slider-value {
  font-size: 10pt;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 8px;
}

.sizeSlider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.15);
  outline: none;
  touch-action: pan-y;
  cursor: pointer;
}

.sizeSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--heading);
  cursor: pointer;
  border: none;
}

.sizeSlider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--heading);
  cursor: pointer;
  border: none;
}

.sizeSlider::-moz-range-track {
  height: 4px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.15);
}

.size-slider-scale {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 8pt;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 8px;
}