/* ==========================================================================
   CAKE BY THE POUND — luxury pink dessert brand
   stylesheet — mobile-first, modern, editorial
   ========================================================================== */

/* -------- design tokens -------- */
:root {
  /* color: blush + rose + cream */
  --blush-50:  #FFF7FA;
  --blush-100: #FFEFF4;
  --blush-200: #FFE0EA;
  --blush-300: #FFC8D9;
  --blush-400: #FFA8C2;
  --blush-500: #F583A5;
  --blush-600: #E66A93;
  --blush-700: #C84B79;
  --blush-800: #9B2C5E;
  --blush-900: #5B1635;

  --rose:      #E94B83;
  --berry:     #C7305C;
  --cream:     #FFF7F2;
  --champagne: #F8E6D3;
  --ivory:     #FFFCFB;
  --plum:      #3D1F2C;
  --ink:       #2A1320;
  --muted:     #7A5566;

  /* gold — luxury accent palette */
  --gold-50:   #FAEFC9;
  --gold-100:  #F0D38A;
  --gold-200:  #E8CB85;
  --gold:      #C9A24B;
  --gold-700:  #A8842F;
  --gold-900:  #6E5520;

  /* gradients */
  --grad-hero:    linear-gradient(135deg, #FFE9F1 0%, #FFC8D9 45%, #F583A5 100%);
  --grad-soft:    linear-gradient(180deg, #FFF7FA 0%, #FFEFF4 100%);
  --grad-pink:    linear-gradient(135deg, #FFA8C2 0%, #E66A93 60%, #C7305C 100%);
  --grad-cream:   linear-gradient(180deg, #FFFCFB 0%, #FFEFF4 100%);
  --grad-gold:    linear-gradient(135deg, #F0D38A 0%, #C9A24B 55%, #8B6F2E 100%);
  --grad-gold-soft: linear-gradient(135deg, #FAEFC9 0%, #E8CB85 100%);
  --grad-pinkgold: linear-gradient(120deg, #FFC8D9 0%, #F0D38A 100%);

  /* shadows — warm pink, never harsh */
  --shadow-sm:  0 2px 8px rgba(155, 44, 94, 0.06);
  --shadow-md:  0 12px 32px -8px rgba(155, 44, 94, 0.18);
  --shadow-lg:  0 24px 48px -12px rgba(155, 44, 94, 0.25);
  --shadow-xl:  0 40px 80px -24px rgba(155, 44, 94, 0.35);
  --glow:       0 0 0 4px rgba(245, 131, 165, 0.15);

  /* radius */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-pill: 999px;

  /* spacing */
  --s-1:  4px;
  --s-2:  8px;
  --s-3:  12px;
  --s-4:  16px;
  --s-5:  20px;
  --s-6:  24px;
  --s-8:  32px;
  --s-10: 40px;
  --s-12: 48px;
  --s-16: 64px;
  --s-20: 80px;
  --s-24: 96px;
  --s-32: 128px;

  /* type */
  --f-display: 'Cormorant Garamond', 'Playfair Display', 'Times New Roman', serif;
  --f-body:    'Inter', 'Outfit', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  --f-script:  'Italianno', 'Pinyon Script', cursive;

  /* layout */
  --container:  1240px;
  --container-narrow: 920px;
  --header-h:   72px;

  /* motion */
  --ease-out:  cubic-bezier(.22, 1, .36, 1);
  --ease-in:   cubic-bezier(.55, 0, .68, .53);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
}

/* -------- reset -------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--plum);
}

/* -------- skip link -------- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  padding: 8px 12px; background: var(--plum); color: var(--ivory);
  border-radius: var(--r-xs);
}
.skip-link:focus { left: 12px; top: 12px; z-index: 10000; }

/* -------- container -------- */
.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.container--narrow { max-width: var(--container-narrow); }

/* -------- background canvas (decorative): warmer, pinker wash -------- */
.bg-decor {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse at 10% -10%, rgba(255, 168, 194, 0.55), transparent 55%),
    radial-gradient(ellipse at 100% 0%, rgba(255, 200, 217, 0.55), transparent 55%),
    radial-gradient(ellipse at 50% 110%, rgba(255, 168, 194, 0.45), transparent 55%),
    linear-gradient(180deg, #FFE6EE 0%, #FFD8E5 100%);
}
body { background: #FFE6EE; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  background: rgba(255, 247, 250, 0.72);
  border-bottom: 1px solid rgba(232, 102, 147, 0.10);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-4);
  min-height: var(--header-h);
  padding-block: var(--s-3);
}
.brand-link {
  display: flex; align-items: center; gap: var(--s-3);
  color: var(--plum);
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.brand-link .logo-mark { width: 52px; height: 52px; flex: none; }
.brand-link .logo-mark--favicon {
  display: block;
  width: 52px; height: 52px;
  object-fit: contain;
}
.brand-link .logo-mark--desktop { display: none !important; }
.brand-link__text {
  display: flex; flex-direction: column;
  line-height: 1;
  font-size: 1.05rem;
}
.brand-link__text small {
  font-family: var(--f-body);
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blush-700);
  margin-top: 4px;
}

/* nav */
.site-nav {
  display: none;
  align-items: center; gap: var(--s-8);
}
@media (min-width: 920px) { .site-nav { display: flex; } }

.site-nav a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  padding-block: 6px;
  transition: color .2s var(--ease-out);
}
.site-nav a::after {
  content: '';
  position: absolute; left: 50%; right: 50%; bottom: 0;
  height: 1px; background: var(--rose);
  transition: left .25s var(--ease-out), right .25s var(--ease-out);
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--blush-800); }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { left: 0; right: 0; }

.site-header__actions { display: flex; align-items: center; gap: var(--s-3); }
.icon-btn {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-pill);
  background: var(--ivory);
  color: var(--plum);
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease-out), background .2s var(--ease-out), color .2s var(--ease-out);
}
.icon-btn:hover { transform: translateY(-2px); background: var(--blush-200); color: var(--blush-800); }
.icon-btn svg { width: 18px; height: 18px; }
.icon-btn--cart { position: relative; }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  min-width: 20px; height: 20px;
  border-radius: var(--r-pill);
  background: var(--rose); color: white;
  font-size: 0.7rem; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  padding-inline: 6px;
  box-shadow: 0 4px 12px rgba(233, 75, 131, 0.45);
}
.cart-badge[data-count="0"] { display: none; }

/* mobile nav toggle */
.nav-toggle {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-pill);
  background: var(--ivory);
  color: var(--plum);
  box-shadow: var(--shadow-sm);
}
@media (min-width: 920px) { .nav-toggle { display: none; } }
.nav-toggle svg { width: 20px; height: 20px; }

/* mobile drawer */
.mobile-nav {
  position: fixed; inset: 0;
  z-index: 80;
  pointer-events: none;
  visibility: hidden;
}
.mobile-nav[aria-hidden="false"] { pointer-events: auto; visibility: visible; }
.mobile-nav__backdrop {
  position: absolute; inset: 0;
  background: rgba(61, 31, 44, 0.5);
  opacity: 0; transition: opacity .3s var(--ease-out);
  backdrop-filter: blur(6px);
}
.mobile-nav[aria-hidden="false"] .mobile-nav__backdrop { opacity: 1; }
.mobile-nav__panel {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--ivory);
  padding: var(--s-8) var(--s-6);
  box-shadow: var(--shadow-xl);
  transform: translateX(100%);
  transition: transform .35s var(--ease-spring);
  display: flex; flex-direction: column; gap: var(--s-4);
}
.mobile-nav[aria-hidden="false"] .mobile-nav__panel { transform: translateX(0); }
.mobile-nav__close {
  align-self: flex-end;
  width: 40px; height: 40px;
  border-radius: var(--r-pill);
  background: var(--blush-100);
  color: var(--blush-800);
  display: inline-flex; align-items: center; justify-content: center;
}
.mobile-nav__close svg { width: 18px; height: 18px; }
.mobile-nav__links {
  display: flex; flex-direction: column; gap: var(--s-2);
  margin-top: var(--s-4);
}
.mobile-nav__links a {
  font-family: var(--f-display);
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--plum);
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--blush-200);
}
.mobile-nav__footer {
  margin-top: auto;
  display: flex; align-items: center; gap: var(--s-4);
  padding-top: var(--s-6);
  color: var(--muted);
  font-size: 0.85rem;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  padding: var(--s-3) var(--s-6);
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out), background .2s var(--ease-out), color .2s var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn svg { width: 16px; height: 16px; }
.btn--primary {
  background: var(--grad-pink);
  color: white;
  box-shadow: 0 10px 24px -8px rgba(233, 75, 131, 0.5);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -8px rgba(233, 75, 131, 0.6); }
.btn--ghost {
  background: transparent;
  color: var(--blush-800);
  border: 1.5px solid var(--blush-700);
}
.btn--ghost:hover { background: var(--blush-700); color: white; transform: translateY(-2px); }
.btn--soft {
  background: var(--blush-100);
  color: var(--blush-800);
}
.btn--soft:hover { background: var(--blush-200); transform: translateY(-2px); }
.btn--lg { padding: var(--s-4) var(--s-8); font-size: 1rem; }
.btn--block { width: 100%; }

/* ==========================================================================
   HERO
   ========================================================================== */
/* =====================================================================
   HERO — LUXURY PINK + GOLD, IMAGE-LED ON MOBILE
   ===================================================================== */
