/* =========================================================
   The Nutty Bakehouse — Stylesheet
   Redesign inspired by premium chocolate retailers
   (clean sans-serif · refined palette · image-first · airy)
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Surfaces */
  --cream:        #f7f1e8;
  --cream-deep:   #efe4d3;
  --paper:        #fffdf9;
  --paper-2:      #fbf6ee;

  /* Ink / text */
  --ink:          #1c130c;
  --ink-soft:     #463528;
  --muted:        #8a7563;

  /* Brand */
  --choc:         #2a1810;   /* dark chocolate — dark sections */
  --choc-2:       #5a3a22;
  --gold:         #c08a3e;   /* primary accent */
  --gold-deep:    #a06f29;
  --cranberry:    #b8463f;
  --sage:         #8b7d4a;

  /* Lines & shadows */
  --line:         rgba(28, 19, 12, 0.10);
  --line-strong:  rgba(28, 19, 12, 0.18);
  --shadow-sm:    0 4px 18px rgba(40, 24, 12, 0.06);
  --shadow-md:    0 16px 44px rgba(40, 24, 12, 0.12);
  --shadow-lg:    0 28px 70px rgba(40, 24, 12, 0.18);

  /* Radii */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 26px;
  --r-pill: 999px;

  /* Type */
  --font-display: 'Manrope', 'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --max-width: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.1; margin: 0; }
p { margin: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

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

.section { padding: 84px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(30px, 4.4vw, 46px);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.section-head .subtitle,
.subtitle {
  color: var(--muted);
  font-size: 17px;
  margin-top: 14px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 10px 24px rgba(28, 19, 12, 0.18);
}
.btn:hover { transform: translateY(-2px); background: var(--choc); box-shadow: var(--shadow-md); }
.btn-lg { padding: 17px 40px; font-size: 15px; }

.btn-gold { background: var(--gold); color: var(--ink); box-shadow: 0 10px 24px rgba(192,138,62,0.30); }
.btn-gold:hover { background: var(--gold-deep); color: var(--paper); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
  box-shadow: none;
}
.btn-outline:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* Outline button on dark backgrounds */
.on-dark .btn-outline { color: var(--paper); border-color: rgba(255,255,255,0.45); }
.on-dark .btn-outline:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* ---------- Announcement Bar ---------- */
.announcement-bar {
  background: var(--choc);
  color: #f3e7d7;
}
.announcement-bar .container {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-align: center;
}
.announcement-bar span { opacity: 0.9; }
.announcement-bar .dot { opacity: 0.4; }

/* ---------- Header / Nav ---------- */
.site-header {
  background: rgba(247, 241, 232, 0.88);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: saturate(140%) blur(10px);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-logo {
  height: clamp(48px, 7vw, 64px);
  width: auto;
  object-fit: contain;
  border-radius: 8px;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(17px, 2.2vw, 22px);
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 28px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.nav a {
  position: relative;
  padding: 6px 0;
  color: var(--ink-soft);
  transition: color .2s ease;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .25s ease;
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }
.nav a.active { color: var(--ink); }
.nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.icon-btn {
  position: relative;
  width: 42px; height: 42px;
  border-radius: var(--r-pill);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  color: var(--ink);
  border: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease;
}
.icon-btn:hover { background: var(--paper); border-color: var(--line); }
.cart-count {
  position: absolute;
  top: -2px; right: -2px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  background: var(--gold);
  color: var(--ink);
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1100px 540px at 88% 8%, rgba(192,138,62,0.10), transparent 60%),
    var(--cream);
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 56px;
  padding-top: 64px;
  padding-bottom: 64px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: rgba(192,138,62,0.12);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 68px);
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--gold-deep); }
.hero-sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}
.hero-trust .stars { color: var(--gold); letter-spacing: 2px; font-size: 15px; }
.hero-trust strong { color: var(--ink); }

.hero-media { position: relative; }
.hero-media .photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 4.4;
  background: linear-gradient(135deg, var(--choc-2), var(--choc));
}
.hero-media .photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-media .floating-card {
  position: absolute;
  left: -22px; bottom: 30px;
  background: var(--paper);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-media .floating-card .emoji-badge {
  width: 42px; height: 42px;
  border-radius: var(--r-pill);
  background: var(--cream-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.hero-media .floating-card .fc-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
}
.hero-media .floating-card .fc-sub { font-size: 12px; color: var(--muted); }

/* Hero collage — all four product lines */
.hero-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.collage-tile {
  position: relative;
  display: block;
  aspect-ratio: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, #d8b483, var(--choc-2));
}
.collage-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.collage-tile:hover img { transform: scale(1.06); }
.collage-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,12,7,0.78) 0%, rgba(20,12,7,0.05) 55%, transparent 100%);
}
.collage-label {
  position: absolute;
  left: 14px; bottom: 12px;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--paper);
}

