/* ==========================================================================
   CannaGlass — retro road-trip theme
   ========================================================================== */
:root {
  /* Palette pulled from the mockup */
  --cream:        #f4e8ce;
  --cream-2:      #ecdcb8;
  --cream-3:      #e3cf9f;
  --paper:        #f7eed8;
  --forest:       #283320;
  --forest-2:     #34431f;
  --forest-3:     #3f5026;
  --olive:        #6b7b3e;
  --olive-2:      #7c8d49;
  --olive-light:  #9aa861;
  --orange:       #cc5a2a;
  --orange-2:     #e07b3c;
  --gold:         #e3a93c;
  --gold-2:       #efc05a;
  --rust:         #a23e2a;
  --rust-2:       #b9492f;
  --ink:          #2a2118;
  --ink-soft:     #4a3f30;
  --cream-line:   #d8c499;

  --shadow-sm: 0 2px 0 rgba(40,33,24,.18);
  --shadow:    0 8px 24px rgba(40,33,24,.18);
  --shadow-lg: 0 18px 48px rgba(40,33,24,.28);

  --radius:    18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --font-display: 'Alfa Slab One', Georgia, serif;
  --font-script:  'Pacifico', cursive;
  --font-marker:  'Caveat', 'Comic Sans MS', cursive;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  --container: 1180px;
  --z-nav: 50;
  --z-overlay: 80;
  --z-modal: 100;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--cream);
  background-image:
    radial-gradient(circle at 12% 18%, rgba(227,169,60,.10), transparent 38%),
    radial-gradient(circle at 88% 8%, rgba(204,90,42,.10), transparent 40%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--rust); text-decoration: none; }
a:hover { color: var(--orange); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */
h1, h2, h3 { line-height: 1.05; margin: 0 0 .5em; }
.display { font-family: var(--font-display); }
.script  { font-family: var(--font-script); font-weight: 400; }
.marker  { font-family: var(--font-marker); font-weight: 700; }

.eyebrow {
  font-family: var(--font-marker);
  font-size: 1.5rem;
  color: var(--orange);
  transform: rotate(-2deg);
  display: inline-block;
}

.section-label {
  font-family: var(--font-marker);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--forest-3);
  line-height: .95;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 700;
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .85rem 1.6rem; border-radius: var(--radius-pill);
  border: 2px solid var(--ink); cursor: pointer;
  transition: transform .15s ease, background-color .2s ease, color .2s ease, box-shadow .2s ease;
  box-shadow: var(--shadow-sm);
  background: var(--cream); color: var(--ink);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 0 rgba(40,33,24,.18); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--orange); color: #fff; border-color: var(--ink); }