.hero {
  position: relative;
  padding: clamp(20px, 4vw, 56px) 0 clamp(64px, 9vw, 120px);
  overflow: hidden;
  background:
    radial-gradient(1100px 700px at 88% -10%, rgba(255, 168, 194, 0.55), transparent 60%),
    radial-gradient(900px 600px at -5% 110%, rgba(240, 211, 138, 0.32), transparent 65%),
    linear-gradient(180deg, #FFF7FA 0%, #FFEFF4 100%);
}
.hero__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  animation: heroGlow 12s var(--ease-out) infinite alternate;
}
.hero__glow--pink {
  width: 480px; height: 480px;
  top: -8%; right: -8%;
  background: radial-gradient(circle, #FFA8C2 0%, transparent 70%);
}
.hero__glow--gold {
  width: 380px; height: 380px;
  top: 30%; left: -10%;
  background: radial-gradient(circle, #F0D38A 0%, transparent 70%);
  animation-delay: -4s;
  opacity: 0.45;
}
.hero__glow--rose {
  width: 360px; height: 360px;
  bottom: -10%; right: 22%;
  background: radial-gradient(circle, #E94B83 0%, transparent 70%);
  opacity: 0.28;
  animation-delay: -8s;
}
@keyframes heroGlow {
  0%   { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(20px,-12px,0) scale(1.08); }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(var(--s-8), 5vw, var(--s-16));
  align-items: center;
  position: relative;
  z-index: 1;
}
/* ORDER: stage wrapper shows first on mobile (image-led), copy second.
   Desktop flips to side-by-side with copy on the left. */
.hero__copy  { order: 2; }
@media (min-width: 920px) {
  .hero__inner { grid-template-columns: 1.02fr 1.08fr; gap: var(--s-16); }
  .hero__copy  { order: 1; }
}

/* -------- hero copy -------- */
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 10px 22px;
  border-radius: var(--r-pill);
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.75) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid transparent;
  background-clip: padding-box;
  position: relative;
  color: var(--blush-800);
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  box-shadow: 0 8px 20px -10px rgba(155, 44, 94, 0.25), inset 0 0 0 1px rgba(201, 162, 75, 0.22);
}
.hero__rule {
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--grad-gold);
  opacity: 0.9;
}
.hero__eyebrow-sep {
  display: inline-block;
  font-size: 0.55rem;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0;
  transform: translateY(-1px);
}
.hero__eyebrow-loc {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  letter-spacing: 0.32em;
}
@media (max-width: 520px) {
  .hero__eyebrow {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
    padding: 10px 18px;
    font-size: 0.66rem;
    letter-spacing: 0.26em;
  }
  .hero__eyebrow-loc { letter-spacing: 0.26em; }
}

.hero__title {
  margin-top: var(--s-5);
  font-size: clamp(2.4rem, 7vw, 5.6rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--plum);
}
.hero__title .line { display: block; }
.hero__title .line--script {
  font-family: var(--f-script);
  font-weight: 400;
  font-size: 0.72em;
  line-height: 0.9;
  background: linear-gradient(120deg, #C9A24B 0%, #E66A93 60%, #C7305C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.01em;
  margin-bottom: 0.18em;
  transform: rotate(-2deg);
  transform-origin: left center;
}
.hero__title .line--italic {
  font-style: italic;
  color: var(--blush-800);
  letter-spacing: 0.01em;
}
.hero__title .line .accent {
  background: linear-gradient(120deg, var(--rose) 0%, var(--berry) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-family: var(--f-display);
}

.hero__lede {
  margin-top: var(--s-6);
  max-width: 560px;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: var(--muted);
  line-height: 1.65;
}
.hero__lede strong {
  color: var(--plum);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero__cta {
  display: flex; flex-wrap: wrap; gap: var(--s-3);
  margin-top: var(--s-8);
}
@media (max-width: 520px) {
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
}

.hero__meta {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: var(--s-4) var(--s-5);
  margin-top: var(--s-10);
  padding-top: var(--s-6);
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent 0%, rgba(201,162,75,0.45) 30%, rgba(232,102,147,0.45) 70%, transparent 100%) 1;
}
.hero__meta-item {
  display: flex; flex-direction: column; gap: 4px;
}
.hero__meta-num {
  font-family: var(--f-display);
  font-size: 1.7rem;
  font-weight: 600;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.hero__meta-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
}
.hero__meta-divider {
  width: 1px; height: 28px;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: 0.5;
}

/* -------- hero stage wrapper (stage + sig card) -------- */
.hero__stage-wrap {
  order: 1;
  max-width: 620px;
  margin: 0 auto;
  width: 100%;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 18px;
}
@media (min-width: 920px) {
  .hero__stage-wrap { margin: 0; order: 2; }
}
.hero__stage {
  position: relative;
  aspect-ratio: 1 / 1.05;
  width: 100%;
  /* Berries hang below the rim; letting them escape avoids clipping lowered accents */
  overflow: visible;
}
.hero__plate {
  position: absolute; inset: 4%;
  border-radius: 50% 50% 46% 54% / 60% 60% 40% 40%;
  background: var(--ivory);
  box-shadow:
    var(--shadow-xl),
    inset 0 0 0 1px rgba(255,255,255,0.7),
    0 0 0 6px rgba(255,255,255,0.55),
    0 0 0 7px rgba(201, 162, 75, 0.28);
  overflow: hidden;
  z-index: 1;
  animation: heroFloat 9s var(--ease-out) infinite alternate;
}
@keyframes heroFloat {
  0%   { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-10px) rotate(0.6deg); }
}
.hero__cake {
  position: relative;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__seal {
  position: absolute;
  top: -10px; right: -10px;
  width: 132px; height: 132px;
  background: var(--ivory);
  border-radius: 50%;
  box-shadow: var(--shadow-lg), 0 0 0 2px rgba(201, 162, 75, 0.35);
  z-index: 3;
  display: grid; place-items: center;
}
.hero__seal svg { width: 100%; height: 100%; }
.hero__seal-svg {
  animation: heroSealRotate 30s linear infinite;
  transform-origin: 50% 50%;
}
@keyframes heroSealRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__seal-svg { animation: none !important; }
}
.hero__seal-inner {
  position: absolute; inset: 20px;
  background: var(--grad-gold);
  border-radius: 50%;
  display: grid; place-items: center;
  color: #FFF7E2;
  font-family: var(--f-display);
  font-size: 0.85rem;
  text-align: center;
  line-height: 1;
  box-shadow: inset 0 -8px 20px rgba(0,0,0,0.18), inset 0 8px 18px rgba(255,255,255,0.4);
}
.hero__seal-inner strong {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.02;
  color: #fff;
  text-transform: lowercase;
  text-shadow: 0 2px 4px rgba(110, 85, 32, 0.45);
}
.hero__seal-inner strong br { line-height: 1; }
.hero__seal-inner span { display: none; }
@media (max-width: 520px) {
  .hero__seal { width: 96px; height: 96px; top: -6px; right: -6px; }
  .hero__seal-inner { inset: 14px; }
  .hero__seal-inner strong { font-size: 0.72rem; }
}

/* Signature label — sits naturally below the cake plate */
.hero__sig-card {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF7FA 100%);
  padding: 12px 22px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(201, 162, 75, 0.45);
  max-width: 100%;
  margin-top: -28px;
  position: relative;
  z-index: 5;
}
.hero__sig-ornament {
  display: inline-grid; place-items: center;
  flex: 0 0 auto;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F0D38A 0%, #C9A24B 55%, #8B6F2E 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 14px rgba(168, 132, 47, 0.45), inset 0 1px 0 rgba(255,255,255,0.6);
}
.hero__sig-ornament svg {
  width: 16px; height: 16px;
  fill: #FFFFFF;
}
.hero__sig-text { font-size: 0.78rem; color: var(--muted); line-height: 1.35; }
.hero__sig-text strong {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  color: var(--plum);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
@media (max-width: 520px) {
  .hero__sig-card { padding: 10px 16px; margin-top: -22px; }
  .hero__sig-text strong { font-size: 0.88rem; }
  .hero__sig-text { font-size: 0.7rem; }
  .hero__sig-ornament { width: 28px; height: 28px; }
}

/* real strawberry accents — now true-transparent PNGs */
.hero__berries {
  position: absolute; inset: -6%;
  pointer-events: none; z-index: 70; /* allowed to float over the sticky header */
}
.berry-photo {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 14px 20px rgba(199, 48, 92, 0.28));
  will-change: transform;
}
.berry-photo--1 {
  top: -18%; left: 3%; width: 118px;
  --rot: -14deg; --drift-y: -4px; --drift-x: 8px; --rot-delta: 5deg;
  animation: berryFloat 7.5s ease-in-out infinite alternate;
}
.berry-photo--2 {
  top: -21%; right: 14%; width: 134px;
  --rot: 20deg; --drift-y: -4px; --drift-x: -8px; --rot-delta: -5deg;
  animation: berryFloat 9s ease-in-out infinite alternate-reverse;
  animation-delay: -1.2s;
}
.berry-photo--3 {
  bottom: -26%; left: 2%; width: 124px;
  --rot: 8deg; --drift-y: -16px; --drift-x: -10px; --rot-delta: 6deg;
  animation: berryFloat 8.5s ease-in-out infinite alternate;
  animation-delay: -2.4s;
}
.berry-photo--4 {
  bottom: -32%; right: 6%; width: 146px;
  --rot: -16deg; --drift-y: -24px; --drift-x: 8px; --rot-delta: -4deg;
  animation: berryFloat 10s ease-in-out infinite alternate-reverse;
  animation-delay: -0.6s;
}
@keyframes berryFloat {
  0%   { transform: translate(0, 0) rotate(var(--rot, 0deg)); }
  50%  { transform: translate(calc(var(--drift-x, 0px) * 0.5), calc(var(--drift-y, -8px) * 0.6)) rotate(calc(var(--rot, 0deg) + var(--rot-delta, 2deg) * 0.5)); }
  100% { transform: translate(var(--drift-x, 0px), var(--drift-y, -10px)) rotate(calc(var(--rot, 0deg) + var(--rot-delta, 2deg))); }
}
@media (prefers-reduced-motion: reduce) {
  .berry-photo { animation: none !important; transform: rotate(var(--rot, 0deg)) !important; }
}
@media (max-width: 768px) {
  /* berry-1: top-left, slightly bigger */
  .berry-photo--1 { width: 102px; top: -22%; left: 1%; }
  /* berry-2: pushed up + right; allowed to float over the sticky header */
  .berry-photo--2 { width: 104px; top: -56%; right: 2%; }
  /* berries 3/4: land squarely on Brittney's bakery card */
  /* berry-3 raised slightly so its float-up animation no longer touches "Every" */
  .berry-photo--3 { width: 122px; bottom: -48%; left: 3%; }
  .berry-photo--4 { width: 134px; bottom: -68%; right: 4%; }
}

