:root {
  --cream-bg: #E7E0D3;
  --cream-panel: #F8F2E6;
  --tan-panel: #EFE5D2;
  --ink: #2C2422;
  --dark-panel: #2C2422;
  --dark-text: #E9DECB;
  --maroon: #6B1F2A;
  --maroon-dark: #4A141C;
  --maroon-hover: #8A2A38;
  --rust: #A8483C;
  --border-tan: #DDD2BE;
  --border-tan2: #C7A98C;
  --border-cream: #E4D9C4;
  --muted: #6F6557;
  --muted2: #5C5449;
  --muted3: #8A7F70;
  --green: #2F6B4F;
  --amber: #B4761F;
  --danger-bg: #F7E4DE;
  --danger-border: #E3B6A9;
  --danger-text: #7A2A1E;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--cream-bg);
  font-family: 'Lato', sans-serif;
  color: var(--ink);
}

a { color: var(--maroon); text-decoration: none; }
a:hover { color: var(--maroon-dark); }

input, select, textarea { font-family: 'Lato', sans-serif; }

.hidden { display: none !important; }

.page {
  max-width: 1180px;
  margin: 0 auto;
  background: var(--cream-panel);
  min-height: 100vh;
  box-shadow: 0 0 60px rgba(44,36,34,0.12);
}