/* ---------- Value Props strip ---------- */
.value-props {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.value-props .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 36px;
  padding-bottom: 36px;
}
.value-prop { display: flex; align-items: center; gap: 14px; }
.value-prop .vp-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: var(--r-pill);
  background: var(--cream-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.value-prop h3 { font-size: 15px; color: var(--ink); margin-bottom: 2px; }
.value-prop p { font-size: 13px; color: var(--muted); line-height: 1.45; }

/* ---------- Category Cards ---------- */
.categories { background: var(--cream); }
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 26px;
}
.category-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3 / 3.4;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, var(--choc-2), var(--choc));
  transition: transform .3s ease, box-shadow .3s ease;
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.category-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.category-card:hover img { transform: scale(1.06); }
.category-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,12,7,0.82) 0%, rgba(20,12,7,0.15) 55%, transparent 100%);
}
.category-card .cat-body {
  position: relative;
  z-index: 1;
  padding: 26px;
  color: var(--paper);
}
.category-card h3 { font-size: 24px; margin-bottom: 4px; }
.category-card p { font-size: 14px; opacity: 0.85; margin-bottom: 14px; }
.category-card .cat-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--paper);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}

/* ---------- Product Cards (best sellers) ---------- */
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.product-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.product-media {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #d8b483, var(--choc-2));
  overflow: hidden;
}
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-media img { transform: scale(1.06); }
.badge-row { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; flex-wrap: wrap; }
.badge {
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: var(--paper);
}
.badge.best-seller { background: var(--gold); color: var(--ink); }
.badge.new       { background: var(--cranberry); color: #fff; }
.badge.vegan     { background: var(--sage); color: #fff; }
.badge.premium   { background: var(--choc); color: var(--gold); }
.badge.coming-soon { background: var(--choc-2); color: #f3e7d7; }

.product-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.product-name { font-size: 17px; color: var(--ink); margin-bottom: 6px; }
.product-desc { font-size: 13.5px; color: var(--muted); margin-bottom: 12px; flex: 1; }
.product-rating { display: flex; align-items: center; gap: 7px; margin-bottom: 14px; font-size: 13px; }
.product-rating .stars { color: var(--gold); letter-spacing: 1px; }
.product-rating .reviews { color: var(--muted); }
.product-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.product-price { font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--ink); }
.product-price .unit { font-family: var(--font-body); font-weight: 400; font-size: 12px; color: var(--muted); display: block; }
.btn-add {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  padding: 11px 20px;
  border-radius: var(--r-pill);
  transition: transform .2s ease, background .2s ease;
}
.btn-add:hover { background: var(--gold); color: var(--ink); transform: translateY(-1px); }

.product-foot { display: flex; align-items: center; justify-content: flex-start; }
.product-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.03em;
  color: var(--gold-deep);
  transition: gap .2s ease, color .2s ease;
}
.product-link:hover { color: var(--ink); }

.view-all { text-align: center; margin-top: 46px; }

/* Recommended pairing callout */
.recommend-note {
  background: rgba(192, 138, 62, 0.12);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-sm);
  padding: 14px 18px;
  margin: 0 0 26px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.recommend-note strong { color: var(--gold-deep); }

/* ---------- Feature Split (Create your own box) ---------- */
.feature-split { background: var(--cream); }
.feature-split .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.feature-split.reverse .split-media { order: -1; }
.split-text .eyebrow { margin-bottom: 14px; }
.split-text h2 { font-size: clamp(28px, 4vw, 42px); letter-spacing: -0.02em; margin-bottom: 18px; }
.split-text p { color: var(--ink-soft); font-size: 17px; margin-bottom: 22px; max-width: 460px; }
.split-list { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 12px; }
.split-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: var(--ink-soft);
}
.split-list li::before {
  content: '✓';
  width: 24px; height: 24px;
  flex-shrink: 0;
  border-radius: var(--r-pill);
  background: rgba(192,138,62,0.16);
  color: var(--gold-deep);
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.split-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3.2;
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--choc-2), var(--choc));
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Catalog ---------- */
.catalog-section { background: var(--paper-2); }
.catalog-category { margin-bottom: 64px; }
.catalog-category:last-child { margin-bottom: 0; }
.category-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.category-header h3 { font-size: 26px; color: var(--ink); letter-spacing: -0.01em; }
.category-header p { color: var(--muted); font-size: 15px; }