/* Mobile: hero chocolate fills the gap; eyebrow spaced + visible under berry rain */
@media (max-width: 768px) {
  .hero.hero--luxe {
    padding: clamp(2px, 1.2vw, 10px) 0 clamp(40px, 10vw, 64px);
  }
  .hero.hero--luxe > .container {
    width: min(100% - 16px, var(--container));
  }
  .hero.hero--luxe .hero__inner {
    gap: var(--s-2);
    align-items: center;
  }
  .hero.hero--luxe .hero__stage-wrap {
    gap: 0 !important;
    margin-top: 0 !important;
    max-width: min(760px, 100vw);
    width: 100%;
    /* NO transform here — would create a stacking context that traps the berries
       behind .hero__copy. Without it, .hero__berries z-index: 70 wins. */
    position: relative;
    padding-bottom: 18px;
    overflow: visible;
  }
  .hero.hero--luxe .hero__stage {
    aspect-ratio: 1 / 0.94 !important;
    margin-inline: auto;
    overflow: visible !important;
  }
  /* Cake fills the oval edge-to-edge on mobile */
  .hero.hero--luxe .hero__plate {
    inset: -2% 2% 4% 2% !important;
  }
  .hero.hero--luxe .hero__cake {
    object-position: center 42%;
  }
  /* "The Chocolate Cake" pill — slightly smaller, still kissed to cake bottom */
  .hero.hero--luxe .hero__sig-card {
    margin-top: clamp(-70px, -12vw, -50px) !important;
    align-self: center;
    transform: translateY(0);
    gap: 12px !important;
    padding: 12px 20px !important;
    z-index: 8 !important;
    box-shadow: 0 18px 36px -22px rgba(155, 44, 94, 0.5), inset 0 0 0 1px rgba(201, 162, 75, 0.5) !important;
  }
  .hero.hero--luxe .hero__sig-ornament {
    width: clamp(34px, 7.5vw, 42px) !important;
    height: clamp(34px, 7.5vw, 42px) !important;
  }
  .hero.hero--luxe .hero__sig-ornament svg {
    width: 18px !important; height: 18px !important;
  }
  .hero.hero--luxe .hero__sig-text strong {
    font-size: clamp(0.94rem, 3.6vw, 1.12rem) !important;
  }
  .hero.hero--luxe .hero__sig-text {
    font-size: clamp(0.72rem, 2.4vw, 0.84rem) !important;
    line-height: 1.32 !important;
  }
  .hero.hero--luxe .hero__copy {
    margin-top: clamp(-4px, 0.5vw, 6px) !important;
    padding-inline: min(16px, 3vw);
    position: relative;
    z-index: 1; /* berries above this */
  }
  .hero.hero--luxe .hero__copy .hero__eyebrow {
    margin-top: 0 !important;
    align-self: center;
    max-width: min(100%, 30rem);
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 12px 16px !important;
    padding: 18px 26px !important;
    font-size: clamp(0.72rem, 3vw, 0.88rem) !important;
    letter-spacing: 0.22em !important;
    line-height: 1.25 !important;
    box-shadow: 0 14px 34px -16px rgba(155, 44, 94, 0.45), inset 0 0 0 1px rgba(201, 162, 75, 0.35) !important;
    position: relative;
    z-index: 1;
  }
  .hero.hero--luxe .hero__copy .hero__rule {
    width: min(38px, 11vw) !important;
  }
  .hero.hero--luxe .hero__copy .hero__title {
    margin-top: var(--s-2) !important;
    font-size: clamp(3.6rem, 15vw, 5rem) !important;
    line-height: 0.9 !important;
  }
  .hero.hero--luxe .hero__copy .hero__title .line--script {
    margin-bottom: 0.04em !important;
    font-size: 0.82em !important;
  }
  .hero.hero--luxe .hero__lede {
    margin-top: var(--s-4) !important;
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
  }
  .hero.hero--luxe .hero__carousel {
    margin-top: var(--s-4) !important;
  }
  .hero.hero--luxe .hero__cta {
    margin-top: var(--s-5) !important;
  }
  .hero.hero--luxe .hero__meta {
    margin-top: var(--s-6) !important;
    padding-top: var(--s-4) !important;
  }
}

@media (max-width: 576px) {
  .hero.hero--luxe .hero__stage-wrap {
    max-width: min(740px, 100vw);
    padding-bottom: 22px !important;
  }
  .hero.hero--luxe .hero__plate {
    inset: 2% 4% 8% 4% !important;
  }
  .hero.hero--luxe .hero__cake {
    object-position: center 38%;
  }
  .hero.hero--luxe .hero__sig-card {
    margin-top: clamp(-78px, -14vw, -56px) !important;
  }
  .hero.hero--luxe .hero__copy {
    margin-top: clamp(-6px, 0.5vw, 6px) !important;
  }
  .hero.hero--luxe .hero__copy .hero__eyebrow {
    padding: 16px 22px !important;
    font-size: clamp(0.68rem, 3vw, 0.82rem) !important;
  }
  .hero.hero--luxe .hero__copy .hero__title {
    font-size: clamp(3.3rem, 15.5vw, 4.6rem) !important;
    line-height: 0.88 !important;
  }
}

/* =====================================================================
   HERO PRODUCT CAROUSEL — auto fade through cakes, pies, cupcakes
   ===================================================================== */
.hero__carousel {
  margin-top: var(--s-8);
  position: relative;
  border-radius: var(--r-lg);
  padding: 4px;
  background: linear-gradient(135deg, rgba(255,255,255,0.85) 0%, rgba(255,239,244,0.85) 100%);
  box-shadow: 0 28px 60px -24px rgba(155, 44, 94, 0.35), inset 0 0 0 1px rgba(201, 162, 75, 0.3);
  overflow: hidden;
}
.hero__carousel::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--r-lg);
  padding: 1px;
  background: var(--grad-pinkgold);
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
          mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.hero__carousel-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: calc(var(--r-lg) - 4px);
  overflow: hidden;
  background: var(--blush-50);
}
.hero__slide {
  position: absolute; inset: 0;
  margin: 0;
  opacity: 0;
  animation: heroCarousel 20s linear infinite;
  display: block;
  will-change: opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.hero__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  animation: heroSlideZoom 20s linear infinite;
  transform-origin: center center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
@keyframes heroSlideZoom {
  0%   { transform: scale(1.02); }
  25%  { transform: scale(1.06); }
  100% { transform: scale(1.06); }
}
.hero__slide figcaption {
  position: absolute;
  left: 18px; bottom: 16px;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px -8px rgba(155, 44, 94, 0.3);
  font-size: 0.85rem;
  color: var(--plum);
  display: flex; flex-direction: column; gap: 2px;
}
.hero__slide-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 2px 8px;
  border-radius: var(--r-pill);
  background: var(--grad-gold);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.hero__slide figcaption strong {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.hero__slide figcaption em {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--blush-700);
  font-weight: 600;
  letter-spacing: 0.05em;
}
/* 5 slides × 4s spacing = 20s cycle.
   Each slide: 1s fade-in (0–5%), 3s full (5–20%), 1s fade-out (20–25%), hidden (25–100%).
   Slide N+1's fade-in (0–5%) aligns EXACTLY with slide N's fade-out (20–25%),
   so the linear opacity sum stays at 1.0 throughout — no flash, no glitch. */
.hero__slide--1, .hero__slide--1 img { animation-delay: 0s; }
.hero__slide--2, .hero__slide--2 img { animation-delay: 4s; }
.hero__slide--3, .hero__slide--3 img { animation-delay: 8s; }
.hero__slide--4, .hero__slide--4 img { animation-delay: 12s; }
.hero__slide--5, .hero__slide--5 img { animation-delay: 16s; }
@keyframes heroCarousel {
  0%   { opacity: 0; }
  5%   { opacity: 1; }
  20%  { opacity: 1; }
  25%  { opacity: 0; }
  100% { opacity: 0; }
}

.hero__carousel-dots {
  position: absolute;
  bottom: 14px; right: 16px;
  display: flex; gap: 6px;
  z-index: 2;
}
.hero__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(201, 162, 75, 0.45);
  animation: heroDot 20s linear infinite;
}
.hero__dot--1 { animation-delay: 0s; }
.hero__dot--2 { animation-delay: 4s; }
.hero__dot--3 { animation-delay: 8s; }
.hero__dot--4 { animation-delay: 12s; }
.hero__dot--5 { animation-delay: 16s; }
@keyframes heroDot {
  0%   { background: rgba(255, 255, 255, 0.55); transform: scale(1); }
  5%   { background: var(--gold); transform: scale(1.4); }
  20%  { background: var(--gold); transform: scale(1.4); }
  25%  { background: rgba(255, 255, 255, 0.55); transform: scale(1); }
  100% { background: rgba(255, 255, 255, 0.55); transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide, .hero__slide img, .hero__dot, .hero__glow, .hero__plate, .berry-photo, .hero__seal-svg { animation: none !important; }
  .hero__slide--1 { opacity: 1; }
}

/* -------- gold ghost button -------- */
.btn--gold {
  background: rgba(255, 255, 255, 0.65);
  color: var(--gold-900);
  border: 1.5px solid transparent;
  background-image:
    linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,0.85)),
    var(--grad-gold);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  letter-spacing: 0.08em;
  position: relative;
}
.btn--gold:hover {
  background-image:
    var(--grad-gold),
    var(--grad-gold);
  color: #FFFDF4;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -8px rgba(168, 132, 47, 0.55);
}

/* ==========================================================================
   SECTION SHELL
   ========================================================================== */
.section { padding: clamp(60px, 8vw, 120px) 0; position: relative; }
.section--cream { background: var(--grad-cream); }
.section--blush { background: linear-gradient(180deg, var(--blush-100) 0%, var(--blush-50) 100%); }
.section--dark  {
  background: linear-gradient(135deg, var(--blush-900) 0%, var(--berry) 100%);
  color: var(--cream);
}
.section--dark h2 { color: var(--ivory); }
.section--dark p { color: rgba(255, 247, 242, 0.85); }

.section__head {
  text-align: center;
  margin-bottom: var(--s-12);
  display: flex; flex-direction: column; align-items: center; gap: var(--s-4);
}
.section__eyebrow {
  font-family: var(--f-script);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--blush-700);
  line-height: 1;
}
.section__title {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  max-width: 22ch;
}
.section__title em { font-style: italic; color: var(--blush-700); }
.section__lede {
  max-width: 56ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.08rem);
}
.section__divider {
  display: inline-flex; align-items: center; gap: var(--s-3);
  color: var(--blush-600);
  font-size: 0.8rem; letter-spacing: 0.3em; text-transform: uppercase;
  font-weight: 600;
}
.section__divider::before, .section__divider::after {
  content: '';
  width: 36px; height: 1px; background: currentColor; opacity: 0.4;
}

/* ==========================================================================
   FEATURED CATEGORIES
   ========================================================================== */