.btn-primary:hover { background: var(--orange-2); color: #fff; }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-2); color: var(--ink); }
.btn-olive { background: var(--olive); color: #fff; }
.btn-olive:hover { background: var(--olive-2); color: #fff; }
.btn-outline { background: transparent; color: var(--ink); }
.btn-ghost { background: transparent; border-color: transparent; box-shadow: none; }
.btn-sm { padding: .55rem 1.1rem; font-size: .72rem; }
.btn-block { width: 100%; justify-content: center; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }

/* ---------- Top bar / nav ---------- */
.topbar {
  background: var(--forest);
  color: var(--cream);
  font-size: .8rem;
  text-align: center;
  padding: .5rem 0;
  letter-spacing: .04em;
}
.site-header {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: var(--cream);
  border-bottom: 3px solid var(--ink);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .7rem 0;
}
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand .logo {
  font-family: var(--font-script); font-size: 2.1rem; color: var(--forest-3);
  text-shadow: 1px 1px 0 var(--gold);
}
.brand .logo .glass { color: var(--orange); }
.brand .sub { font-family: var(--font-marker); font-size: .95rem; color: var(--orange); }

.nav-links { display: flex; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-weight: 700; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink); padding: .4rem 0; position: relative;
}
.nav-links a.active, .nav-links a:hover { color: var(--orange); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 3px;
  background: var(--orange); border-radius: 3px;
}
.nav-actions { display: flex; align-items: center; gap: .6rem; }
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  border: 2px solid var(--ink); background: var(--cream); color: var(--ink);
  cursor: pointer; transition: background .2s, color .2s, transform .15s;
}
.icon-btn:hover { background: var(--gold); transform: translateY(-2px); }
.cart-btn { position: relative; }
.cart-badge {
  position: absolute; top: -6px; right: -6px;
  background: var(--orange); color: #fff; font-size: .68rem; font-weight: 700;
  min-width: 20px; height: 20px; border-radius: 50%;
  display: grid; place-items: center; border: 2px solid var(--cream);
}
.roadmap-btn { background: var(--forest-3); color: var(--cream); border-color: var(--ink); }
.roadmap-btn:hover { background: var(--olive); color: #fff; }

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  border-bottom: 3px solid var(--ink);
  background: linear-gradient(180deg, #f0b15a 0%, #e08a3e 38%, #cc6a35 70%, #9c4a2c 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 2rem; align-items: center;
  min-height: 560px; padding: 3rem 0;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 1;
  background-size: cover; background-position: center;
  opacity: .9;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(204,106,53,.55), rgba(156,74,44,.15) 60%, transparent);
}
.hero-content { position: relative; z-index: 3; color: #fff2d8; max-width: 560px; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: #fff4dd;
  text-shadow: 4px 4px 0 rgba(60,30,15,.45);
  margin-bottom: 1rem;
}
.hero h1 span { display: block; }
.hero p.lede {
  font-size: 1.05rem; color: #fff0d6; max-width: 440px;
  text-shadow: 0 1px 6px rgba(60,30,15,.5);
}
.hero-cta { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.6rem; }
.hero-badge {
  position: absolute; right: 6%; top: 28%; z-index: 4;
  width: 150px; height: 150px; border-radius: 50%;
  background: var(--forest); color: var(--gold-2);
  border: 3px dashed var(--gold);
  display: grid; place-content: center; text-align: center;
  font-family: var(--font-marker); font-size: 1.35rem; font-weight: 700; line-height: 1.05;
  transform: rotate(-12deg); padding: 1rem;
  box-shadow: var(--shadow);
}

/* ---------- Feature strip (A–E cards) ---------- */
.feature-strip { background: var(--forest); border-bottom: 3px solid var(--ink); padding: 1.4rem 0; }
.feature-row {
  display: grid; grid-template-columns: repeat(5, 1fr) auto; gap: 1rem; align-items: stretch;
}
.feat-card {
  background: var(--cream); border: 2px solid var(--ink); border-radius: var(--radius);
  padding: .8rem; text-align: center; position: relative;
  box-shadow: var(--shadow-sm); transition: transform .15s ease;
}
.feat-card:hover { transform: translateY(-4px); }
.feat-card .tag {
  position: absolute; top: -10px; left: -10px; width: 26px; height: 26px;
  background: var(--gold); border: 2px solid var(--ink); border-radius: 50%;
  font-weight: 700; font-size: .8rem; display: grid; place-items: center;
}
.feat-card .thumb { height: 84px; border-radius: 12px; overflow: hidden; margin-bottom: .5rem; }
.feat-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.feat-card h4 { font-family: var(--font-marker); font-size: 1.15rem; color: var(--rust); margin: .2rem 0; }
.feat-card p { font-size: .72rem; color: var(--ink-soft); margin: 0; }
.feat-louder {
  background: var(--rust); color: var(--gold-2); border: 2px solid var(--ink); border-radius: var(--radius);
  display: grid; place-content: center; text-align: center; padding: 1rem;
  font-family: var(--font-marker); font-size: 1.3rem; line-height: 1.05; min-width: 110px;
}

/* ---------- Section scaffolding ---------- */
.section { padding: 4.5rem 0; }
.section-head { text-align: center; margin-bottom: 2.5rem; }
.section-head .eyebrow { margin-bottom: .3rem; }

/* ---------- Pillars (What We Bring to the Table) ---------- */
.pillars-wrap {
  display: grid; grid-template-columns: minmax(220px, .8fr) repeat(4, 1fr); gap: 1.2rem; align-items: stretch;
}
.pillars-intro h2 { font-family: var(--font-marker); font-size: clamp(2rem,3.4vw,2.8rem); color: var(--forest-3); }
.pillars-intro .leaf { font-size: 2.4rem; }
.pillar {
  border: 2px solid var(--ink); border-radius: var(--radius-lg); padding: 1.4rem 1.2rem;
  color: #fff; display: flex; flex-direction: column; min-height: 260px;
  box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .2s ease;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pillar.olive  { background: var(--olive); }
.pillar.rust   { background: var(--rust); }
.pillar.gold   { background: var(--gold); color: var(--ink); }
.pillar.orange { background: var(--orange); }
.pillar h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: .4rem; }
.pillar p { font-size: .85rem; opacity: .95; flex: 1; }
.pillar .btn { margin-top: 1rem; align-self: flex-start; }

/* ---------- Story ---------- */
.story { background: var(--cream-2); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.story-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 2.5rem; align-items: center; }
.story-oval {
  border: 4px solid var(--ink); border-radius: 50%/42%; overflow: hidden; aspect-ratio: 4/3;
  box-shadow: var(--shadow); transform: rotate(-2deg);
}
.story-oval img { width: 100%; height: 100%; object-fit: cover; }
.story h2 { font-family: var(--font-script); font-size: clamp(2.4rem,4vw,3.4rem); color: var(--orange); }
.story p { font-size: 1rem; color: var(--ink-soft); max-width: 46ch; }
.story-quote {
  font-family: var(--font-marker); font-size: 1.5rem; color: var(--forest-3);
  border-left: 4px solid var(--gold); padding-left: 1rem; margin-top: 1.4rem;
}
.pass-badge {
  width: 120px; height: 120px; border-radius: 50%; background: var(--gold);
  border: 3px solid var(--ink); display: grid; place-content: center; text-align: center;
  font-family: var(--font-marker); font-size: 1.2rem; line-height: 1; transform: rotate(8deg);
  margin-top: 1rem;
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--forest); color: var(--cream); }
.testimonials .section-label, .testimonials .eyebrow { color: var(--gold-2); }
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.tcard {
  background: var(--cream); color: var(--ink); border: 2px solid var(--ink);
  border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm);
}
.tcard .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: .6rem; }
.tcard blockquote { margin: 0 0 1rem; font-size: .98rem; }
.tcard .who { font-weight: 700; color: var(--rust); }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest); color: var(--cream); border-top: 4px solid var(--ink); padding: 3.5rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.4fr; gap: 2rem; }
.footer-grid h5 { font-family: var(--font-marker); font-size: 1.3rem; color: var(--gold-2); margin: 0 0 .8rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: .45rem; }
.footer-grid a { color: var(--cream); font-size: .9rem; }
.footer-grid a:hover { color: var(--gold-2); }
.footer-brand .logo { font-family: var(--font-script); font-size: 2rem; color: var(--gold-2); }
.footer-brand p { font-family: var(--font-marker); font-size: 1.1rem; color: var(--olive-light); }
.newsletter input {
  width: 100%; padding: .7rem 1rem; border-radius: var(--radius-pill); border: 2px solid var(--ink);
  background: var(--cream); color: var(--ink); margin-bottom: .6rem; font-family: var(--font-body);
}
.social { display: flex; gap: .6rem; margin-top: 1rem; }
.social a {
  width: 38px; height: 38px; border-radius: 50%; background: var(--forest-3); color: var(--cream);
  display: grid; place-items: center; border: 2px solid var(--olive);
}
.social a:hover { background: var(--gold); color: var(--ink); }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.2rem; border-top: 1px solid rgba(244,232,206,.2);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .8rem; opacity: .85;
}

