@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --font-heading: 'Nunito', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --yellow: #f7ba17;
  --yellow-bright: #ffc72d;
  --yellow-deep: #c08c00;
  --yellow-eye: #986f00;
  --yellow-warm: #ffd426;
  --ink: #130d00;
  --ink-2: #1a1510;
  --ink-3: #140f0a;
  --body-1: #261a00;
  --body-1-warm: #402d00;
  --body-2: #635e57;
  --cream: #fff7ea;
  --cream-light: #ffefd5;
  --border-light: #e9e1d8;
  --border-mid: #cdc5bd;
  --border-brown: #88754f;
  --error: #f04438;
  --white: #ffffff;
  --footer-text: #d9d1c7;
  --footer-meta: #b2a899;
  --footer-divider: #40382e;
  --footer-soc-bg: #261f1a;
  --radius: 16px;
  --radius-lg: 24px;
  --pill: 200px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  color: var(--body-1);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: 0; background: none; }

h1, h2, h3, h4, h5 {
  
  font-weight: 800;
  color: var(--ink);
  margin: 0;
  line-height: 1.1;
}
p { margin: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: var(--pill);
  padding: 12px 24px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--yellow); color: var(--body-1); border-color: var(--yellow); }
.btn-primary:hover { background: #f0b00a; border-color: #f0b00a;}
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #2a1d05; }
.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--border-light);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.08); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 32px; font-size: 20px; line-height: 32px; }
.btn .btn-text { padding: 0 8px; display: inline-flex; align-items: center; gap: 6px; }
.btn img { width: 20px; height: 20px; }
.btn svg { width: 18px; height: 18px; }

/* ===== 3. Hero ===== */
.hero {
  position: relative;
  padding: 80px 0;
  background: var(--ink-2);
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  --bs-gutter-x: 64px;
  --bs-gutter-y: 64px;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  text-align: left;
}
.hero-media {
  display: flex;
  justify-content: center;
}
.hero-media-img {
  display: block;
  width: 100%;
  max-width: 620px;
  height: auto;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  position: relative;
}
.eyebrow-text {
  background-image: url('/wp-content/themes/gotchatheme/assets/images/eyebrow-bg-img.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--cream);
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  padding: 8px 18px 8px 16px;
  /*border: 1px solid #f8efe7;
  border-right: 0;
  border-radius: 8px 0 0 8px;*/
  white-space: nowrap;
  position: relative;
  z-index: 2;
  width: 215px;
  height: 35px;
}
.eyebrow-tail {
  width: 22px;
  height: 34px;
  background: var(--ink);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  margin-left: -1px;
  position: relative;
  z-index: 1;
}
.eyebrow-light .eyebrow-text {
  background: var(--yellow);
  color: var(--ink);
  border: 0;
}
.eyebrow-light .eyebrow-tail { background: var(--yellow); }
.hero h1 {
  font-size: 64px;
  line-height: 72px;
  color: var(--white);
  font-weight: 800;
  margin: 0;
}
.hero h1 .accent { color: var(--yellow-bright); }
/* Force the desktop hero title to break as
   Send Deviled / Eggs anywhere / in the US.
   On mobile the line breaks are removed so the text reflows naturally. */
.hero-h1-br { display: none; }
@media (min-width: 900px) {
  .hero-h1-br { display: initial; }
}
.hero-sub {
  color: var(--cream);
  font-size: 17px;
  line-height: 26px;
  font-weight: 500;
  max-width: 520px;
  margin: 0;
  max-width: 680px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== 4. Shipping strip (calm dark bar) ===== */
.ship-strip {
  background: var(--ink-3);
  color: var(--cream);
  padding: 20px 0;
  text-align: center;
}
.ship-strip-inner {
  align-items: center;
  gap: 12px;
  max-width: 1440px;
  margin: 0 auto;
}
.ship-strip-eyebrow {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  display: inline-flex; align-items: center; gap: 8px;
}
.ship-strip-eyebrow svg { width: 18px; height: 18px; }
.ship-strip-body {
  font-weight: 500;
  font-size: 14px;
  color: var(--cream);
}

/* ===== Section structure ===== */
section { position: relative; }
.section-padded { padding: 80px 0; background: var(--white); }
.section-padded-lg { padding: 96px 0; }
.section-cream { background: var(--cream); }
.section-with-pattern {
  position: relative;
  background: var(--cream-light);
}
.section-with-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 24px 24px, rgba(152, 111, 0, 0.16) 0 2px, transparent 2px),
    radial-gradient(circle at 24px 24px, rgba(152, 111, 0, 0.12) 0 12px, transparent 12px),
    radial-gradient(circle at 24px 24px, rgba(152, 111, 0, 0.08) 0 24px, transparent 24px);
  background-size: 96px 96px;
  background-repeat: repeat;
  opacity: 0.06;
  pointer-events: none;
}
.section-with-pattern > * { position: relative; }

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
  margin-bottom: 56px;
}
.section-eyebrow {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: var(--yellow-eye);
  letter-spacing: 0.3px;
}
.section-title {
  font-size: 56px;
  line-height: 68px;
  color: var(--ink);
}
.section-sub {
  font-size: 16px;
  line-height: 24px;
  color: var(--body-2);
  max-width: 720px;
}