.cats-grid {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
/* Editorial bakery cards — Marcie-inspired, with per-category flair:
   soft blush surface, gold hairline, category color strip, animated icon. */
.cats-grid { overflow: visible; }

.cat-card {
  --cat-accent-1: #E94B83;
  --cat-accent-2: #C9A24B;
  --cat-tile-color: #FFE0EA;
  position: relative;
  display: block;
  padding: clamp(34px, 4.5vw, 46px) clamp(22px, 3vw, 32px) clamp(80px, 9vw, 110px);
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(248, 230, 211, 0.6) 0%, transparent 55%),
    linear-gradient(180deg, #FFFCFB 0%, #FFF1F6 100%);
  border-radius: 22px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 22px 40px -28px rgba(155, 44, 94, 0.28),
    0 2px 0 rgba(201, 162, 75, 0.0);
  outline: 1px solid rgba(201, 162, 75, 0.28);
  outline-offset: -1px;
  overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), outline-color .35s var(--ease-out);
}

/* Category accent gradient strip running across the top */
.cat-card {
  background-image:
    linear-gradient(90deg, var(--cat-accent-1) 0%, var(--cat-accent-2) 100%),
    radial-gradient(120% 80% at 100% 0%, rgba(248, 230, 211, 0.6) 0%, transparent 55%),
    linear-gradient(180deg, #FFFCFB 0%, #FFF1F6 100%);
  background-size: 100% 4px, 100% 100%, 100% 100%;
  background-repeat: no-repeat;
  background-position: 0 0, 0 0, 0 0;
}

/* Per-category palettes */
.cat-card[data-cat="cakes"]    { --cat-accent-1: #E94B83; --cat-accent-2: #FFC8D9; --cat-tile-color: rgba(233, 75, 131, 0.10); }
.cat-card[data-cat="pies"]     { --cat-accent-1: #C9A24B; --cat-accent-2: #F0D38A; --cat-tile-color: rgba(201, 162, 75, 0.10); }
.cat-card[data-cat="cookies"]  { --cat-accent-1: #A8842F; --cat-accent-2: #E8CB85; --cat-tile-color: rgba(168, 132, 47, 0.12); }
.cat-card[data-cat="cupcakes"] { --cat-accent-1: #F583A5; --cat-accent-2: #FFE0EA; --cat-tile-color: rgba(245, 131, 165, 0.10); }
.cat-card[data-cat="puddings"] { --cat-accent-1: #8B6F2E; --cat-accent-2: #FAEFC9; --cat-tile-color: rgba(139, 111, 46, 0.12); }

/* Subtle gold hairline frame inside the card edge */
.cat-card::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 16px;
  border: 1px solid rgba(201, 162, 75, 0.22);
  pointer-events: none;
  transition: border-color .35s var(--ease-out);
}

/* Decorative editorial bloom — pinned top-right, takes the category tint */
.cat-card::after {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--cat-tile-color) 0%, rgba(248, 230, 211, 0.35) 45%, transparent 70%);
  pointer-events: none;
  transform: translate(0, 0) scale(1);
  transition: transform .6s var(--ease-out), opacity .35s var(--ease-out);
  opacity: 0.95;
}

/* Per-category corner flourish: bigger and animated. */
.cat-card .cat-card__flourish {
  position: absolute;
  right: 20px;
  bottom: 16px;
  width: clamp(92px, 13vw, 132px);
  height: clamp(92px, 13vw, 132px);
  opacity: 0.7;
  pointer-events: none;
  filter: drop-shadow(0 8px 18px rgba(155, 44, 94, 0.22));
  transform: translateY(0) rotate(0deg);
  transition: transform .6s var(--ease-out), opacity .35s var(--ease-out), filter .35s var(--ease-out);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  animation: catFloat 5.5s ease-in-out infinite alternate;
}
.cat-card:hover .cat-card__flourish {
  opacity: 1;
  filter: drop-shadow(0 10px 22px rgba(155, 44, 94, 0.35));
  transform: translateY(-6px) rotate(-5deg) scale(1.04);
}
@keyframes catFloat {
  0%   { transform: translateY(0)   rotate(0deg); }
  100% { transform: translateY(-6px) rotate(-3deg); }
}

/* Tiny sparkle accents around the flourish (CSS-only) */
.cat-card .cat-card__flourish::before,
.cat-card .cat-card__flourish::after {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--cat-accent-1) 0%, transparent 70%);
  opacity: 0.65;
  animation: catSparkle 2.6s ease-in-out infinite;
}
.cat-card .cat-card__flourish::before { top: 10%; left: -6%; animation-delay: 0.4s; }
.cat-card .cat-card__flourish::after  { top: 70%; left: -2%; width: 4px; height: 4px; animation-delay: 1.2s; }
@keyframes catSparkle {
  0%, 100% { opacity: 0.25; transform: scale(0.6); }
  50%      { opacity: 0.85; transform: scale(1.2); }
}

@media (prefers-reduced-motion: reduce) {
  .cat-card .cat-card__flourish,
  .cat-card .cat-card__flourish::before,
  .cat-card .cat-card__flourish::after {
    animation: none;
  }
}

/* CAKES — tiered cake silhouette */
.cat-card[data-cat="cakes"] .cat-card__flourish {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23C9A24B' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M16 50h32M14 50c0-2 1.5-3 3-3h30c1.5 0 3 1 3 3'/><rect x='13' y='38' width='38' height='10' rx='2'/><rect x='20' y='26' width='24' height='12' rx='2'/><rect x='26' y='16' width='12' height='10' rx='2'/><path d='M32 8v6'/><circle cx='32' cy='6' r='1.4' fill='%23C9A24B'/><path d='M19 38c2-2 4-2 6 0s4 2 6 0 4-2 6 0 4 2 6 0'/><path d='M24 26c1.5-1.5 3-1.5 4.5 0s3 1.5 4.5 0 3-1.5 4.5 0'/></svg>");
}

/* PIES — pie wedge with steam */
.cat-card[data-cat="pies"] .cat-card__flourish {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23C9A24B' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><circle cx='32' cy='38' r='18'/><path d='M14 38h36'/><path d='M32 20l8 18H24z' fill='%23F8E6D3' fill-opacity='0.55'/><path d='M22 30l20 0M22 34l20 0M22 38l20 0' opacity='0.55'/><path d='M22 12c2-1.5 4-1.5 6 0M30 10c2-1.5 4-1.5 6 0M38 12c2-1.5 4-1.5 6 0'/></svg>");
}

/* COOKIES — round cookie with chips */
.cat-card[data-cat="cookies"] .cat-card__flourish {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23C9A24B' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><circle cx='32' cy='32' r='20'/><path d='M28 22l-2 3M44 26l-3 2M22 36l-2 3M38 40l3 1M30 44l-2-1' opacity='0.6'/><circle cx='25' cy='28' r='2.4' fill='%23C9A24B'/><circle cx='38' cy='25' r='2' fill='%23C9A24B'/><circle cx='36' cy='38' r='2.6' fill='%23C9A24B'/><circle cx='24' cy='40' r='1.8' fill='%23C9A24B'/></svg>");
}

/* CUPCAKES — liner + frosting swirl */
.cat-card[data-cat="cupcakes"] .cat-card__flourish {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23C9A24B' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M18 36l4 18a3 3 0 0 0 3 2h14a3 3 0 0 0 3-2l4-18z' fill='%23F8E6D3' fill-opacity='0.6'/><path d='M22 36v18M28 36v18M36 36v18M42 36v18' opacity='0.45'/><path d='M16 36h32'/><path d='M20 36c0-8 5-14 12-14s12 6 12 14'/><path d='M24 30c2-4 5-6 8-6s6 2 8 6'/><path d='M32 14v6'/><circle cx='32' cy='12' r='1.6' fill='%23C9A24B'/></svg>");
}

/* PUDDINGS & COBBLERS — bowl with steam */
.cat-card[data-cat="puddings"] .cat-card__flourish {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23C9A24B' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M12 34h40c0 10-9 18-20 18S12 44 12 34z' fill='%23F8E6D3' fill-opacity='0.55'/><path d='M10 34h44'/><path d='M22 34c2-3 6-3 8 0M34 34c2-3 6-3 8 0' opacity='0.55'/><path d='M22 18c2-2 2-4 0-6M30 18c2-2 2-4 0-6M38 18c2-2 2-4 0-6'/></svg>");
}

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 32px 56px -28px rgba(155, 44, 94, 0.4);
  outline-color: rgba(201, 162, 75, 0.6);
}
.cat-card:hover::before { border-color: rgba(201, 162, 75, 0.5); }
.cat-card:hover::after  { transform: translate(-10px, 10px) scale(1.06); opacity: 1; }

/* Underline that draws under the title on hover */
.cat-card .cat-card__title {
  position: relative;
  display: inline-block;
}
.cat-card .cat-card__title::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: -6px;
  height: 2px;
  background: var(--grad-gold);
  border-radius: 2px;
  transition: right .45s var(--ease-out);
}
.cat-card:hover .cat-card__title::after { right: 0; }