.items-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ---------- Product Slider ---------- */
.product-slider {
  display: flex;
  align-items: center;
  gap: 12px;
}
.slider-track {
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 4px 14px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.slider-track::-webkit-scrollbar { display: none; }
.slider-track .catalog-item {
  flex: 0 0 clamp(230px, 24%, 270px);
  scroll-snap-align: start;
}
.slider-btn {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  border-radius: var(--r-pill);
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  box-shadow: var(--shadow-sm);
  display: none;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, color .2s ease, opacity .2s ease;
}
.product-slider.has-overflow .slider-btn { display: flex; }
.slider-btn:hover { background: var(--ink); color: var(--paper); }
.slider-btn:disabled { opacity: 0.3; cursor: default; }
.slider-btn:disabled:hover { background: var(--paper); color: var(--ink); }

/* ---------- Coming Soon banner ---------- */
.coming-soon-banner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.coming-soon-banner img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 26px;
}

/* ---------- Single centered catalog card ---------- */
.single-card { display: flex; justify-content: center; }
.single-card .catalog-item { width: 280px; max-width: 100%; }
.catalog-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.catalog-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.item-image {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #d8b483, var(--choc-2));
  overflow: hidden;
}
.item-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.catalog-item:hover .item-image img { transform: scale(1.06); }
.badge-overlay, .badge-kids, .badge-vegan, .badge-premium, .badge-coming {
  position: absolute; top: 10px; right: 10px;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 800; letter-spacing: 0.05em;
  padding: 6px 10px; border-radius: var(--r-pill);
  background: var(--ink); color: var(--paper);
  z-index: 1;
}
.badge-overlay { background: var(--gold); color: var(--ink); }
.badge-vegan   { background: var(--sage); color: #fff; }
.badge-premium { background: var(--choc); color: var(--gold); }
.badge-coming  { background: var(--choc-2); color: #f3e7d7; left: 10px; right: auto; }
.item-details { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.item-details h4 { font-size: 16px; color: var(--ink); margin-bottom: 5px; }
.item-desc { font-size: 13px; color: var(--muted); margin-bottom: 10px; flex: 1; }
.rating-small { font-size: 12px; color: var(--gold); margin-bottom: 12px; }
.rating-small::first-letter { color: var(--gold); }
.item-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 0; }
.item-meta .variant { color: var(--muted); font-size: 12px; }
.price { font-family: var(--font-display); font-weight: 800; color: var(--ink); font-size: 16px; }
.btn-small {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 12.5px; letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--paper); background: var(--ink);
  padding: 9px 16px; border-radius: var(--r-pill);
  transition: background .2s ease, transform .2s ease;
}
.btn-small:hover { background: var(--gold); color: var(--ink); transform: translateY(-1px); }

/* ---------- Gifts ---------- */
.gifts-section { background: var(--cream); }
.gifts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gift-option {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 24px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.gift-option:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.gift-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: var(--r-pill);
  background: var(--cream-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.gift-option h4 { font-size: 18px; color: var(--ink); margin-bottom: 8px; }
.gift-option p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.gift-option .price { font-size: 15px; color: var(--gold-deep); }

/* ---------- Membership ---------- */
.membership-section { background: var(--cream); padding-bottom: 84px; }
.membership-card {
  background:
    radial-gradient(900px 400px at 85% 10%, rgba(192,138,62,0.18), transparent 60%),
    var(--choc);
  color: #f3e7d7;
  border-radius: var(--r-lg);
  padding: 64px 56px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.membership-card h2 { font-size: clamp(28px, 4vw, 42px); color: var(--paper); margin-bottom: 14px; }
.membership-card > p { color: rgba(243,231,215,0.82); font-size: 17px; margin-bottom: 26px; }
.membership-benefits {
  list-style: none; padding: 0;
  margin: 0 auto 32px;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 34px;
  text-align: left;
}
.membership-benefits li { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.membership-benefits li::before { content: '✦'; color: var(--gold); }

/* ---------- Testimonials ---------- */
.testimonials-section { background: var(--paper-2); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testimonial {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial .stars { color: var(--gold); letter-spacing: 2px; font-size: 16px; margin-bottom: 14px; }
.testimonial .quote { font-size: 16px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 22px; }
.testimonial .author { display: flex; align-items: center; gap: 12px; }
.testimonial .avatar {
  width: 44px; height: 44px;
  border-radius: var(--r-pill);
  background: var(--cream-deep);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800; font-size: 14px;
}
.testimonial .name { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--ink); }
.testimonial .location { font-size: 12.5px; color: var(--muted); }

/* ---------- Newsletter ---------- */
.newsletter { background: var(--cream); }
.signup-content {
  background:
    radial-gradient(800px 360px at 12% 0%, rgba(192,138,62,0.12), transparent 60%),
    var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 56px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.signup-content h2 { font-size: clamp(26px, 3.6vw, 38px); color: var(--ink); margin-bottom: 12px; }
.signup-content > p { color: var(--muted); font-size: 16px; margin-bottom: 28px; }
.signup-form {
  display: flex; gap: 12px;
  max-width: 480px; margin: 0 auto 14px;
}
.signup-form input {
  flex: 1;
  padding: 15px 20px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--cream);
  color: var(--ink);
}
.signup-form input:focus { outline: none; border-color: var(--gold); }
.signup-content .privacy { font-size: 12.5px; color: var(--muted); }

/* ---------- About ---------- */
.about-section { background: var(--cream); text-align: center; }
.about-section .container { max-width: 760px; }
.about-section h2 { font-size: clamp(28px, 4vw, 42px); color: var(--ink); margin-bottom: 22px; }
.about-section p { color: var(--ink-soft); font-size: 17px; margin-bottom: 16px; }
.about-section strong { color: var(--ink); }

/* ---------- Contact ---------- */
.contact-section { background: var(--choc); color: #f3e7d7; }
.contact-section .contact-content { text-align: center; max-width: 720px; margin: 0 auto; }
.contact-section h2 { color: var(--paper); font-size: clamp(28px, 4vw, 42px); margin-bottom: 14px; }
.contact-section > .container > .contact-content > p { color: rgba(243,231,215,0.82); font-size: 16px; margin-bottom: 30px; }
.contact-buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.btn-contact {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: #f3e7d7;
  font-family: var(--font-display);
  font-weight: 600; font-size: 14px;
  transition: background .2s ease, transform .2s ease;
}
.btn-contact:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); border-color: var(--gold); }

/* ---------- Footer ---------- */
.site-footer {
  background: #170d07;
  color: #cdbba6;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 64px 0 40px;
}
.footer-col h4 {
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-col a { color: #cdbba6; font-size: 14px; transition: color .2s ease; }
.footer-col a:hover { color: var(--paper); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: #9c8a76;
}
.site-footer .heart { color: var(--cranberry); }

/* =========================================================
   Product Detail Pages (shared classes — restyled to match)
   ========================================================= */
main.container { padding-top: 48px; padding-bottom: 48px; }

.detail-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 24px 0 64px;
}
.detail-hero .img-wrap {
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #d8b483, var(--choc));
  position: relative;
}
.detail-hero .img-wrap::after {
  content: attr(data-fallback);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800;
  font-size: 24px; color: rgba(255,255,255,0.9);
  text-align: center; padding: 20px; z-index: 0;
}
.detail-hero .img-wrap img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
.detail-hero h1 {
  font-size: clamp(32px, 5vw, 50px);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 16px;
}
.detail-hero .lead { font-size: 17px; color: var(--ink-soft); margin: 0 0 24px; }
.detail-hero .tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 12px;
}

.feature-list { list-style: none; padding: 0; margin: 24px 0 30px; }
.feature-list li {
  padding: 12px 0;
  display: flex; gap: 14px; align-items: flex-start;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.feature-list li:last-child { border-bottom: 0; }
.feature-list .emoji { font-size: 20px; flex-shrink: 0; }

.serving-suggestion, .why-choose {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  padding: 26px 30px;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin: 36px 0;
}
.serving-suggestion h3, .why-choose h3 {
  font-size: 20px; color: var(--ink); margin: 0 0 10px;
}
.serving-suggestion p { margin: 0; color: var(--ink-soft); }
.why-choose ul { margin: 12px 0 0; padding-left: 20px; color: var(--ink-soft); }
.why-choose ul li { padding: 4px 0; }

.about { text-align: center; padding: 18px 0 30px; max-width: 760px; margin: 0 auto; }
.about h3 { font-size: 26px; color: var(--ink); margin: 0 0 16px; }
.about p { font-size: 16px; color: var(--ink-soft); margin: 0 0 14px; }

.section-simple { padding: 40px 0; text-align: center; }
.section-simple h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--ink);
  margin: 0 0 24px;
}
.section-simple p { max-width: 600px; margin: 0 auto 20px; color: var(--ink-soft); }

.ingredients-allergens {
  max-width: 820px;
  margin: 24px auto !important;
  padding: 24px !important;
  border-radius: var(--r-md) !important;
  background: var(--paper) !important;
  border: 1px solid var(--line);
  text-align: left;
}
.ingredients-allergens h3 { font-size: 20px; color: var(--ink); margin: 0 0 14px; }
.ingredients-allergens p { margin: 10px 0; font-size: 14.5px; color: var(--ink-soft); }
.ingredients-allergens strong { color: var(--ink); }

.variants {
  background: var(--paper) !important;
  border: 1px solid var(--line);
  border-radius: var(--r-md) !important;
  padding: 20px !important;
  margin: 20px 0 !important;
  text-align: left;
}
.variants h4 { font-size: 17px; color: var(--ink); margin: 0 0 12px; }
.variants ul { margin: 10px 0 !important; padding-left: 20px; }
.variants li { list-style: disc; color: var(--ink-soft); margin: 6px 0; font-size: 14px; }
.variants strong { color: var(--ink); }

.price-box {
  background: var(--cream) !important;
  padding: 16px 18px !important;
  border-radius: var(--r-md) !important;
  margin: 16px 0 !important;
  border: 1px solid var(--line);
  text-align: left;
}
.price-box p { margin: 0 !important; font-size: 16px; color: var(--ink); font-weight: 700; }

.order-cta {
  background: var(--choc);
  color: #f3e7d7;
  border-radius: var(--r-lg);
  padding: 50px 40px;
  text-align: center;
  margin: 40px 0;
  box-shadow: var(--shadow-lg);
}
.order-cta-compact { padding: 40px 28px; margin: 0; }
.order-cta h2 { color: var(--paper); font-size: 32px; margin: 0 0 14px; }
.order-cta-compact h2 { font-size: 28px; }
.order-cta p { color: rgba(243,231,215,0.85); max-width: 540px; margin: 0 auto 24px; }
.order-notes { font-size: 15px; line-height: 1.7; }

.cutoff-info {
  background: rgba(184,70,63,0.18) !important;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  color: #f6d9c8;
  font-size: 14px;
  margin: 14px auto 20px !important;
  max-width: 460px;
}
.cutoff-info strong { color: var(--paper); }

.contact-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 0; }
.contact-links a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 600; font-size: 14px;
  color: #f3e7d7;
  transition: background .2s ease, transform .2s ease;
}
.contact-links a:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }

.back-link-wrap { text-align: center; margin: 36px 0 0; font-size: 14px; }
.back-link-wrap a { color: var(--muted); transition: color .2s ease; }
.back-link-wrap a:hover { color: var(--ink); }

.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 24px 0; }
.testimonial-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  padding: 28px 24px;
  border-radius: var(--r-md);
  transition: transform .3s ease, box-shadow .3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card .quote { color: var(--ink-soft); margin: 0 0 12px; font-size: 15.5px; line-height: 1.6; }