/* ---------- Page header band ---------- */
.page-band {
  background: var(--forest); color: var(--cream); border-bottom: 3px solid var(--ink);
  padding: 3rem 0; text-align: center;
}
.page-band h1 { font-family: var(--font-display); font-size: clamp(2.2rem,5vw,3.4rem); color: var(--gold-2); }
.page-band .eyebrow { color: var(--orange-2); }
.breadcrumb { font-size: .85rem; color: var(--cream); opacity: .8; }
.breadcrumb a { color: var(--gold-2); }

/* ---------- Product grid ---------- */
.shop-layout { display: grid; grid-template-columns: 230px 1fr; gap: 2rem; }
.shop-filters { position: sticky; top: 90px; align-self: start; }
.filter-card { background: var(--cream); border: 2px solid var(--ink); border-radius: var(--radius); padding: 1.2rem; box-shadow: var(--shadow-sm); }
.filter-card h4 { font-family: var(--font-marker); font-size: 1.3rem; color: var(--forest-3); margin: 0 0 .6rem; }
.filter-card ul { list-style: none; margin: 0 0 1rem; padding: 0; }
.filter-card li { margin-bottom: .35rem; }
.filter-card a { color: var(--ink); font-weight: 600; font-size: .9rem; }
.filter-card a.active { color: var(--orange); }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.4rem; }
.product-card {
  background: var(--cream); border: 2px solid var(--ink); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-card .pimg { aspect-ratio: 1/1; overflow: hidden; position: relative; background: var(--cream-3); }
.product-card .pimg img { width: 100%; height: 100%; object-fit: cover; }
.product-card .badge-sale {
  position: absolute; top: 10px; left: 10px; background: var(--rust); color: #fff;
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .25rem .6rem; border-radius: var(--radius-pill); border: 2px solid var(--ink);
}
.product-card .pbody { padding: 1rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.product-card .ptype { font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; color: var(--olive); font-weight: 700; }
.product-card h3 { font-size: 1.05rem; margin: 0; font-family: var(--font-body); font-weight: 700; }
.product-card h3 a { color: var(--ink); }
.product-card .price { font-family: var(--font-display); font-size: 1.2rem; color: var(--rust); margin-top: auto; }
.product-card .price .was { font-family: var(--font-body); font-size: .85rem; color: var(--ink-soft); text-decoration: line-through; margin-left: .4rem; font-weight: 400; }
.product-card .pactions { padding: 0 1rem 1rem; }

/* ---------- Product detail ---------- */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.product-gallery .main { border: 3px solid var(--ink); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.product-gallery .main img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.product-info h1 { font-family: var(--font-display); font-size: clamp(1.8rem,3.4vw,2.6rem); color: var(--forest-3); }
.product-info .price { font-family: var(--font-display); font-size: 1.8rem; color: var(--rust); }
.product-meta { display: flex; gap: 1rem; flex-wrap: wrap; margin: 1rem 0; }
.chip { background: var(--cream-2); border: 2px solid var(--ink); border-radius: var(--radius-pill); padding: .3rem .9rem; font-size: .8rem; font-weight: 600; }
.qty-row { display: flex; align-items: center; gap: 1rem; margin: 1.4rem 0; }
.qty-input { display: flex; align-items: center; border: 2px solid var(--ink); border-radius: var(--radius-pill); overflow: hidden; }
.qty-input button { background: var(--cream-2); border: none; width: 40px; height: 42px; font-size: 1.2rem; cursor: pointer; }
.qty-input input { width: 50px; text-align: center; border: none; font-size: 1rem; background: var(--cream); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.gallery-item {
  border: 3px solid var(--ink); border-radius: var(--radius); overflow: hidden; cursor: pointer;
  position: relative; box-shadow: var(--shadow-sm); aspect-ratio: 4/3; background: var(--cream-3);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: .8rem;
  background: linear-gradient(transparent, rgba(40,51,32,.85)); color: var(--cream);
  font-family: var(--font-marker); font-size: 1.15rem;
}
.lightbox {
  position: fixed; inset: 0; z-index: var(--z-modal); background: rgba(40,33,24,.92);
  display: none; align-items: center; justify-content: center; padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border: 4px solid var(--cream); border-radius: 8px; }
.lightbox .lb-close, .lightbox .lb-nav {
  position: absolute; background: var(--cream); border: 2px solid var(--ink); color: var(--ink);
  width: 48px; height: 48px; border-radius: 50%; font-size: 1.4rem; cursor: pointer; display: grid; place-items: center;
}
.lightbox .lb-close { top: 24px; right: 24px; }
.lightbox .lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ---------- Cart / checkout / tables ---------- */
.cart-layout { display: grid; grid-template-columns: 1.6fr .9fr; gap: 2rem; align-items: start; }
.cart-table { width: 100%; border-collapse: collapse; background: var(--cream); border: 2px solid var(--ink); border-radius: var(--radius); overflow: hidden; }
.cart-table th, .cart-table td { padding: 1rem; text-align: left; border-bottom: 1px solid var(--cream-line); }
.cart-table th { background: var(--cream-2); font-family: var(--font-marker); font-size: 1.1rem; }
.cart-line-img { width: 64px; height: 64px; object-fit: cover; border-radius: 10px; border: 2px solid var(--ink); }
.summary-card { background: var(--cream); border: 2px solid var(--ink); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.summary-card h3 { font-family: var(--font-marker); font-size: 1.5rem; color: var(--forest-3); }
.summary-row { display: flex; justify-content: space-between; padding: .5rem 0; border-bottom: 1px dashed var(--cream-line); }
.summary-row.total { font-family: var(--font-display); font-size: 1.3rem; color: var(--rust); border-bottom: none; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .3rem; margin-bottom: 1rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); }
.field input, .field textarea, .field select {
  padding: .7rem .9rem; border: 2px solid var(--ink); border-radius: 12px;
  background: var(--paper); font-family: var(--font-body); font-size: .95rem; color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: 3px solid var(--gold); outline-offset: 1px; }

/* ---------- Cards / content ---------- */
.card { background: var(--cream); border: 2px solid var(--ink); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.prose { max-width: 70ch; margin: 0 auto; }
.prose h2, .prose h3 { font-family: var(--font-display); color: var(--forest-3); }
.prose p { margin: 0 0 1rem; }

/* ---------- Journal ---------- */
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.6rem; }
.post-card { background: var(--cream); border: 2px solid var(--ink); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .15s ease; display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-5px); }
.post-card .cover { aspect-ratio: 16/10; overflow: hidden; }
.post-card .cover img { width: 100%; height: 100%; object-fit: cover; }
.post-card .pc-body { padding: 1.3rem; }
.post-card h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--forest-3); }

/* ---------- Flash messages ---------- */
.flash-wrap { position: fixed; top: 16px; right: 16px; z-index: var(--z-overlay); display: flex; flex-direction: column; gap: .6rem; max-width: 360px; }
.flash { padding: .9rem 1.2rem; border-radius: 12px; border: 2px solid var(--ink); box-shadow: var(--shadow); font-weight: 600; font-size: .9rem; }
.flash.success { background: var(--olive); color: #fff; }
.flash.error { background: var(--rust); color: #fff; }
.flash.info { background: var(--gold); color: var(--ink); }

/* ---------- Age gate ---------- */
.age-gate {
  position: fixed; inset: 0; z-index: var(--z-modal); background: rgba(40,33,24,.96);
  display: grid; place-items: center; padding: 2rem; text-align: center;
}
.age-card { background: var(--cream); border: 3px solid var(--ink); border-radius: var(--radius-lg); padding: 2.5rem; max-width: 460px; box-shadow: var(--shadow-lg); }
.age-card .logo { font-family: var(--font-script); font-size: 2.6rem; color: var(--forest-3); }
.age-card h2 { font-family: var(--font-display); color: var(--rust); }
.age-actions { display: flex; gap: 1rem; justify-content: center; margin-top: 1.5rem; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }
.muted { color: var(--ink-soft); }
.empty-state { text-align: center; padding: 3rem 1rem; }
.empty-state .leaf { font-size: 3rem; }
.divider-leaf { text-align: center; color: var(--olive); font-size: 1.5rem; margin: 1rem 0; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-badge { display: none; }
  .feature-row { grid-template-columns: repeat(3, 1fr); }
  .feat-louder { grid-column: 1 / -1; }
  .pillars-wrap { grid-template-columns: 1fr 1fr; }
  .story-grid, .product-detail, .cart-layout { grid-template-columns: 1fr; }
  .tcards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-filters { position: static; }
}
@media (max-width: 720px) {
  .nav-links, .roadmap-btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); border-bottom: 3px solid var(--ink); padding: 1rem 24px; gap: 1rem;
  }
  .feature-row { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