@media (prefers-reduced-motion: reduce) {
  .cat-card, .cat-card::after, .cat-card .cat-card__title::after { transition: none; }
}
.cat-card__num {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-display);
  color: transparent;
  background: var(--grad-gold);
  -webkit-background-clip: text;
          background-clip: text;
  font-size: 0.78rem;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.cat-card__num::before {
  content: '';
  width: 22px; height: 1px;
  background: var(--grad-gold);
}
.cat-card__title {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.7rem, 3.2vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.005em;
  margin-top: var(--s-3);
  color: var(--plum);
}
.cat-card__blurb {
  margin-top: var(--s-3);
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.cat-card__arrow {
  margin-top: var(--s-5);
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-weight: 600;
  color: var(--blush-800);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  position: relative;
}
.cat-card__arrow svg { width: 16px; height: 16px; transition: transform .25s var(--ease-out); }
.cat-card:hover .cat-card__arrow svg { transform: translateX(4px); }
/* Category icon BEFORE "Explore" */
.cat-card__arrow::before {
  content: '';
  width: 22px; height: 22px;
  margin-right: 4px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex: 0 0 auto;
  transition: transform .35s var(--ease-out);
}
.cat-card:hover .cat-card__arrow::before { transform: rotate(-8deg) scale(1.08); }
/* CAKES — mini tiered cake */
.cat-card[data-cat="cakes"] .cat-card__arrow::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='%239B2C5E' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><rect x='5' y='20' width='22' height='6' rx='1.4'/><rect x='9' y='14' width='14' height='6' rx='1.2'/><rect x='13' y='9' width='6' height='5' rx='1'/><path d='M16 5v3'/><circle cx='16' cy='4' r='1' fill='%239B2C5E'/></svg>");
}
/* PIES — fresh-baked slice (side view) with fluted crust + steam */
.cat-card[data-cat="pies"] .cat-card__arrow::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='%23A8842F' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M4.5 21 Q4.5 26 9.5 26 L22.5 26 Q27.5 26 27.5 21 Z' fill='%23E8C77A' fill-opacity='0.55'/><path d='M5 21 Q6 17 9 16 Q11 13 14 14.5 Q16 10 19 13.5 Q22 13 24 16 Q27 17 27 21' fill='%23F0D38A' fill-opacity='0.85'/><path d='M5 21 L27 21'/><path d='M12 9 q-1 -2 1 -4'/><path d='M20 9 q-1 -2 1 -4'/></svg>");
}
/* COOKIES — mini chip cookie */
.cat-card[data-cat="cookies"] .cat-card__arrow::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='%23A8842F' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><circle cx='16' cy='16' r='11'/><circle cx='12' cy='13' r='1.5' fill='%23A8842F'/><circle cx='20' cy='13' r='1.2' fill='%23A8842F'/><circle cx='18' cy='20' r='1.6' fill='%23A8842F'/><circle cx='11' cy='19' r='1' fill='%23A8842F'/></svg>");
}
/* CUPCAKES — mini cupcake */
.cat-card[data-cat="cupcakes"] .cat-card__arrow::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='%23C84B79' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M9 18l2 9a1.5 1.5 0 0 0 1.5 1.2h7A1.5 1.5 0 0 0 21 27l2-9z' fill='%23FFE0EA' fill-opacity='0.85'/><path d='M8 18h16'/><path d='M10 18c0-4 2.5-7 6-7s6 3 6 7'/><path d='M12 14c1-2 3-3 4-3s3 1 4 3'/></svg>");
}
/* PUDDINGS — mini bowl */
.cat-card[data-cat="puddings"] .cat-card__arrow::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='%238B6F2E' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M5 17h22c0 6-5 10-11 10S5 23 5 17z' fill='%23FAEFC9' fill-opacity='0.75'/><path d='M4 17h24'/><path d='M11 9c1-1 1-2 0-3M16 9c1-1 1-2 0-3M21 9c1-1 1-2 0-3'/></svg>");
}

/* ==========================================================================
   PRODUCT GRID + CARD
   ========================================================================== */
.product-grid {
  display: grid;
  gap: var(--s-6);
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
@media (min-width: 640px) {
  .product-grid { gap: var(--s-8); grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
}

.product-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--ivory);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
  border: 1px solid rgba(232, 102, 147, 0.08);
  /* Skip rendering offscreen cards until they scroll into view */
  content-visibility: auto;
  contain-intrinsic-size: 360px 600px;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card__img {
  /* Crisp downscale on retina without losing color */
  image-rendering: -webkit-optimize-contrast;
}

.product-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--ivory);
  overflow: hidden;
}
.product-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.product-card:hover .product-card__img { transform: scale(1.05); }

.product-card__tag {
  position: absolute; top: var(--s-3); left: var(--s-3);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  color: var(--blush-800);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  z-index: 1;
}
.product-card__featured {
  position: absolute; top: var(--s-3); right: var(--s-3);
  background: var(--grad-pink);
  color: white;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: var(--r-pill);
  z-index: 1;
  box-shadow: 0 6px 14px rgba(233, 75, 131, 0.4);
}

.product-card__body {
  padding: var(--s-5) var(--s-5) var(--s-6);
  display: flex; flex-direction: column; gap: var(--s-3);
}
.product-card__title {
  font-size: 1.5rem;
  line-height: 1.1;
}
.product-card__title a { color: inherit; }
.product-card__desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-3);
  margin-top: var(--s-2);
}
.product-card__price {
  display: flex; align-items: baseline; gap: 4px;
}
.product-card__price .amount {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--plum);
}
.product-card__price .currency {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blush-700);
  letter-spacing: 0.1em;
}
.product-card__price .unit {
  font-size: 0.78rem;
  color: var(--muted);
  margin-left: 6px;
}

.product-card__add {
  width: 42px; height: 42px;
  background: var(--blush-100);
  color: var(--blush-800);
  border-radius: var(--r-pill);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s var(--ease-out), color .2s var(--ease-out), transform .2s var(--ease-out);
}
.product-card__add:hover { background: var(--grad-pink); color: white; transform: rotate(90deg); }
.product-card__add svg { width: 18px; height: 18px; }

/* filter bar */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: center;
  margin-bottom: var(--s-10);
}
.filter-chip {
  padding: 10px 20px;
  border-radius: var(--r-pill);
  background: var(--ivory);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid rgba(232, 102, 147, 0.18);
  transition: all .2s var(--ease-out);
}
.filter-chip:hover { background: var(--blush-100); border-color: var(--blush-400); }
.filter-chip[aria-pressed="true"] {
  background: var(--grad-pink);
  color: white;
  border-color: transparent;
  box-shadow: 0 8px 20px -6px rgba(233, 75, 131, 0.45);
}

/* ==========================================================================
   STORY (about Brittney teaser)
   ========================================================================== */
.story {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-12);
  align-items: center;
}
@media (min-width: 920px) {
  .story { grid-template-columns: 1fr 1.1fr; gap: var(--s-16); }
}
.story__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--grad-hero);
  box-shadow: var(--shadow-xl);
}
.story__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.story__media::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(155, 44, 94, 0.25) 100%);
  z-index: 1;
}
.story__signature {
  position: absolute;
  bottom: var(--s-5); left: var(--s-5);
  z-index: 2;
  font-family: var(--f-script);
  color: white;
  font-size: 2.2rem;
  line-height: 1;
  text-shadow: 0 4px 14px rgba(0,0,0,0.3);
}
.story__monogram {
  position: absolute;
  top: -32px; right: -32px;
  width: 140px; height: 140px;
  background: var(--ivory);
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}
.story__quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  line-height: 1.3;
  color: var(--plum);
}
.story__quote::before {
  content: '“';
  display: block;
  font-size: 4rem;
  color: var(--blush-400);
  line-height: 0.4;
  margin-bottom: var(--s-3);
}
.story__body {
  margin-top: var(--s-5);
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 56ch;
}
.story__sign {
  display: flex; align-items: center; gap: var(--s-3);
  margin-top: var(--s-6);
  font-family: var(--f-script);
  font-size: 2rem;
  color: var(--blush-800);
}
.story__sign small {
  font-family: var(--f-body);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ==========================================================================
   PICKUP / DELIVERY HIGHLIGHT
   ========================================================================== */
.pickup-grid {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .pickup-grid { grid-template-columns: repeat(2, 1fr); } }
.pickup-card {
  position: relative;
  padding: var(--s-8) var(--s-6);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-lg);
  color: var(--ivory);
  overflow: hidden;
}
.pickup-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.18);
  display: grid; place-items: center;
  color: var(--ivory);
  margin-bottom: var(--s-5);
}
.pickup-card__icon svg { width: 26px; height: 26px; }
.pickup-card__title {
  font-size: 1.7rem;
  color: var(--ivory);
  margin-bottom: var(--s-3);
}
.pickup-card__body { line-height: 1.6; opacity: 0.92; }

/* ==========================================================================
   INSTAGRAM TEASER
   ========================================================================== */
.insta {
  display: flex; flex-direction: column; align-items: center; gap: var(--s-8);
  text-align: center;
}
.insta__strip {
  display: grid;
  gap: var(--s-3);
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}
@media (min-width: 720px) { .insta__strip { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1100px) { .insta__strip { grid-template-columns: repeat(6, 1fr); } }

.insta__tile {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--grad-cream);
  box-shadow: var(--shadow-sm);
  display: block;
  transition: transform .3s var(--ease-out);
  content-visibility: auto;
  contain-intrinsic-size: 200px 200px;
}
.insta__tile:hover { transform: scale(1.03); }
.insta__tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.insta__tile:hover img { transform: scale(1.08); }
.insta__tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(233, 75, 131, 0.0), rgba(155, 44, 94, 0.45));
  opacity: 0; transition: opacity .25s var(--ease-out);
}
.insta__tile:hover::after { opacity: 1; }
.insta__tile-icon {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: white;
  opacity: 0; transition: opacity .25s var(--ease-out);
  z-index: 1;
}
.insta__tile:hover .insta__tile-icon { opacity: 1; }
.insta__tile-icon svg { width: 32px; height: 32px; }

/* ==========================================================================
   HOME — TESTIMONIALS
   ========================================================================== */
.testimonials-home__head { max-width: 56ch; margin-inline: auto; text-align: center; margin-bottom: var(--s-10); }
.testimonials-home__lede { max-width: 48ch; margin-inline: auto; }
.testimonials-home__grid {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .testimonials-home__grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-6); }
}
@media (min-width: 576px) and (max-width: 899px) {
  .testimonials-home__grid { grid-template-columns: repeat(2, 1fr); }
}

.testimonial-card {
  position: relative;
  background: var(--ivory);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  padding-top: calc(var(--s-6) + var(--s-5));
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(200, 75, 121, 0.12);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.testimonial-card::before {
  content: '\201c';
  position: absolute;
  top: var(--s-3);
  left: var(--s-5);
  font-family: var(--f-display);
  font-size: 3rem;
  line-height: 1;
  font-weight: 600;
  color: transparent;
  background: var(--grad-gold-soft);
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0.85;
  pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card__quote {
  margin: 0;
  padding: 0;
  border: 0;
}
.testimonial-card__quote p {
  margin: 0;
  font-family: var(--f-body);
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink);
}

.testimonial-card__foot {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  margin-top: var(--s-5);
  padding-top: var(--s-4);
  border-top: 1px solid var(--blush-200);
}
.testimonial-card__avatar {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--blush-800);
  background: linear-gradient(145deg, var(--blush-100), var(--blush-300));
  box-shadow: var(--shadow-sm);
}
.testimonial-card__avatar--warm {
  background: linear-gradient(145deg, var(--champagne), var(--blush-200));
  color: var(--blush-900);
}
.testimonial-card__avatar--gold {
  background: var(--grad-gold-soft);
  color: var(--gold-900);
}
.testimonial-card__name {
  display: block;
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 600;
  font-style: normal;
  color: var(--blush-800);
}
.testimonial-card__meta {
  display: block;
  margin-top: 2px;
  font-size: 0.82rem;
  color: var(--muted);
}

