/** Shopify CDN: Minification failed

Line 178:0 Unexpected "@keyframes"
Line 213:43 Expected "}" to go with "{"

**/
/* ============================================================
   THE CHOCOLATE AVENUE â€” Design Tokens
   ============================================================ */
:root {
  /* PALETTE â€” Warm Mocha (default) */
  --bg:         #F5EFE6;
  --bg-2:       #EDE3D3;
  --paper:      #FAF6EF;
  --ink:        #2A1810;
  --ink-2:      #4A2F1F;
  --ink-mute:   #8B6F5A;
  --rule:       rgba(42, 24, 16, 0.12);
  --rule-soft:  rgba(42, 24, 16, 0.06);
  --mocha:      #B08968;
  --mocha-2:    #9C7654;
  --cocoa:      #3D2817;
  --cocoa-deep: #1A0F0A;
  --cream:      #F5EFE6;
  --accent:     #B08968;
  --rose:       #C89B8B;

  /* TYPE */
  --font-serif: "Cormorant Garamond", "Cormorant", "Times New Roman", serif;
  --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-script:"Caveat", "Brush Script MT", cursive;
  --font-mono:  "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  /* SCALE */
  --maxw: 1440px;
  --pad-x: clamp(20px, 4vw, 64px);
  --gap: 24px;
  --gap-lg: 48px;
  --gap-xl: 96px;
  --section-y: clamp(72px, 9vw, 140px);
  --radius: 2px;
  --radius-lg: 8px;

  /* MOTION */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.5s;
  --dur-slow: 0.9s;
}

/* Dark mode swap */
.theme-dark {
  --bg:        #14100C;
  --bg-2:      #1F1812;
  --paper:     #1A140F;
  --ink:       #F0E6D6;
  --ink-2:     #D9C8B1;
  --ink-mute:  #9C8770;
  --rule:      rgba(240, 230, 214, 0.14);
  --rule-soft: rgba(240, 230, 214, 0.06);
  --cream:     #F0E6D6;
}

/* Reset + base */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--ink); }
body { font-family: var(--font-sans); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img { max-width: 100%; display: block; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }

/* Typography helpers */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink-2);
}
.h-section {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.serif-it { font-family: var(--font-serif); font-style: italic; font-weight: 400; }

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
}
.btn--primary {
  background: var(--cocoa);
  color: var(--cream);
}
.btn--primary::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: var(--mocha);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-out);
}
.btn--primary:hover::before { transform: translateY(0); }
.btn--primary:hover { color: #fff; }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--rule);
}
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--bg); }

.btn--ink {
  background: transparent;
  color: var(--ink);
  padding: 0;
  font-size: 12px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  border-radius: 0;
}
.btn--ink:hover { color: var(--mocha); border-color: var(--mocha); }

.btn--cream {
  background: var(--cream);
  color: var(--cocoa-deep);
}
.btn--cream:hover { background: #fff; }

/* Required animations */
.ch-pulse {
  position: relative;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--mocha);
  flex-shrink: 0;
}
.ch-pulse::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%; background: var(--mocha);
  animation: ch-pulse 1.8s ease-out infinite;
}
@keyframes ch-pulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(3.2); opacity: 0; }
}

.ch-title {
  font-family: var(--font-serif);
  font-size: clamp(56px, 8.8vw, 132px);
  li

@keyframes ch-fadeup {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes ch-cardin {
  from { opacity: 0; transform: translateY(60px) rotate(0deg) scale(0.92); }
}

@keyframes ch-rose-in {
  from { opacity: 0; transform: scale(0.6) rotate(-30deg); }
}

@keyframes ch-spin { to { transform: rotate(360deg); } }

@keyframes ch-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes ch-pulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(3.2); opacity: 0; }
}

/* Page padding */
.page-pad-top { padding-top: 40px; }
.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 28px;
}
.breadcrumb a { transition: color 0.3s var(--ease); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: var(--ink); }