/* ===== How It Ships (mirrors catering .hiw) ===== */
.hiw {
  background: var(--cream);
  padding: 96px 0;
}
.hiw-list {
  align-items: flex-start;
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}
.hiw-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 24px;
}
.hiw-step-mark {
  position: absolute;
  left: 0;
  top: -16px;
  width: 81px;
  height: 92px;
  pointer-events: none;
}
.hiw-step-mark .circle {
  position: absolute;
  left: 30px;
  top: 36px;
  width: 53.7px;
  height: 56px;
  transform: rotate(-2.52deg);
  z-index: 2;
}
.hiw-step-mark .icon {
  position: absolute;
  left: 16px;
  top: 10px;
  width: 81px;
  height: 92px;
}
.hiw-step-num {
  display: flex;
  gap: 16px;
  align-items: center;
}
.hiw-step-num span:first-child {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 48px;
  color: var(--ink);
  position: relative;
  z-index: 3;
  left: 20px;
}
.hiw-step-line {
  flex: 1 0 0;
  min-width: 0;
  height: 0;
  border-top: 2px dashed var(--border-brown);
}
.hiw-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 24px;
}
.hiw-copy h3 {
  
  font-weight: 800;
  font-size: 20px;
  line-height: 1.2;
  color: var(--body-1);
}
.hiw-copy p {
  font-size: 14px;
  line-height: 20px;
  color: var(--body-2);
}

/* ===== Bundle Cards (3-col grid for shipping products) ===== */
.card-grid-3 {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
}
.bundle-card {
  position: relative;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
  min-height: 586px;
}
.bundle-card.light {
  background: var(--cream);
  border: 1px solid var(--border-light);
}
.bundle-card.dark {
  background: var(--ink-2);
  color: var(--cream);
}
.bundle-img {
  position: absolute;
  right: 24px;
  top: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
  box-shadow: 0 12px 32px rgba(19,13,0,0.12);
  background: var(--cream-light);
}
.bundle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bundle-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 2;
  padding-right: 200px;
}

/* Square-image variant: full-bleed image at the top, content below */
.bundle-card.has-square-img {
  padding: 0;
  min-height: 0;
  gap: 0;
}
.bundle-img-square {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: var(--cream-light);
}
.bundle-img-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bundle-img-ribbon {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 999px;
}
.bundle-card.has-square-img .bundle-body {
  padding: 32px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}
.bundle-card.has-square-img .bundle-header,
.bundle-card.has-square-img .eyebrow {
  padding-right: 0;
}
/* Inside square-img cards we keep .bundle-header inline-block-like — the parent .bundle-body
   drives layout, so neutralise the legacy flex on .bundle-header by removing reserved space. */