.testimonials-home__extras {
  margin-top: var(--s-6);
}
.testimonials-home__extras[hidden] {
  display: none !important;
}
.testimonials-home__grid--more {
  margin-top: 0;
}
@media (min-width: 576px) {
  .testimonials-home__grid--more { grid-template-columns: repeat(2, 1fr); max-width: 840px; margin-inline: auto; }
}

.testimonials-home__actions {
  display: flex;
  justify-content: center;
  margin-top: var(--s-8);
}
.testimonials-home__toggle.btn--soft {
  min-width: 11rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  background: var(--grad-pink);
  border-radius: var(--r-xl);
  padding: clamp(48px, 6vw, 80px) clamp(28px, 5vw, 64px);
  color: white;
  display: grid; grid-template-columns: 1fr; gap: var(--s-6);
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
@media (min-width: 920px) { .cta-banner { grid-template-columns: 1.4fr 1fr; gap: var(--s-12); } }
.cta-banner h2 { color: white; font-size: clamp(1.8rem, 3.6vw, 2.8rem); line-height: 1.1; }
.cta-banner p { opacity: 0.92; margin-top: var(--s-3); }
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: var(--s-3); }
.cta-banner__actions .btn--primary { background: white; color: var(--blush-800); box-shadow: var(--shadow-md); }
.cta-banner__actions .btn--primary:hover { background: var(--cream); }
.cta-banner__actions .btn--ghost { color: white; border-color: rgba(255,255,255,0.4); }
.cta-banner__actions .btn--ghost:hover { background: white; color: var(--blush-800); border-color: white; }
.cta-banner::before, .cta-banner::after {
  content: '';
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.cta-banner::before { width: 280px; height: 280px; top: -120px; right: -80px; }
.cta-banner::after  { width: 200px; height: 200px; bottom: -80px; left: -40px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: linear-gradient(180deg, var(--blush-50) 0%, var(--blush-100) 100%);
  border-top: 1px solid rgba(232, 102, 147, 0.12);
  padding-block: var(--s-12) var(--s-8);
  margin-top: var(--s-16);
}
.footer-grid {
  display: grid;
  gap: var(--s-10);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-brand {
  display: flex; flex-direction: column; gap: var(--s-3);
}
.footer-brand p {
  color: var(--muted); font-size: 0.92rem; max-width: 40ch;
}
.footer-col h4 {
  font-family: var(--f-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--blush-800);
  margin-bottom: var(--s-4);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--s-2); }
.footer-col a { color: var(--ink); transition: color .2s; }
.footer-col a:hover { color: var(--blush-700); }
.footer-bottom {
  margin-top: var(--s-10);
  padding-top: var(--s-6);
  border-top: 1px solid rgba(232, 102, 147, 0.12);
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: var(--s-3);
  color: var(--muted); font-size: 0.85rem;
}
/* "Created by Avery" credit — EXACT match to cakesbymarcie.com */
.footer-credit {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 10px;
  color: #9a8792;
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.07em;
  text-transform: none;
  opacity: 0.95;
}
.footer-credit__preface {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-style: italic;
  color: #876e7a;
}
.footer-credit__instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8134af;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 10px;
  transition: color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.footer-credit__instagram svg {
  width: 22px; height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  transition: color .18s ease, transform .18s ease;
}
.footer-credit__instagram:hover,
.footer-credit__instagram:focus-visible {
  color: #fff;
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(129, 52, 175, 0.35);
}
.footer-credit__instagram:hover svg,
.footer-credit__instagram:focus-visible svg {
  color: #fff;
  transform: scale(1.06);
}
.footer-credit__avery {
  font-size: 15px;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 0.04em;
  color: #d43b6b;
  text-decoration: none;
  padding: 3px 8px;
  border-radius: 8px;
  border-bottom: 2px solid rgba(212, 59, 107, 0.35);
  transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}
.footer-credit__avery:hover,
.footer-credit__avery:focus-visible {
  color: #fff;
  background: #d43b6b;
  border-color: transparent;
  outline: none;
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .footer-bottom { justify-content: center; text-align: center; gap: var(--s-2) var(--s-4); }
  .footer-credit { width: 100%; justify-content: center; margin-top: var(--s-2); }
}
.footer-social {
  display: inline-flex; align-items: center; gap: var(--s-2);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: white;
  color: var(--blush-800);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease-out);
}
.footer-social:hover { transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }

/* ==========================================================================
   PRODUCT DETAIL PAGE
   ========================================================================== */
.pd {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-10);
  align-items: start;
}
@media (min-width: 920px) { .pd { grid-template-columns: 1.1fr 1fr; gap: var(--s-16); } }

.pd__gallery {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--grad-cream);
  aspect-ratio: 1 / 1.1;
  box-shadow: var(--shadow-lg);
}
.pd__gallery img { width: 100%; height: 100%; object-fit: cover; }
.pd__gallery::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255, 232, 240, 0.0) 60%, rgba(255, 232, 240, 0.55) 100%);
  pointer-events: none;
}

.pd__crumb {
  display: flex; align-items: center; gap: var(--s-2);
  color: var(--muted); font-size: 0.85rem;
  margin-bottom: var(--s-4);
}
.pd__crumb a:hover { color: var(--blush-700); }

.pd__category {
  font-family: var(--f-script);
  font-size: 1.8rem;
  color: var(--blush-700);
  line-height: 1;
}
.pd__title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-top: var(--s-2);
  letter-spacing: -0.02em;
}
.pd__price {
  display: flex; align-items: baseline; gap: var(--s-2);
  margin-top: var(--s-4);
  padding-block: var(--s-4);
  border-bottom: 1px solid rgba(232, 102, 147, 0.18);
}
.pd__price .amount { font-family: var(--f-display); font-size: 2rem; font-weight: 600; color: var(--plum); }
.pd__price .currency { font-weight: 700; color: var(--blush-700); letter-spacing: 0.1em; }
.pd__price .unit { color: var(--muted); margin-left: var(--s-2); }

.pd__desc { margin-top: var(--s-5); color: var(--muted); line-height: 1.75; }
.pd__notes {
  margin-top: var(--s-6);
  display: flex; flex-direction: column; gap: var(--s-2);
}
.pd__notes li {
  display: flex; align-items: center; gap: var(--s-3);
  color: var(--ink); font-size: 0.95rem;
}
.pd__notes li svg { width: 18px; height: 18px; color: var(--blush-700); flex: none; }

.pd__qty {
  margin-top: var(--s-8);
  display: flex; align-items: center; gap: var(--s-5);
}
.pd__qty-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted); font-weight: 700; }
.pd__qty-control {
  display: inline-flex; align-items: center;
  background: var(--ivory);
  border: 1px solid rgba(232, 102, 147, 0.2);
  border-radius: var(--r-pill);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.pd__qty-btn {
  width: 44px; height: 44px;
  color: var(--blush-800);
  font-size: 1.2rem; font-weight: 700;
  transition: background .2s;
}
.pd__qty-btn:hover { background: var(--blush-100); }
.pd__qty-num {
  min-width: 56px; text-align: center;
  font-family: var(--f-display);
  font-size: 1.3rem; font-weight: 600;
  color: var(--plum);
}

.pd__actions {
  margin-top: var(--s-8);
  display: flex; flex-wrap: wrap; gap: var(--s-3);
}
.pd__lead {
  margin-top: var(--s-8);
  padding: var(--s-5) var(--s-6);
  background: var(--blush-100);
  border-radius: var(--r-md);
  display: flex; align-items: flex-start; gap: var(--s-3);
  color: var(--blush-800); font-size: 0.92rem;
}
.pd__lead svg { width: 22px; height: 22px; flex: none; color: var(--blush-700); }

/* ==========================================================================
   CART DRAWER
   ========================================================================== */
.cart-drawer {
  position: fixed; inset: 0;
  z-index: 90;
  pointer-events: none;
  visibility: hidden;
}
.cart-drawer[aria-hidden="false"] { pointer-events: auto; visibility: visible; }
.cart-drawer__backdrop {
  position: absolute; inset: 0;
  background: rgba(61, 31, 44, 0.5);
  opacity: 0; transition: opacity .3s var(--ease-out);
  backdrop-filter: blur(6px);
}
.cart-drawer[aria-hidden="false"] .cart-drawer__backdrop { opacity: 1; }
.cart-drawer__panel {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: min(440px, 100vw);
  background: var(--ivory);
  box-shadow: var(--shadow-xl);
  transform: translateX(100%);
  transition: transform .35s var(--ease-spring);
  display: flex; flex-direction: column;
}
.cart-drawer[aria-hidden="false"] .cart-drawer__panel { transform: translateX(0); }
.cart-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--s-6);
  border-bottom: 1px solid rgba(232, 102, 147, 0.12);
}
.cart-drawer__head h2 { font-size: 1.4rem; }
.cart-drawer__close {
  width: 40px; height: 40px; border-radius: var(--r-pill);
  background: var(--blush-100); color: var(--blush-800);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s var(--ease-out), transform .2s var(--ease-out);
}
.cart-drawer__close svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; }
.cart-drawer__close:hover { background: var(--blush-200); transform: scale(1.05); }
.cart-drawer__list {
  flex: 1; overflow-y: auto;
  padding: var(--s-4) var(--s-6);
  display: flex; flex-direction: column; gap: var(--s-4);
}
.cart-empty {
  padding: var(--s-12) var(--s-6);
  text-align: center; color: var(--muted);
}
.cart-empty__icon {
  width: 80px; height: 80px;
  margin: 0 auto var(--s-5);
  border-radius: var(--r-pill);
  background: var(--blush-100);
  color: var(--blush-700);
  display: grid; place-items: center;
}
.cart-empty__icon svg { width: 36px; height: 36px; }
.cart-empty p { font-family: var(--f-display); font-size: 1.4rem; color: var(--plum); margin-bottom: var(--s-3); }
.cart-empty span { font-size: 0.92rem; }

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: var(--s-4);
  align-items: center;
  padding-bottom: var(--s-4);
  border-bottom: 1px solid rgba(232, 102, 147, 0.10);
}
.cart-item:last-child { border-bottom: 0; }
.cart-item__img {
  width: 80px; height: 80px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--grad-cream);
}
.cart-item__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__info { display: flex; flex-direction: column; gap: 4px; }
.cart-item__name { font-family: var(--f-display); font-size: 1.1rem; color: var(--plum); line-height: 1.2; }
.cart-item__meta { font-size: 0.78rem; color: var(--muted); }
.cart-item__price { font-weight: 700; color: var(--blush-800); font-size: 0.92rem; margin-top: 2px; }
.cart-item__controls {
  display: flex; align-items: center; gap: var(--s-2);
}
.cart-item__qty-btn {
  width: 28px; height: 28px;
  border-radius: var(--r-pill);
  background: var(--blush-100);
  color: var(--blush-800);
  font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}