.testimonial-card .author { color: var(--muted); font-size: 14px; margin: 0; font-weight: 600; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1100px) {
  .products, .gifts-grid, .items-grid { grid-template-columns: repeat(2, 1fr); }
  .value-props .container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  .section { padding: 60px 0; }
  .hero .container { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-media { max-width: 460px; margin: 0 auto; width: 100%; }
  .feature-split .container { grid-template-columns: 1fr; gap: 32px; }
  .feature-split.reverse .split-media { order: 0; }
  .split-text p, .split-list { max-width: none; }
  .testimonials-grid, .testimonials { grid-template-columns: 1fr; }
  .detail-hero { grid-template-columns: 1fr; gap: 32px; }
  .nav { gap: 6px 18px; font-size: 13px; }
  .membership-card { padding: 44px 28px; }
  .membership-benefits { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .signup-content { padding: 40px 24px; }
}

@media (max-width: 640px) {
  .section { padding: 48px 0; }
  .container { padding: 0 18px; }
  .site-header .container { flex-wrap: wrap; min-height: auto; padding-top: 12px; padding-bottom: 12px; gap: 12px; }
  .nav { order: 3; width: 100%; justify-content: flex-start; gap: 6px 16px; padding-top: 10px; border-top: 1px solid var(--line); }
  .announcement-bar .container { flex-direction: column; gap: 4px; }
  .announcement-bar .dot { display: none; }
  .products, .gifts-grid, .items-grid, .value-props .container { grid-template-columns: 1fr; }
  .signup-form { flex-direction: column; }
  .signup-form .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .category-header { flex-direction: column; align-items: flex-start; gap: 6px; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