.eyebrow {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
}
.eyebrow-light { color: #EBB9A6; }
.eyebrow-dark { color: #D9A88F; }

.h2 {
  margin: 0;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.18;
}
.h2-light { color: #FFFFFF; }
.h2-tight { font-size: 24px; }
.h3 {
  margin: 0;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 400;
  font-size: 21px;
}
.lead { margin: 4px 0 0; font-size: 15px; line-height: 1.55; color: var(--muted); }
.lead-lg { margin: 0; font-size: 16px; line-height: 1.65; color: var(--muted2); }

.content-pad { padding-left: 22px; padding-right: 22px; }
.side-margin { margin-left: 22px; margin-right: 22px; }

/* ---------- Hero ---------- */
/* min-height (not a fixed height) so the hero always grows to fit its own
   content -- at 600-780px on most screens it looks identical to before, but
   it can never clip the logo/title/CTAs the way a hard-capped height could.
   .hero-content is stretched to fill via the 1fr grid row (not a percentage
   height, which wouldn't resolve reliably against a min-height-only parent)
   so the existing top/bottom space-between spread is preserved either way. */
.hero { position: relative; display: grid; grid-template-rows: 1fr; min-height: clamp(600px, 72vh, 780px); overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,14,16,0.5) 0%, rgba(28,14,16,0.1) 30%, rgba(28,14,16,0.88) 100%);
}
.hero-content {
  position: relative; box-sizing: border-box;
  display: flex; flex-direction: column; justify-content: space-between;
  padding-top: 20px; padding-bottom: 26px;
}
.hero-logo-wrap {
  align-self: flex-start; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 16px rgba(28,14,16,0.28);
  /* Sits in a height-constrained flex column; without flex-shrink:0, its own
     overflow:hidden makes flexbox treat its min-height as 0, letting the
     browser squeeze it shorter than the logo needs and clip the bottom. */
  flex-shrink: 0;
  background: rgba(248,242,230,0.96);
  padding: 10px;
}
.hero-logo {
  width: clamp(130px, 15vw, 210px); max-width: 100%; height: auto;
  display: block; object-fit: contain;
}
.hero-col { display: flex; flex-direction: column; gap: 16px; }
.hero-title {
  margin: 0; font-family: 'Libre Baskerville', Georgia, serif; font-weight: 400;
  font-size: clamp(36px, 4.4vw, 54px); line-height: 1.12; color: #FFFFFF;
}
.hero-sub { margin: 0; font-size: 16px; line-height: 1.5; color: #F2E4D5; max-width: 320px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.badge {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: #FFFFFF; border: 1px solid rgba(255,255,255,0.55); border-radius: 999px; padding: 7px 12px;
}
.hero-price-card {
  background: rgba(248,242,230,0.96); border-radius: 18px; padding: 16px 18px;
  display: flex; flex-direction: column; gap: 6px;
}
.hero-price-row { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.hero-price-label { font-family: 'Libre Baskerville', Georgia, serif; font-size: 19px; }
.hero-price-value { font-family: 'Libre Baskerville', Georgia, serif; font-size: 28px; color: var(--maroon); }
.hero-price-value .unit { font-size: 15px; font-family: 'Lato', sans-serif; }
.hero-price-note { font-size: 14px; line-height: 1.45; color: var(--muted2); }
.hero-ctas { display: flex; flex-direction: column; gap: 10px; }

.btn {
  display: block; text-align: center; border-radius: 999px; cursor: pointer;
  font-family: 'Lato', sans-serif; border: none;
}
.btn-block { width: 100%; }
.btn-wide { max-width: 420px; margin: 0 auto; }
.btn-primary {
  background: var(--maroon); color: var(--cream-panel);
  font-weight: 900; font-size: 17px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 19px 24px;
}
.btn-primary:hover { background: var(--maroon-dark); color: var(--cream-panel); }
.btn-outline {
  color: #FFFFFF; font-weight: 700; font-size: 15px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 13px 24px; border: 1.5px solid rgba(255,255,255,0.6); background: transparent;
}
.btn-outline:hover { background: rgba(255,255,255,0.14); color: #FFFFFF; }
.btn-cta {
  border: none; border-radius: 999px; background: var(--maroon); color: var(--cream-panel);
  font-weight: 900; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 16px 26px;
}
.btn-cta:hover { background: var(--maroon-dark); }
.btn-cta:disabled { background: #D8CDB8; color: #8A7F70; cursor: not-allowed; }
.btn-text {
  border: none; background: transparent; color: var(--maroon);
  font-family: 'Lato', sans-serif; font-weight: 700; font-size: 14px; padding: 10px; cursor: pointer;
}

/* ---------- Offer band ---------- */
.offer-band {
  background: var(--maroon); color: var(--cream-panel);
  padding: 26px 22px; display: flex; flex-direction: column; gap: 8px; text-align: center;
}
.offer-title { font-family: 'Libre Baskerville', Georgia, serif; font-size: 30px; line-height: 1.15; color: #FFFFFF; }
.offer-note { font-size: 14px; line-height: 1.5; color: #F0DACD; }

/* ---------- Shop ---------- */
.shop-intro { padding-top: 34px; padding-bottom: 20px; display: flex; flex-direction: column; gap: 6px; }
.shop-grid { padding-top: 14px; display: flex; flex-direction: column; gap: 16px; }

.item-card {
  background: #FFFFFF; border-radius: 20px; overflow: hidden;
  box-shadow: 0 6px 18px rgba(44,36,34,0.08); display: flex; flex-direction: column;
}
.item-photo { height: 180px; background-color: #EFE5D2; background-size: cover; background-position: center; }
.item-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 10px; }
.item-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.item-name { margin: 0; font-family: 'Libre Baskerville', Georgia, serif; font-weight: 400; font-size: 20px; line-height: 1.2; }
.item-price { flex: 0 0 auto; font-family: 'Libre Baskerville', Georgia, serif; font-size: 18px; color: var(--maroon); }
.item-price .unit { font-family: 'Lato', sans-serif; font-size: 13px; }
.item-desc { font-size: 14px; line-height: 1.45; color: var(--muted); }
.item-row { display: flex; align-items: center; gap: 12px; padding-top: 2px; }

.qty-control {
  display: flex; align-items: center; gap: 0;
  border: 1.5px solid var(--border-tan); border-radius: 999px; overflow: hidden; flex: 0 0 auto;
}
.qty-btn {
  width: 46px; height: 46px; border: none; background: transparent;
  font-size: 22px; color: var(--maroon); cursor: pointer; line-height: 1;
}
.qty-btn:hover { background: #F3EADA; }
.qty-value { min-width: 62px; text-align: center; font-weight: 700; font-size: 15px; }
.add-btn {
  flex: 1 1 auto; min-height: 48px; border: none; border-radius: 999px;
  background: var(--maroon); color: var(--cream-panel); font-family: 'Lato', sans-serif;
  font-weight: 900; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer;
}
.add-btn:hover { background: var(--maroon-dark); }

/* ---------- Mix card ---------- */
.mix-card {
  margin-top: 26px;
  background: var(--tan-panel); border: 1.5px dashed var(--border-tan2); border-radius: 20px;
  padding: 22px; display: flex; flex-direction: column; gap: 10px;
}
.mix-title { font-family: 'Libre Baskerville', Georgia, serif; font-size: 24px; line-height: 1.2; }
.progress-track { height: 10px; border-radius: 999px; background: #DFD2BB; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 999px; background: var(--maroon); width: 0%; transition: width 0.2s ease; }
.mix-message { font-size: 14px; font-weight: 700; color: var(--maroon); }

/* ---------- How it works ---------- */
.how-it-works {
  margin-top: 34px; background: var(--dark-panel); color: var(--dark-text);
  padding: 34px 22px; display: flex; flex-direction: column; gap: 22px;
}
.steps-grid { display: flex; flex-direction: column; gap: 16px; }
.step { display: flex; gap: 14px; align-items: center; }
.step-num {
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 999px;
  border: 1px solid rgba(233,222,203,0.45); display: flex; align-items: center; justify-content: center;
  font-family: 'Libre Baskerville', Georgia, serif; font-size: 15px; color: #F0D9C0;
}
.step-text { font-size: 17px; color: #FFFFFF; }

/* ---------- Pickup & delivery ---------- */
.pickup-delivery { padding-top: 34px; padding-bottom: 0; display: flex; flex-direction: column; gap: 16px; }
.fulfillment-card {
  background: #FFFFFF; border-radius: 20px; padding: 20px; display: flex; flex-direction: column;
  gap: 10px; box-shadow: 0 6px 18px rgba(44,36,34,0.07);
}
.fulfillment-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.fulfillment-time { font-size: 16px; font-weight: 700; }
.tag { font-size: 13px; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.tag-green { color: var(--green); }
.tag-red { color: var(--rust); }
.tag-maroon {
  font-size: 11px; letter-spacing: 0.12em; color: #FFFFFF; background: var(--maroon);
  border-radius: 999px; padding: 4px 10px;
}
.fee-list { display: flex; flex-direction: column; gap: 8px; padding-top: 2px; }
.fee-row { display: flex; justify-content: space-between; font-size: 15px; border-bottom: 1px solid #EDE3D1; padding-bottom: 7px; color: var(--muted2); }
.fee-row-last { border-bottom: none; }
.fee-amt { font-weight: 700; color: var(--ink); }
.fee-unavailable { color: var(--rust); }

/* ---------- Desserts ---------- */
.desserts { padding-top: 32px; padding-bottom: 0; display: flex; flex-direction: column; gap: 16px; }
.desserts-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.dessert-grid { display: flex; flex-direction: column; gap: 14px; }
.dessert-card { background: #FFFFFF; border-radius: 20px; overflow: hidden; box-shadow: 0 6px 18px rgba(44,36,34,0.07); }
.dessert-img { width: 100%; height: 160px; object-fit: cover; display: block; }
.dessert-body { padding: 15px 18px 17px; display: flex; align-items: center; gap: 12px; }
.dessert-info { flex: 1 1 auto; min-width: 0; }
.dessert-name { font-family: 'Libre Baskerville', Georgia, serif; font-size: 19px; }
.dessert-price { font-size: 14px; color: var(--muted); }

/* ---------- Coming soon ---------- */
.coming-soon {
  margin-top: 32px; background: var(--maroon); color: var(--cream-panel);
  border-radius: 22px; padding: 26px 22px; display: flex; flex-direction: column; gap: 14px;
}
.coming-block { display: flex; flex-direction: column; gap: 12px; }
.coming-block-border { border-top: 1px solid rgba(248,242,230,0.3); padding-top: 12px; }
.coming-block:first-of-type { border-top: 1px solid rgba(248,242,230,0.3); padding-top: 14px; }
.coming-title { font-family: 'Libre Baskerville', Georgia, serif; font-size: 22px; color: #FFFFFF; }
.coming-note { font-size: 14px; color: #F0DACD; }
.cooked-grid { display: flex; flex-direction: column; gap: 10px; }
.cooked-item { background: rgba(248,242,230,0.1); border-radius: 14px; padding: 10px 12px; display: flex; align-items: center; gap: 12px; }
.cooked-photo {
  flex: 0 0 auto; width: 106px; height: 106px; border-radius: 10px; overflow: hidden;
  background: rgba(248,242,230,0.18); background-size: cover; background-position: center;
}
.cooked-info { flex: 1 1 auto; min-width: 0; }
.cooked-name { font-family: 'Libre Baskerville', Georgia, serif; font-size: 18px; color: #FFFFFF; }
.cooked-price { font-size: 14px; color: #F0DACD; }
.cooked-badge {
  flex: 0 0 auto; font-size: 10px; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--maroon); background: #F0DACD; border-radius: 999px; padding: 5px 9px; text-align: center; line-height: 1.3;
}

/* ---------- Referral ---------- */
.referral {
  margin-top: 32px; background: #FFFFFF; border-radius: 22px; padding: 26px 22px;
  display: flex; flex-direction: column; gap: 14px; box-shadow: 0 6px 18px rgba(44,36,34,0.07);
}
.referral-code-card { background: var(--tan-panel); border-radius: 16px; padding: 16px 18px; display: flex; flex-direction: column; gap: 10px; }
.referral-code-label { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.referral-code { font-family: 'Libre Baskerville', Georgia, serif; font-size: 24px; letter-spacing: 0.04em; color: var(--maroon); }
.referral-link { font-size: 14px; line-height: 1.5; color: var(--muted2); word-break: break-all; }
.referral-rules { display: flex; flex-direction: column; gap: 9px; border-top: 1px solid #EDE3D1; padding-top: 14px; }

/* ---------- Our story ---------- */
.our-story { margin-top: 34px; background: var(--tan-panel); padding: 32px 22px; display: flex; flex-direction: column; gap: 20px; }
.story-grid { display: flex; flex-direction: column; gap: 20px; }
.story-img-wrap { display: flex; flex-direction: column; gap: 8px; }
/* aspect-ratio matches our-story-food-truck.png's own proportions (1951x806)
   so the full photo shows with no forced crop; object-fit:cover stays as a
   safety net for any container that ends up a slightly different ratio. */
.story-img { width: 100%; aspect-ratio: 1951 / 806; object-fit: cover; object-position: center; border-radius: 20px; display: block; }
.story-caption { font-size: 13px; line-height: 1.45; color: var(--muted); font-style: italic; }

/* ---------- Instagram (currently unused -- markup preserved in a comment
   in index.html for later reuse; these rules are kept for when it returns) ---------- */
.instagram { padding-top: 32px; padding-bottom: 0; display: flex; flex-direction: column; gap: 14px; }
.instagram-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.ig-handle { font-weight: 700; font-size: 15px; }
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.ig-img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 12px; display: block; }

/* ---------- Catering & Private Experiences ---------- */
.catering {
  margin-top: 32px; background: #FFFFFF; border-radius: 22px; padding: 26px 22px;
  display: flex; flex-direction: column; gap: 14px; box-shadow: 0 6px 18px rgba(44,36,34,0.07);
}
.catering-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.catering-photo { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 12px; display: block; }
.catering-services { display: flex; flex-direction: column; gap: 8px; }
.catering-service {
  background: var(--tan-panel); border-radius: 12px; padding: 12px 16px;
  font-family: 'Libre Baskerville', Georgia, serif; font-size: 16px; color: var(--ink);
}

/* ---------- Mailing list ---------- */
.mailing-list {
  margin-top: 32px; background: var(--tan-panel); border-radius: 22px; padding: 26px 22px;
  display: flex; flex-direction: column; gap: 14px;
}
.field {
  border: 1.5px solid var(--border-tan); border-radius: 12px; padding: 14px; font-size: 16px;
  background: #FFFFFF; color: var(--ink); width: 100%;
}
.field-upper { text-transform: uppercase; }
.checkbox-row { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.45; color: var(--muted2); cursor: pointer; }
.checkbox-row input { width: 20px; height: 20px; accent-color: var(--maroon); margin-top: 1px; flex: 0 0 auto; }
.thanks-title { font-family: 'Libre Baskerville', Georgia, serif; font-size: 20px; color: var(--maroon); }
#listOpenBlock { display: flex; flex-direction: column; gap: 12px; }

/* ---------- Final CTA ---------- */
.final-cta {
  margin-top: 34px; background: var(--dark-panel); color: var(--dark-text);
  padding: 36px 22px 40px; display: flex; flex-direction: column; gap: 18px; align-items: center; text-align: center;
}
.final-logo-wrap { border-radius: 14px; overflow: hidden; }
.final-logo { width: clamp(180px, 22vw, 260px); height: auto; display: block; }
.final-price { font-family: 'Libre Baskerville', Georgia, serif; font-size: 24px; color: #FFFFFF; line-height: 1.25; }
.final-note { font-size: 14px; line-height: 1.6; color: #A79B89; }
.ig-handle-light { color: #F0D9C0; font-weight: 700; font-size: 16px; }
.ig-handle-light:hover { color: #FFFFFF; }

.bottom-spacer { height: 86px; }

/* ---------- Sticky bar ---------- */
.sticky-bar {
  position: sticky; bottom: 0; background: rgba(248,242,230,0.97);
  border-top: 1px solid rgba(44,36,34,0.14); padding: 12px 16px;
  display: flex; align-items: center; gap: 12px; backdrop-filter: blur(6px);
}
.sticky-info { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.sticky-total { font-size: 15px; font-weight: 900; }
.sticky-note { font-size: 12px; line-height: 1.3; color: var(--muted); }
.btn-sticky { flex: 0 0 auto; padding: 15px 22px; }

/* ---------- Cart drawer ---------- */
/* ---------- Generic modal (Request a different pickup time, etc.) --
   deliberately independent of the cart drawer's classes/JS below. ---------- */
.modal-overlay { position: fixed; inset: 0; z-index: 45; display: flex; flex-direction: column; justify-content: flex-end; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(28,14,16,0.55); }
.modal-panel {
  position: relative; max-width: 560px; width: 100%; margin: 0 auto; background: var(--cream-panel);
  border-radius: 26px 26px 0 0; max-height: 92vh; overflow-y: auto; box-shadow: 0 -12px 40px rgba(28,14,16,0.3);
}
.modal-header {
  position: sticky; top: 0; background: var(--cream-panel); padding: 18px 20px 12px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--border-cream);
}
.modal-body { padding: 16px 20px 24px; display: flex; flex-direction: column; gap: 14px; }
.modal-disclaimer {
  background: var(--tan-panel); border: 1px solid var(--border-tan); border-radius: 12px;
  padding: 12px 14px; font-size: 13px; line-height: 1.5; color: var(--muted2); font-weight: 700;
}
.modal-done { padding: 40px 24px 44px; text-align: center; display: flex; flex-direction: column; gap: 14px; align-items: center; }

.cart-overlay { position: fixed; inset: 0; z-index: 40; display: flex; flex-direction: column; justify-content: flex-end; }
.cart-backdrop { position: absolute; inset: 0; background: rgba(28,14,16,0.55); }
.cart-panel {
  position: relative; max-width: 560px; width: 100%; margin: 0 auto; background: var(--cream-panel);
  border-radius: 26px 26px 0 0; max-height: 92vh; overflow-y: auto; box-shadow: 0 -12px 40px rgba(28,14,16,0.3);
}
.cart-header {
  position: sticky; top: 0; background: var(--cream-panel); padding: 18px 20px 12px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--border-cream);
}
.cart-title { font-family: 'Libre Baskerville', Georgia, serif; font-size: 21px; }
.close-btn {
  width: 40px; height: 40px; border: 1.5px solid var(--border-tan); border-radius: 999px;
  background: transparent; font-size: 18px; color: var(--maroon); cursor: pointer; line-height: 1;
}
.close-btn:hover { background: var(--tan-panel); }

.cart-empty { padding: 40px 24px 44px; text-align: center; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.cart-empty-note { max-width: 260px; }

.cart-main { padding: 16px 20px 24px; display: flex; flex-direction: column; gap: 18px; }
.cart-lines { display: flex; flex-direction: column; gap: 10px; }
.cart-line { display: flex; align-items: center; gap: 12px; background: #FFFFFF; border-radius: 14px; padding: 12px 14px; }
.cart-line-info { flex: 1 1 auto; min-width: 0; }
.cart-line-name { font-size: 16px; font-weight: 700; }
.cart-line-detail { font-size: 13px; color: var(--muted); }
.cart-line-amount { flex: 0 0 auto; font-family: 'Libre Baskerville', Georgia, serif; font-size: 17px; }
.cart-line-remove { flex: 0 0 auto; width: 34px; height: 34px; border: none; background: transparent; color: var(--rust); font-size: 16px; cursor: pointer; }
.cart-line-remove:hover { color: var(--maroon); }

.mix-banner { background: var(--tan-panel); border-radius: 14px; padding: 14px 16px; font-size: 14px; font-weight: 700; color: var(--maroon); line-height: 1.45; }

.section-label { font-size: 12px; font-weight: 900; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rust); }
.fulfillment-choice { display: flex; flex-direction: column; gap: 10px; }
.fulfillment-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.choice-btn {
  background: #FFFFFF; color: var(--ink); border: 1.5px solid var(--border-tan);
  border-radius: 14px; padding: 14px; font-family: 'Lato', sans-serif; cursor: pointer;
  text-align: left; display: flex; flex-direction: column; gap: 3px; min-height: 60px;
}
.choice-btn.active { background: var(--maroon); color: var(--cream-panel); border-color: var(--maroon); }
.choice-title { font-weight: 900; font-size: 15px; }
.choice-sub { font-size: 12px; line-height: 1.3; opacity: 0.85; }
.blocked-note {
  background: var(--danger-bg); border: 1px solid var(--danger-border); border-radius: 12px;
  padding: 12px 14px; font-size: 14px; line-height: 1.45; color: var(--danger-text);
}
.fulfillment-note {
  background: var(--tan-panel); border: 1px solid var(--border-tan); border-radius: 12px;
  padding: 12px 14px; font-size: 14px; line-height: 1.45; color: var(--muted2);
}

.band-choice { display: flex; flex-direction: column; gap: 8px; }
.band-list { display: flex; flex-direction: column; gap: 8px; }
.row-btn {
  background: #FFFFFF; color: var(--ink); border: 1.5px solid var(--border-tan);
  border-radius: 12px; padding: 14px 16px; font-family: 'Lato', sans-serif; font-size: 15px;
  cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 50px;
  width: 100%;
}
.row-btn.active { background: var(--maroon); color: var(--cream-panel); border-color: var(--maroon); }
.row-btn span:last-child { font-weight: 900; }

.totals-block { display: flex; flex-direction: column; gap: 9px; border-top: 1px solid var(--border-cream); padding-top: 16px; }
.total-row { display: flex; justify-content: space-between; font-size: 15px; }
.total-row .muted { color: var(--muted2); }
.total-row-green { color: var(--green); }
.total-row-muted { color: var(--muted); }
.total-row-tiny { font-size: 13px; color: var(--muted3); }
.total-row-final { align-items: baseline; border-top: 1px solid var(--border-cream); padding-top: 11px; }
.total-final-label { font-family: 'Libre Baskerville', Georgia, serif; font-size: 19px; }
.total-final-value { font-family: 'Libre Baskerville', Georgia, serif; font-size: 25px; color: var(--maroon); }

.info-banner { background: var(--tan-panel); border-radius: 14px; padding: 13px 16px; font-size: 14px; line-height: 1.5; color: var(--muted2); }

.cart-form { padding: 18px 20px 26px; display: flex; flex-direction: column; gap: 16px; }
.form-fields { display: flex; flex-direction: column; gap: 12px; }
.field-label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 700; color: var(--muted2); }
.field-hint { font-size: 13px; color: var(--muted3); line-height: 1.4; font-weight: 400; }
.payment-choice { display: flex; flex-direction: column; gap: 8px; }
.payment-list { display: flex; flex-direction: column; gap: 8px; }
.payment-list .row-btn span:last-child { font-size: 13px; text-align: right; line-height: 1.35; font-weight: 400; }
.form-total-row {
  display: flex; justify-content: space-between; align-items: baseline;
  background: var(--tan-panel); border-radius: 14px; padding: 14px 16px;
}
.form-total-row .total-final-value { font-size: 23px; }
.form-actions { display: flex; flex-direction: column; gap: 10px; }
.form-footnote { font-size: 12px; line-height: 1.5; color: var(--muted3); }

.cart-done { padding: 30px 22px 38px; display: flex; flex-direction: column; gap: 16px; text-align: center; align-items: center; }
.done-check {
  width: 62px; height: 62px; border-radius: 999px; background: var(--maroon); color: var(--cream-panel);
  display: flex; align-items: center; justify-content: center; font-family: 'Libre Baskerville', Georgia, serif; font-size: 28px;
}
.done-title { font-family: 'Libre Baskerville', Georgia, serif; font-size: 24px; }
.status-pill {
  font-size: 12px; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; color: #FFFFFF;
  border-radius: 999px; padding: 7px 14px;
}
.done-note { max-width: 320px; }
.done-summary {
  width: 100%; background: var(--tan-panel); border-radius: 14px; padding: 14px 16px;
  display: flex; flex-direction: column; gap: 7px; text-align: left;
}
.done-row { display: flex; justify-content: space-between; font-size: 14px; }
.done-row .strong { font-weight: 700; }

/* ---------- Responsive ---------- */
@media (min-width: 760px) {
  .content-pad, .hero-pad { padding-left: clamp(22px, 5vw, 64px); padding-right: clamp(22px, 5vw, 64px); }
  .side-margin { margin-left: clamp(22px, 5vw, 64px); margin-right: clamp(22px, 5vw, 64px); }
  .shop-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .dessert-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .catering-services { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .pickup-delivery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; align-items: start; }
  .pickup-delivery > :first-child { grid-column: 1 / -1; }
  .story-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 32px; align-items: center; }
  .steps-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 32px; }
  .hero-col { max-width: 620px; }
  .cooked-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
}
@media (min-width: 1060px) {
  .shop-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .steps-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