.cart-item__qty-btn:hover { background: var(--blush-200); }
.cart-item__qty { font-family: var(--f-display); font-size: 1rem; font-weight: 600; min-width: 16px; text-align: center; }
.cart-item__remove {
  margin-top: 4px;
  font-size: 0.72rem; color: var(--muted);
  text-decoration: underline;
}
.cart-item__remove:hover { color: var(--berry); }

.cart-drawer__foot {
  padding: var(--s-6);
  border-top: 1px solid rgba(232, 102, 147, 0.12);
  display: flex; flex-direction: column; gap: var(--s-4);
}
.cart-totals { display: flex; flex-direction: column; gap: var(--s-2); }
.cart-totals__row {
  display: flex; justify-content: space-between;
  font-size: 0.92rem;
  color: var(--ink);
}
.cart-totals__row--grand { font-family: var(--f-display); font-size: 1.3rem; padding-top: var(--s-2); border-top: 1px dashed rgba(232, 102, 147, 0.2); }

/* ==========================================================================
   PAGE HEAD (used on inner pages)
   ========================================================================== */
.page-head {
  padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 6vw, 70px);
  text-align: center;
  background: var(--grad-soft);
  position: relative;
  overflow: hidden;
}
.page-head__eyebrow {
  font-family: var(--f-script);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--blush-700);
}
.page-head h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.02em;
  margin-top: var(--s-3);
}
.page-head__lede {
  max-width: 60ch; margin: var(--s-5) auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.08rem);
  line-height: 1.7;
}

/* ==========================================================================
   FORMS (contact)
   ========================================================================== */
.form-grid { display: grid; gap: var(--s-4); grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--blush-800);
  font-weight: 700;
}
.form-field input, .form-field select, .form-field textarea {
  padding: 14px 18px;
  border-radius: var(--r-md);
  border: 1px solid rgba(232, 102, 147, 0.22);
  background: var(--ivory);
  color: var(--ink);
  font-size: 0.98rem;
  transition: border-color .2s, box-shadow .2s;
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--blush-600);
  box-shadow: var(--glow);
}

/* ==========================================================================
   WEBSITE REQUEST PAGE (Avery / FormSubmit)
   ========================================================================== */
.page-website-request .page-head h1 em {
  background: linear-gradient(120deg, var(--blush-700), var(--plum));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.wr-bullets {
  list-style: none;
  display: grid;
  gap: var(--s-3);
  margin: 0 0 var(--s-8);
  padding: 0;
}
.wr-bullets li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid rgba(232, 102, 147, 0.14);
  border-radius: var(--r-md);
  padding: var(--s-4) var(--s-5);
  box-shadow: var(--shadow-sm);
}
.wr-bullets li strong { color: var(--plum); }
.wr-bullets__check {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush-500), var(--blush-700));
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(232, 102, 147, 0.35);
}
.wr-bullets__check svg { width: 16px; height: 16px; }
.wr-form {
  background: var(--ivory);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(232, 102, 147, 0.10);
}
.wr-form__head { margin-bottom: var(--s-5); }
.wr-form__title {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--plum);
  margin-top: 8px;
}
.wr-form__title em {
  font-style: italic;
  background: linear-gradient(120deg, var(--blush-700), var(--plum));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.wr-form__hint {
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
}
.wr-form__submit {
  margin-top: var(--s-6);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--s-3);
}
.wr-form__submit .btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; }
.wr-form__submit .btn svg { width: 18px; height: 18px; }
.wr-form__note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}
.wr-form__note strong { color: var(--blush-800); }

/* Thank-you card */
.wr-thanks-card {
  background: var(--ivory);
  border-radius: var(--r-lg);
  padding: clamp(36px, 5vw, 60px) clamp(24px, 4vw, 56px);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(232, 102, 147, 0.10);
  display: flex; flex-direction: column; align-items: center; gap: var(--s-3);
}
.wr-thanks-card__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush-500), var(--blush-700));
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(232, 102, 147, 0.35);
}
.wr-thanks-card__icon svg { width: 36px; height: 36px; }
.wr-thanks-card__title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--plum);
  margin-top: 4px;
}
.wr-thanks-card__sub {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 36rem;
}
.wr-thanks-card__actions {
  display: flex; flex-wrap: wrap; justify-content: center; gap: var(--s-3);
  margin-top: var(--s-3);
}

@media (max-width: 576px) {
  .wr-bullets li { font-size: 0.95rem; padding: var(--s-3) var(--s-4); }
  .wr-bullets__check { width: 24px; height: 24px; }
  .wr-bullets__check svg { width: 13px; height: 13px; }
  .wr-thanks-card__actions { flex-direction: column; width: 100%; }
  .wr-thanks-card__actions .btn { width: 100%; }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { display: flex; flex-direction: column; gap: var(--s-3); }
.faq-item {
  background: var(--ivory);
  border: 1px solid rgba(232, 102, 147, 0.12);
  border-radius: var(--r-md);
  padding: var(--s-5) var(--s-6);
  transition: box-shadow .25s;
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-item summary {
  list-style: none;
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--plum);
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-4);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  display: inline-grid; place-items: center;
  width: 32px; height: 32px;
  border-radius: var(--r-pill);
  background: var(--blush-100);
  color: var(--blush-800);
  font-size: 1.4rem; font-weight: 600; line-height: 1;
  flex: none;
  transition: transform .25s var(--ease-out), background .2s;
}
.faq-item[open] summary::after { content: '−'; background: var(--blush-700); color: white; }
.faq-item p { margin-top: var(--s-3); color: var(--muted); line-height: 1.7; }

/* ==========================================================================
   TOAST
   ========================================================================== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--plum);
  color: var(--ivory);
  padding: 14px 22px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-xl);
  font-size: 0.92rem;
  font-weight: 500;
  z-index: 200;
  opacity: 0;
  transition: transform .35s var(--ease-spring), opacity .25s;
  pointer-events: none;
}
.toast[data-show="true"] { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ==========================================================================
   ADMIN — dashboard (Cakes by Marcie–style, Cake by the Pound branding)
   ========================================================================== */
.page-admin {
  background: linear-gradient(180deg, var(--blush-50) 0%, var(--cream) 100%);
  min-height: 100vh;
}
.admin-header-simple.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding-block: var(--s-4);
  padding-inline: clamp(14px, 4vw, 32px);
  background: rgba(255, 252, 251, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(232, 102, 147, 0.12);
}
.admin-header-simple .brand-link { min-width: 0; gap: var(--s-3); }
.admin-header-simple .brand-link__text {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--blush-800);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-refresh-btn { flex-shrink: 0; color: var(--blush-800); border-color: var(--blush-300); background: white; }

.admin {
  padding: var(--s-6) clamp(14px, 4vw, 40px) var(--s-16);
  max-width: 1200px;
  margin-inline: auto;
}

.admin__local-hint {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--blush-200);
  border-radius: var(--r-md);
  padding: var(--s-5);
  margin-bottom: var(--s-6);
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.admin__local-hint i { color: var(--blush-600); margin-top: 2px; flex-shrink: 0; }

.admin__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  margin-bottom: var(--s-6);
}
.admin__nav-actions { display: flex; flex-wrap: wrap; gap: var(--s-3); }
.admin__back,
.admin__refresh,
.admin__clear {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1.5px solid var(--blush-300);
  background: white;
  color: var(--blush-800);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.admin__back:hover,
.admin__refresh:hover { background: var(--blush-50); transform: translateY(-1px); }
.admin__refresh { background: var(--blush-700); color: white; border-color: var(--blush-700); }
.admin__refresh:hover { background: var(--blush-800); color: white; }
.admin__clear {
  border-color: rgba(161, 39, 44, 0.35);
  color: #8b2b2e;
  background: #fff5f5;
}
.admin__clear:hover { background: #ffeaea; }

.admin__header { text-align: center; margin-bottom: var(--s-6); }
.admin__title {
  margin: 0;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 600;
  color: var(--blush-800);
  font-size: clamp(1.9rem, 5vw, 2.5rem);
}
.admin__subtitle { margin: 6px 0 0; color: var(--muted); font-weight: 600; font-size: 0.95rem; }
.admin__header--sub { margin-top: var(--s-10); }
.admin__title--sub { font-size: clamp(1.5rem, 4vw, 2rem); }

.admin__settings {
  background: var(--ivory);
  border: 1px solid rgba(232, 102, 147, 0.15);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  margin-bottom: var(--s-5);
  box-shadow: var(--shadow-sm);
}
.admin__settings-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-3);
  flex-wrap: wrap;
  margin-bottom: var(--s-4);
}
.admin__settings-title {
  margin: 0;
  font-size: 1.05rem;
  color: var(--blush-800);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-weight: 700;
}
.admin__settings-title i { color: var(--blush-600); }
.admin__settings-status {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 6px 10px;
  border-radius: var(--r-pill);
  background: #e8f7ee;
  color: #1f7a3a;
  border: 1px solid #b9e2c4;
  text-transform: uppercase;
}
.admin__settings-status[data-mode="popup"] {
  background: #fff0e2;
  color: #a35413;
  border-color: #f3c89b;
}
.admin__settings-status--neutral {
  background: var(--blush-100);
  color: var(--blush-800);
  border-color: var(--blush-200);
}
.admin__settings-hint { margin: 0 0 var(--s-3); font-size: 0.9rem; color: var(--muted); line-height: 1.55; }
.admin__settings-feedback { margin: var(--s-2) 0 0; font-size: 0.88rem; color: var(--blush-700); min-height: 1.2em; }

.lead-toggle {
  display: flex;
  align-items: flex-start;
  gap: var(--s-4);
  padding: var(--s-4);
  background: var(--blush-50);
  border-radius: var(--r-md);
  border: 1px solid var(--blush-200);
}
.lead-toggle__switch {
  flex: none;
  width: 52px;
  height: 30px;
  border-radius: var(--r-pill);
  border: 2px solid var(--blush-400);
  background: var(--blush-200);
  position: relative;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
}
.lead-toggle__switch.is-on { background: var(--blush-700); border-color: var(--blush-700); }
.lead-toggle__switch.is-off { background: #e8e8e8; border-color: #ccc; }
.lead-toggle__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  transition: transform 0.2s var(--ease-out);
}
.lead-toggle__switch.is-on .lead-toggle__thumb { transform: translateX(22px); }
.lead-toggle__primary strong { display: block; color: var(--ink); font-size: 1rem; margin-bottom: 4px; }
.lead-toggle__sub { font-size: 0.88rem; color: var(--muted); }