.bundle-card.has-square-img .bundle-header {
  display: contents;
}
.bundle-title {
  
  font-size: 24px;
  line-height: 30px;
  font-weight: 800;
  margin: 0;
}
.bundle-card.has-square-img .bundle-title {
  font-size: 16px;
  line-height: 28px;
}
.bundle-card.has-square-img .bundle-title span {
  display: block;
  font-size: 20px;
}        
.bundle-titles {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bundle-title-sub {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--body-2);
  margin: 0;
}
.bundle-card.dark .bundle-title-sub { color: rgba(255,255,255,0.65); }
.bundle-card.light .bundle-title { color: var(--ink-2); }
.bundle-card.dark .bundle-title { color: var(--cream); }
.bundle-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.bundle-price .from-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--body-2);
}
.bundle-card.dark .bundle-price .from-label { color: rgba(255,255,255,0.65); }
.bundle-price .amount {
  
  font-size: 44px;
  line-height: 1;
  font-weight: 800;
}
.bundle-card.light .bundle-price .amount { color: var(--yellow-deep); }
.bundle-card.dark .bundle-price .amount { color: var(--yellow-bright); }
.bundle-price .period {
  font-size: 15px;
  font-weight: 600;
}
.bundle-card.light .bundle-price .period { color: var(--body-2); }
.bundle-card.dark .bundle-price .period { color: rgba(255,255,255,0.7); }
.bundle-divider {
  height: 1px;
  width: 100%;
}
.bundle-card.light .bundle-divider { background: var(--border-light); }
.bundle-card.dark .bundle-divider { background: rgba(255,255,255,0.15); }
.bundle-incl-label {
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.72px;
  text-transform: uppercase;
}
.bundle-card.light .bundle-incl-label { color: rgba(26,21,16,0.7); }
.bundle-card.dark .bundle-incl-label { color: rgba(255,255,255,0.7); }
.bundle-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.bullet {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.bullet .check {
  width: 8px; height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--yellow-bright);
  flex-shrink: 0;
  display: inline-block;
}
.bullet p {
  font-size: 16px;
  line-height: 24px;
}
.bundle-card.light .bullet p { color: var(--body-1); }
.bundle-card.dark .bullet p { color: var(--cream); }
.bundle-card .button-wrap {
  margin-top: auto;
  padding-top: 8px;
}
.badge-pill {
  display: inline-flex;
  background: var(--yellow-bright);
  color: var(--ink-2);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.44px;
  padding: 6px 12px;
  border-radius: 999px;
  width: fit-content;
}

/* ===== Shipping product cards (homepage-style "Holidays Egg-ceptional" trio) ===== */
.ship-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.ship-card {
  background: var(--cream-light);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.ship-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(19,13,0,0.1);
}
.ship-image {
  aspect-ratio: 1 / 1;
  background: var(--white);
  overflow: hidden;
}
.ship-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ship-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.ship-title {
  
  font-weight: 800;
  font-size: 20px;
  line-height: 1.25;
  color: var(--ink);
  margin: 0;
}
.ship-price {
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  margin: 0;
}
.ship-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 8px;
}
.ship-learn {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
  transition: border-color .15s ease;
}
.ship-learn:hover { border-bottom-color: var(--ink); }
.ship-add {
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: background .15s ease, transform .1s ease;
}
.ship-add:hover  { background: #2a1d05; }
.ship-add:active { transform: scale(0.98); }

/* ===== Holiday Kit Cards (homepage-style featured row) ===== */
.holiday-grid {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
}
.holiday-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.holiday-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(19,13,0,0.1);
}
.holiday-image {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--cream-light);
  overflow: hidden;
}
.holiday-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.holiday-image--icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.holiday-image--icon svg {
  width: 88px;
  height: 88px;
  color: inherit;
}
.holiday-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.holiday-badge--new   { background: var(--yellow); color: var(--ink); }
.holiday-badge--early { background: #ffa730;       color: var(--ink); }
.holiday-badge--open  { background: #2c8a4a;       color: var(--white); }
.holiday-badge--live  { background: #d44b6f;       color: var(--white); }
.holiday-badge--soon  { background: var(--cream-light); color: var(--ink); border: 1px solid var(--border-light); }
.holiday-badge--past  { background: rgba(19,13,0,0.55); color: var(--white); backdrop-filter: blur(4px); }
.holiday-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.holiday-title {
  
  font-weight: 800;
  font-size: 22px;
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
}
.date-placeholder {
  color: var(--body-2);
  font-style: italic;
}
.holiday-date {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--body-2);
  margin: 0;
}
.holiday-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}
.holiday-price {
  
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
}
.btn-reserve {
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 10px 20px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: background .15s ease, transform .1s ease;
}
.btn-reserve:hover  { background: var(--yellow-bright); }
.btn-reserve:active { transform: scale(0.98); }
.btn-reserve--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-reserve--ghost:hover { background: var(--ink); color: var(--yellow); }

.see-all {
  text-align: center;
  margin-top: 40px;
}
.see-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  padding: 12px 4px;
  border-bottom: 2px solid var(--ink);
  transition: gap .15s ease;
}
.see-all-link:hover { gap: 12px; }

/* ===== Subscribe / Notify ===== */
.subscribe {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background-image: url('/wp-content/themes/gotchatheme/assets/images/bowl-yellow-bg-img.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/*.subscribe::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 24px 24px, rgba(19, 13, 0, 0.16) 0 2px, transparent 2px),
    radial-gradient(circle at 24px 24px, rgba(19, 13, 0, 0.12) 0 12px, transparent 12px),
    radial-gradient(circle at 24px 24px, rgba(19, 13, 0, 0.08) 0 24px, transparent 24px);
  background-size: 96px 96px;
  background-repeat: repeat;
  opacity: 0.06;
  pointer-events: none;
}*/
.subscribe-inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  text-align: center;
}
/*.subscribe-header {
  max-width: 924px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}*/
.subscribe-header .section-eyebrow { color: var(--ink); }
.subscribe-header h2 {
  font-size: 56px;
  line-height: 68px;
  color: var(--ink);
  max-width: 742px;
  margin-bottom: 1rem;
}
.subscribe-header p {
  font-size: 20px;
  line-height: 32px;
  font-weight: 500;
  color: var(--body-1-warm);
  margin-bottom: 30px;
}
.subscribe-form {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.subscribe-form input[type="email"] {
  width: 420px;
  max-width: 100%;
  background: var(--white);
  border: 1px solid #d9d1bf;
  border-radius: 999px;
  padding: 18px 24px;
  font-size: 16px;
  line-height: 24px;
  color: var(--ink);
  outline: none;
}
.subscribe-form input[type="email"]::placeholder { color: #6b6155; }
.subscribe-form input[type="email"]:focus { border-color: var(--ink); }
.subscribe-btn {
  background: var(--ink-2);
  color: var(--yellow-bright);
  padding: 18px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}
.subscribe-btn:hover { background: #2a1d05; }

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .hero h1 { font-size: 56px; line-height: 64px; }
  .hero-inner { --bs-gutter-x: 48px; --bs-gutter-y: 48px; }
  .section-title, .subscribe-header h2 { font-size: 48px; line-height: 56px; }
  .ship-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer { padding: 80px 80px 40px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-login { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero { padding: 56px 0 64px; }
  .hero-inner { --bs-gutter-x: 36px; --bs-gutter-y: 36px; }
  .hero-copy { align-items: flex-start; text-align: left; }
  .hero h1 { font-size: 44px; line-height: 52px; }
  .hero-media-img { border-radius: 20px; }
  .ship-product-grid { grid-template-columns: 1fr; }
  .bundle-card { min-height: auto; padding: 32px; }
  .bundle-img { right: 16px; top: -32px; width: 180px; height: 180px; }
  .bundle-header { padding-right: 0; }
  .footer { padding: 64px 32px 32px; }
  .footer-top { gap: 32px; }
  .footer-brand { width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .section-title, .subscribe-header h2 { font-size: 40px; line-height: 48px; }
  .section-padded, .section-padded-lg, .hiw, .subscribe { padding: 64px 0; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .hero-inner { --bs-gutter-x: 24px; --bs-gutter-y: 24px; }
  .hero h1 { font-size: 36px; line-height: 44px; }
  .hero-sub { font-size: 16px; line-height: 24px; }
  .holiday-image { aspect-ratio: 16 / 10; }
  .section-title, .subscribe-header h2 { font-size: 32px; line-height: 40px; }
  .section-eyebrow { font-size: 13px; }
  .bundle-title { font-size: 24px; line-height: 28px; }
  .bundle-price .amount { font-size: 44px; line-height: 52px; }
  .subscribe-form input[type="email"] { width: 100%; }
  .subscribe-form { flex-direction: column; align-items: stretch; }
  .subscribe-btn { width: 100%; }
  .footer { padding: 48px 20px 24px; }
  .footer-bottom-links { flex-wrap: wrap; gap: 12px; }
  .nav-inner { padding: 0 20px; }
  .nav-logo img { height: 40px; }
}

/* =====================================================
   SIDE CART DRAWER
   ===================================================== */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(19,13,0,0.5);
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
  z-index: 90;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100vh; width: 500px; max-width: 100vw;
  background: var(--white); display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .3s ease;
  z-index: 100; box-shadow: -16px 0 48px rgba(19,13,0,0.18);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  position: relative;
  padding: 24px 16px;
  border-bottom: 1px solid var(--border-light);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.cart-header-icon {
  position: relative;
  width: 32px; height: 32px;
  background: var(--ink); border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
}
.cart-header-icon img { width: 16px; height: 16px; filter: invert(1); }
.cart-title { font: 600 14px/20px var(--font-body); color: var(--body-1); margin: 0; }
.cart-close {
  position: absolute; top: 16px; right: 12px;
  width: 40px; height: 40px; border: 0; background: transparent;
  cursor: pointer; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.cart-close:hover { background: var(--cream); }
.cart-close svg { width: 20px; height: 20px; }

.cart-event-summary {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 16px; margin: 0;
  background: var(--cream-light);
  border-bottom: 1px solid var(--border-light);
  font: 500 13px/18px var(--font-body); color: var(--body-1);
}
.cart-event-summary > span:first-child { font-size: 16px; }
.cart-event-summary #cart-event-text { flex: 1; min-width: 0; }
.cart-event-edit {
  background: var(--ink); color: var(--white);
  border-radius: var(--pill); padding: 6px 14px;
  font: 600 12px/16px var(--font-body); cursor: pointer;
  border: 0;
}
.cart-event-edit:hover { background: #2a1d05; }
.fulfilment-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: var(--pill);
  font: 700 10px/14px var(--font-body); letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--ink); color: var(--yellow);
}

.cart-items { flex: 1 1 auto; overflow-y: auto; padding: 0 16px; background: var(--cream); }
.cart-items .cart-item-thumb {
  flex-shrink: 0; width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
}
.cart-items .cart-item-thumb svg { width: 100%; height: 100%; display: block; }
.cart-items .cart-item {
  display: grid; grid-template-columns: 60px 1fr auto; gap: 16px;
  padding: 20px 0; align-items: flex-start;
  border-bottom: 1px solid var(--border-light);
}
.cart-items .cart-item-name { font: 700 15px/20px var(--font-body); color: var(--ink); }
.cart-items .cart-item-meta { font: 400 12px/18px var(--font-body); color: var(--body-2); margin-top: 2px; }
.cart-items .cart-item-price { font: 800 16px/24px var(--font-heading); color: var(--body-1); }
.cart-item-cat {
  display: inline-block;
  font: 700 10px/14px var(--font-body);
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--body-2); margin-bottom: 4px;
}
.cart-item-controls {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
}
.cart-item-remove-btn {
  background: transparent; border: 0; cursor: pointer;
  color: var(--error); font: 600 12px/16px var(--font-body);
  text-decoration: underline;
}
.cart-qty-stepper {
  display: inline-flex; align-items: center; gap: 0;
  border: 1px solid var(--border-mid); border-radius: var(--pill);
  overflow: hidden;
}
.cart-qty-stepper button {
  width: 28px; height: 28px;
  background: transparent; border: 0; cursor: pointer;
  font: 700 16px/1 var(--font-body); color: var(--body-1);
}
.cart-qty-stepper button:hover { background: var(--cream-light); }
.cart-qty-stepper button:disabled { opacity: 0.35; cursor: not-allowed; }
.cart-qty-stepper span { padding: 0 12px; min-width: 28px; text-align: center; font: 600 14px/20px var(--font-body); }

.cart-empty {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 64px 24px; text-align: center;
}
.cart-empty h3 { font-size: 20px;  color: var(--ink); }
.cart-empty p { color: var(--body-2); font-size: 14px; }

.cart-footer { padding: 24px 16px; background: var(--white); border-top: 1px solid var(--border-light); }
.cart-line {
  display: flex; justify-content: space-between; align-items: center;
  font: 500 14px/20px var(--font-body); color: var(--body-1);
  padding: 6px 0;
}
.cart-line.total {
  margin-top: 8px; padding-top: 14px;
  border-top: 1px solid var(--border-light);
  font: 800 18px/26px var(--font-heading); color: var(--ink);
}
.delivery-fee-mute { color: var(--body-2); font-size: 12px; font-weight: 400; }
.free-tag {
  display: inline-block; margin-left: 6px;
  background: #2e7d32; color: #fff;
  font: 700 10px/1 var(--font-body); letter-spacing: 0.06em;
  padding: 3px 7px; border-radius: 999px;
}
.btn-checkout {
  width: 100%; margin-top: 14px;
  background: var(--yellow); color: var(--ink);
  padding: 14px 24px; border: 0; border-radius: var(--pill);
  font: 700 16px/24px var(--font-body); cursor: pointer;
  transition: background .15s, opacity .15s;
}
.btn-checkout:hover { background: #f0b00a; }
.btn-checkout:disabled { background: var(--border-mid); color: var(--body-2); cursor: not-allowed; opacity: 0.7; }
.cart-min-note {
  text-align: center; margin-top: 10px;
  font: 500 12px/18px var(--font-body); color: var(--body-2);
}
.cart-min-note strong { color: var(--ink); font-weight: 700; }

@media (max-width: 540px) {
  .cart-drawer { width: 100vw; }
}

/* =====================================================
   CHECKOUT MODAL
   ===================================================== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(19,13,0,0.55);
  display: none; align-items: center; justify-content: center;
  z-index: 200; padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white); width: 100%; max-width: 720px;
  max-height: 92vh; border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: 0 24px 64px rgba(19,13,0,0.32);
}
.modal-header {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; background: var(--cream-light);
  border-bottom: 1px solid var(--border-light);
  gap: 16px;
}
.modal-header h2 {
   font-weight: 800;
  font-size: 20px; line-height: 28px; color: var(--ink);
  flex: 1; min-width: 0;
}
.modal-header .cart-close {
  position: static; flex-shrink: 0;
  width: 36px; height: 36px;
}
.modal-step-dots {
  display: flex; gap: 8px; justify-content: center;
  padding: 16px 24px 0;
}
.step-dot {
  width: 10px; height: 10px; border-radius: 999px;
  background: var(--border-light); transition: background .15s, transform .15s;
}
.step-dot.active { background: var(--yellow); transform: scale(1.2); }
.step-dot.done { background: #2e7d32; }
.modal-body {
  flex: 1 1 auto; overflow-y: auto;
  padding: 24px 32px;
}
.modal-body h3 {
   font-weight: 800;
  font-size: 24px; line-height: 30px; color: var(--ink); margin-bottom: 6px;
}
.modal-body .lead {
  color: var(--body-2); font-size: 14px; line-height: 20px;
  margin-bottom: 20px;
}
.modal-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; gap: 16px;
  border-top: 1px solid var(--border-light); background: var(--cream);
}
.total-summary {
  display: flex; flex-direction: column; line-height: 1.1;
}
.total-summary span {
   font-weight: 800;
  font-size: 22px; color: var(--ink);
}
.total-summary small { font-size: 11px; color: var(--body-2); margin-top: 2px; }
.btn-row { display: flex; gap: 8px; }
.btn-back, .btn-next {
  border: 0; padding: 12px 22px; border-radius: var(--pill);
  font: 600 14px/20px var(--font-body); cursor: pointer;
  transition: background .15s, opacity .15s;
}
.btn-back {
  background: transparent; color: var(--body-1);
  border: 1px solid var(--border-mid);
}
.btn-back:hover { background: var(--cream-light); }
.btn-next {
  background: var(--yellow); color: var(--ink);
}
.btn-next:hover { background: #f0b00a; }
.btn-next:disabled { background: var(--border-mid); color: var(--body-2); cursor: not-allowed; }

.field-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: 1 / -1; }
.field label {
  font: 700 11px/16px var(--font-body);
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--body-2);
}
.field input, .field textarea {
  font-size: 14px; line-height: 20px; color: var(--ink);
  padding: 12px 14px;
  background: var(--cream-light);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  outline: none; transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.field input:focus, .field textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(247,186,23,0.18);
}
.field textarea { min-height: 100px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--body-2); }

.review-section { margin-bottom: 20px; }
.review-section h4 {
   font-weight: 800;
  font-size: 14px; color: var(--ink);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.review-line {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 12px; padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  font: 500 13px/20px var(--font-body); color: var(--body-1);
}
.review-line:last-child { border-bottom: 0; }

.dietary-options { display: flex; flex-wrap: wrap; gap: 8px; }
.dietary-chip {
  border: 1px solid var(--border-mid); background: var(--white);
  padding: 8px 14px; border-radius: 999px; cursor: pointer;
  font: 600 12px/18px var(--font-body); color: var(--body-1);
  transition: all .15s;
}
.dietary-chip:hover { background: var(--cream-light); }
.dietary-chip.active {
  background: var(--ink); color: var(--white); border-color: var(--ink);
}

.confirm-screen { text-align: center; padding: 12px 0 40px; }
.confirm-screen h3 { font-size: 28px; margin-bottom: 8px; }
.confirm-screen p { color: var(--body-2); font-size: 14px; line-height: 22px; }
.order-id {
  display: inline-block; margin-top: 24px;
  background: var(--cream-light); color: var(--ink);
   font-weight: 800;
  font-size: 18px; letter-spacing: 0.08em;
  padding: 12px 24px; border-radius: 14px;
  border: 1px dashed var(--border-brown);
}
.btn-cta {
  background: var(--yellow); color: var(--ink); border: 0;
  padding: 14px 28px; border-radius: var(--pill);
  font: 700 14px/20px var(--font-body); cursor: pointer;
}
.btn-cta:hover { background: #f0b00a; }

/* TOAST */
.toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(40px);
  background: var(--ink); color: var(--yellow);
  padding: 12px 24px; border-radius: var(--pill);
  font: 600 14px/20px var(--font-body);
  box-shadow: 0 12px 32px rgba(19,13,0,0.32);
  opacity: 0; pointer-events: none;
  transition: transform .25s, opacity .25s;
  z-index: 300;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.btn.added { background: #2e7d32; color: var(--white); }

.gform_wrapper.gravity-theme .gfield.gfield--width-five-twelfths {
  width: 420px;
}

.email-input, .subscribe-form .gform_wrapper.gravity-theme .gfield input.large {
  background-color: #ffffff !important;
  padding: 1rem 1.5rem !important;
  border: 1px solid #d9d1bf !important;
  border-radius: 999px !important;
  color: #6b6155 !important;
  line-height: 1.5 !important;
}

.email-input:focus, .subscribe-form .gform_wrapper.gravity-theme .gfield input.large:focus {
  border-color: rgba(255, 199, 45, 0.9) !important;
  box-shadow: 0 0 0 0.25rem rgba(255, 199, 45, 0.18) !important;
}

.subscribe-form .gform_wrapper.gravity-theme #field_submit input {
  background: #1a1510 !important;
  color: #ffffff !important;
  padding: 1rem 2rem !important;
  border-radius: 999px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
  border-color: #1a1510 !important;
}

.subscribe-form .gform_wrapper.gravity-theme .gform_footer {margin: 0 !important;padding: 0 !important;}

.subscribe-form .gform_wrapper.gravity-theme .gform_fields {
  display: flex !important;
  justify-content: center !important;
  gap: 12px;
  align-items: center;
}

@media (msx-width: 992px) {

}

@media (max-width: 575.98px) {
  .subscribe-form .gform_wrapper.gravity-theme .gfield.gfield--width-five-twelfths {
    width: 100%;
  }
  .subscribe-form .gform_wrapper.gravity-theme .gform_fields {
    flex-direction: column;
  }
  .subscribe-form .gform_wrapper.gravity-theme #field_submit, .subscribe-form .gform_wrapper.gravity-theme #field_submit input {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .field-grid { grid-template-columns: 1fr; }
  .modal-body { padding: 20px; }
  .modal-header { padding: 16px 20px; }
  .modal-footer { padding: 14px 16px; flex-wrap: wrap; }
}