.admin__products-toggle {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  margin-top: 4px;
  border-radius: var(--r-md);
  border: 1.5px dashed var(--blush-300);
  background: white;
  color: var(--blush-800);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.admin__products-toggle:hover { background: var(--blush-50); border-color: var(--blush-500); }
.admin__products-toggle i { color: var(--blush-600); }
.admin__products-toggle[aria-expanded="true"] { border-style: solid; border-color: var(--blush-700); }

.admin__products-panel { margin-top: var(--s-4); }
.admin__products-section + .admin__products-section { margin-top: var(--s-6); }
.admin__products-heading {
  margin: 0 0 var(--s-3);
  font-size: 0.95rem;
  font-family: var(--f-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--blush-800);
  display: flex;
  align-items: center;
  gap: 8px;
}
.admin__products-heading i { color: var(--blush-600); }
.admin__products-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .admin__products-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.admin-product {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: var(--r-md);
  border: 1px solid rgba(232, 102, 147, 0.15);
  background: white;
}
.admin-product--hidden { opacity: 0.65; background: var(--blush-50); }
.admin-product__info { min-width: 0; }
.admin-product__name { display: block; font-weight: 700; color: var(--ink); font-size: 0.92rem; }
.admin-product__id { font-size: 0.72rem; color: var(--muted); font-family: ui-monospace, monospace; }
.admin-product__toggle {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: var(--r-pill);
  border: 2px solid var(--blush-300);
  background: white;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.78rem;
}
.admin-product__toggle.is-on { border-color: var(--blush-700); color: var(--blush-800); }
.admin-product__toggle.is-off { border-color: #ccc; color: var(--muted); }
.admin-product__thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blush-300);
}
.admin-product__toggle.is-on .admin-product__thumb { background: var(--blush-700); }

.admin__products-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-3);
  margin-top: var(--s-5);
}
.admin__products-foot--solo { margin-top: var(--s-4); }
.admin__products-foot .btn:disabled { opacity: 0.45; pointer-events: none; }
.admin__products-foot .btn.is-dirty { box-shadow: 0 0 0 3px rgba(245, 131, 165, 0.25); }

.admin__status { text-align: center; color: var(--muted); padding: var(--s-3); min-height: 1.5em; }
.admin__error { color: #a1272c; font-weight: 700; }
.admin__empty { text-align: center; color: var(--muted); padding: var(--s-10) var(--s-3); font-size: 1.05rem; }

.admin__grid {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .admin__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .admin__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.payment-badge--scaffold { background: #e8f4ff; color: #1a5f9e; }
.payment-badge--enquiry { background: #f3e8ff; color: #6b2f9e; }

.order-card {
  background: var(--ivory);
  border: 1px solid rgba(232, 102, 147, 0.15);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: var(--s-3);
}
.order-card__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.order-card__id { font-family: var(--f-body); font-weight: 800; color: var(--blush-800); font-size: 1.05rem; margin-right: 8px; }
.order-card__date { color: var(--muted); font-size: 0.88rem; }
.order-card__badges { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.order-card__method {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: var(--r-pill);
  font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em;
}
.order-card__method.is-pickup   { background: #e9f6ef; color: #1f7a44; }
.order-card__method.is-delivery { background: #fde8f0; color: var(--blush-800); }

.order-card__requested {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--blush-50);
  border-radius: var(--r-sm);
  border: 1px solid var(--blush-200);
  font-size: 0.9rem;
}
.order-card__requested-label { color: var(--muted); font-weight: 600; }

.order-card__info { margin: 0; display: grid; gap: 4px; font-size: 0.92rem; }
.order-card__row { display: flex; justify-content: space-between; gap: 10px; padding: 6px 0; border-bottom: 1px dashed rgba(232, 102, 147, 0.2); }
.order-card__row dt { color: var(--muted); font-weight: 600; }
.order-card__row dd { margin: 0; color: var(--ink); font-weight: 700; text-align: right; word-break: break-word; }
.order-card__row a { color: inherit; text-decoration: none; border-bottom: 1px dotted currentColor; }

.order-card__items { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.order-card__item {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 8px 10px; background: var(--blush-50); border-radius: var(--r-sm);
  border: 1px dashed rgba(232, 102, 147, 0.25);
}
.order-card__item-main { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.order-card__item-name { font-weight: 700; color: var(--ink); }
.order-card__item-meta { color: var(--muted); font-size: 0.84rem; }
.order-card__item-price { font-weight: 800; color: var(--blush-800); font-variant-numeric: tabular-nums; white-space: nowrap; }

.order-card__foot {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 14px;
  border-top: 1px solid rgba(232, 102, 147, 0.15); padding-top: 10px;
  color: var(--ink); font-size: 0.92rem; font-variant-numeric: tabular-nums;
}
.order-card__total { color: var(--blush-800); font-size: 1.02rem; }

.order-card__enquiry-body { margin-top: 4px; }
.order-card__enquiry-label { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.order-card__enquiry-text { margin-top: 8px; font-size: 0.92rem; line-height: 1.55; color: var(--ink); }

.access-denied {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 20px;
  background: var(--blush-50);
}
.access-denied__card {
  background: var(--ivory);
  border: 1px solid rgba(232, 102, 147, 0.15);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
  text-align: center;
  max-width: 420px;
  display: grid;
  gap: 12px;
}
.access-denied__card i { font-size: 2.5rem; color: var(--blush-700); }
.access-denied__card h2 { margin: 0; font-family: var(--f-display); color: var(--blush-800); font-size: 2rem; }
.access-denied__card p  { margin: 0; color: var(--muted); }
.access-denied__card .btn { margin-top: 6px; text-decoration: none; }

.admin-testimonials-form { margin-top: var(--s-3); }
.admin-testimonial-slot {
  border: 1px solid var(--blush-200);
  border-radius: var(--r-md);
  padding: var(--s-4);
  margin-bottom: var(--s-4);
  background: var(--blush-50);
}
.admin-testimonial-slot legend {
  font-weight: 800;
  color: var(--blush-800);
  padding: 0 6px;
  font-size: 0.88rem;
}
.admin-testimonial-grid {
  display: grid;
  gap: var(--s-3);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .admin-testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.admin-field { display: flex; flex-direction: column; gap: 6px; font-size: 0.82rem; font-weight: 600; color: var(--muted); }
.admin-field--full { grid-column: 1 / -1; }
.admin-field input,
.admin-field textarea,
.admin-field select {
  font: inherit;
  font-weight: 500;
  color: var(--ink);
  padding: 10px 12px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(232, 102, 147, 0.25);
  background: white;
}
.admin-field textarea { resize: vertical; min-height: 72px; }

@media (max-width: 640px) {
  .admin__nav { flex-direction: column; align-items: stretch; }
  .admin__nav-actions { flex-direction: column; }
  .admin__nav-actions .admin__refresh,
  .admin__nav-actions .admin__clear { justify-content: center; }
}

/* ==========================================================================
   reveal class — kept for code compatibility but motion disabled per spec
   ========================================================================== */
.reveal, .reveal--visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ==========================================================================
   small utilities
   ========================================================================== */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.max-w-prose { max-width: 60ch; }
.mt-2 { margin-top: var(--s-2); }
.mt-4 { margin-top: var(--s-4); }
.mt-6 { margin-top: var(--s-6); }
.mt-8 { margin-top: var(--s-8); }

/* ==========================================================================
   responsive tuning
   ========================================================================== */
@media (max-width: 576px) {
  /* Default hero padding — homepage luxe stacks use rules above/below */
  .hero:not(.hero--luxe) { padding-block: 32px 80px; }
  .hero__title { font-size: 2.4rem !important; }
  .hero__lede { font-size: 0.95rem !important; }
  .hero__seal { width: 96px; height: 96px; top: -10px; right: -10px; }
  .hero__rating { left: 6%; bottom: -10px; padding: 10px 12px; }
  .hero__rating-stars { font-size: 0.8rem !important; letter-spacing: 1px !important; }
  .section { padding-block: 56px !important; }
  .section__title { font-size: 1.9rem !important; }
  .hero__meta { gap: var(--s-4) var(--s-6) !important; }
  .hero__meta-num { font-size: 1.3rem !important; }
  .cta-banner { padding: 36px 24px !important; }
  .pd__title { font-size: 1.9rem !important; }
  .testimonials-home .testimonial-card { padding: var(--s-5) !important; padding-top: calc(var(--s-5) + var(--s-4)) !important; }
  .testimonials-home .testimonial-card::before { font-size: 2.75rem !important; left: var(--s-4) !important; }
  .testimonials-home .testimonials-home__toggle { width: 100% !important; max-width: 22rem !important; }
}
@media (max-width: 768px) {
  /* Brand row must never push cart/IG/hamburger off-screen */
  .site-header {
    overflow-x: clip;
  }
  .site-header .site-header__inner {
    padding-block: var(--s-2);
    padding-inline: max(10px, env(safe-area-inset-left)) max(10px, env(safe-area-inset-right));
    gap: var(--s-2);
    min-height: clamp(60px, 16vw, 80px);
    min-width: 0;
  }
  .site-header .brand-link .logo-mark--favicon {
    display: block !important;
    width: clamp(38px, 9.5vw, 48px) !important;
    height: clamp(38px, 9.5vw, 48px) !important;
    flex-shrink: 0;
    object-fit: contain;
  }
  .site-header .brand-link {
    gap: 9px;
    min-width: 0;
    flex: 1 1 auto;
    white-space: normal;
    align-items: center;
  }
  .site-header .brand-link__text {
    font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif !important;
    font-optical-sizing: auto;
    min-width: 0;
    flex: 1 1 auto;
    font-size: clamp(1.12rem, 4.5vw, 1.5rem);
    letter-spacing: -0.02em;
    font-weight: 700;
    line-height: 1.12;
    overflow-wrap: anywhere;
    hyphens: manual;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
  }
  .site-header__actions {
    flex-shrink: 0;
    gap: var(--s-2);
  }
  .site-header .icon-btn {
    width: 38px;
    height: 38px;
  }
  .site-header .icon-btn svg {
    width: 17px;
    height: 17px;
  }
  .brand-link__text small { font-size: 0.58rem; letter-spacing: 0.24em; }
  .footer-grid { gap: var(--s-8); }
}
