:root {
  --cream: #f6efe5;
  --cream-2: #efe2d0;
  --paper: #fffaf3;
  --ink: #30231d;
  --muted: #75665d;
  --brown: #7b3f2c;
  --brown-dark: #4b2a20;
  --caramel: #c98955;
  --sage: #6f7560;
  --line: rgba(63, 43, 32, 0.14);
  --shadow: 0 24px 70px rgba(74, 48, 33, 0.13);
  --radius: 28px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { display: block; max-width: 100%; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; padding: 12px 18px; background: var(--ink); color: white; }
.skip-link:focus { top: 16px; }
.section-shell { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }

.top-note {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--brown-dark);
  color: #f7eee4;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.top-note__divider { width: 3px; height: 3px; background: var(--caramel); border-radius: 50%; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 88px;
  padding-inline: max(24px, calc((100vw - 1320px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 239, 229, .94);
  box-shadow: 0 9px 28px rgba(74, 48, 33, .09);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
section[id] { scroll-margin-top: 104px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; width: fit-content; }
.brand__seal {
  position: relative;
  width: 38px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--brown);
  border-radius: 50% 46% 52% 48%;
  color: var(--brown);
  font: italic 700 21px/1 var(--serif);
  transform: rotate(-5deg);
}
.brand__seal--image { overflow: hidden; padding: 2px; transform: none; }
.brand__seal--image img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.brand__seal--reference { padding: 0; border-radius: 50%; background: #f5eee4; }
.brand__seal--reference img {
  position: absolute;
  left: 50%;
  top: 92%;
  width: 262%;
  max-width: none;
  height: auto;
  border-radius: 0;
  transform: translate(-50%, -92%);
}
.brand__text { display: flex; flex-direction: column; font-family: var(--serif); font-size: 13px; line-height: 1.05; }
.brand__text strong { font-size: 19px; font-weight: 500; }
.site-nav { display: flex; gap: 30px; }
.site-nav a { text-decoration: none; font-size: 13px; font-weight: 650; position: relative; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--brown); transition: right .25s ease; }
.site-nav a:hover::after { right: 0; }
.site-header > .button { justify-self: end; }

.button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  min-height: 52px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: var(--brown);
  color: white;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(104, 57, 39, 0.17);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: #693422; box-shadow: 0 14px 30px rgba(104,57,39,.22); }
.button:focus-visible, .icon-button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(201, 137, 85, .4); outline-offset: 2px; }
.button:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }
.button--compact { min-height: 42px; padding-inline: 22px; }
.button--cream { background: var(--cream); color: var(--brown-dark); }
.button--cream:hover { background: white; }
.button--secondary { background: transparent; color: var(--brown); border: 1px solid var(--line); box-shadow: none; }
.button--whatsapp { min-height: 48px; padding-inline: 21px; }
.button--whatsapp:hover { border-color: var(--brown); background: rgba(255,255,255,.42); color: var(--brown); box-shadow: none; }
.button--danger { background: #9b3c32; }
.text-link { font-size: 13px; font-weight: 750; text-underline-offset: 5px; }

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 70px;
  align-items: center;
  padding-block: 70px 88px;
}
.eyebrow { display: inline-flex; align-items: center; gap: 12px; color: var(--brown); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow > span { width: 27px; height: 1px; background: currentColor; }
.hero h1, .section-heading h2, .delivery-card h2, .final-cta h2 {
  margin: 25px 0 24px;
  font-family: var(--serif);
  font-size: clamp(58px, 6vw, 92px);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.052em;
}
.hero h1 em, .section-heading h2 em, .delivery-card h2 em { color: var(--brown); font-weight: 400; }
.hero__lead { max-width: 520px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.72; }
.hero__actions { display: flex; align-items: center; gap: 28px; margin-top: 36px; }
.hero__channel-note { margin: 11px 0 0; color: var(--muted); font-size: 12px; }
.hero__facts { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 500px; margin: 52px 0 0; padding-top: 22px; border-top: 1px solid var(--line); }
.hero__facts div + div { border-left: 1px solid var(--line); padding-left: 22px; }
.hero__facts dt { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero__facts dd { margin: 7px 0 0; font-family: var(--serif); font-size: 23px; }
.hero__visual { position: relative; }
.hero__image-frame { position: relative; overflow: hidden; border-radius: 48% 48% 24px 24px; background: var(--cream-2); box-shadow: var(--shadow); }
.hero__image-frame::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.25); pointer-events: none; }
.hero__image-frame img { width: 100%; height: 570px; object-fit: cover; }
.demo-label { position: absolute; right: 18px; bottom: 18px; padding: 8px 11px; border-radius: 99px; background: rgba(255,250,243,.9); color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(8px); }
.hero__stamp { position: absolute; left: -42px; bottom: 42px; width: 132px; aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 50%; background: var(--brown); color: white; transform: rotate(-8deg); box-shadow: 0 16px 40px rgba(75,42,32,.25); }
.hero__stamp::before { content: ""; position: absolute; inset: 7px; border: 1px dashed rgba(255,255,255,.5); border-radius: inherit; }
.hero__stamp span { font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.hero__stamp strong { font: italic 21px/1.1 var(--serif); }

.marquee { overflow: hidden; border-block: 1px solid var(--line); background: rgba(255,255,255,.2); }
.marquee__inner { min-width: max-content; height: 66px; padding-inline: 5vw; display: flex; align-items: center; justify-content: space-around; gap: 40px; color: var(--brown-dark); font: italic 17px/1 var(--serif); }
.marquee__inner i { width: 5px; height: 5px; border-radius: 50%; background: var(--caramel); }

.product-section { padding-block: 130px; }
.section-heading { display: grid; grid-template-columns: .8fr 1.3fr .9fr; align-items: end; margin-bottom: 62px; }
.section-heading .eyebrow { align-self: start; margin-top: 14px; }
.section-heading h2 { margin: 0; font-size: clamp(48px, 5.3vw, 76px); }
.section-heading > p { margin: 0 0 6px 40px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.size-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.size-card { position: relative; min-height: 390px; padding: 34px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.28); transition: transform .25s ease, background .25s ease, box-shadow .25s ease; }
.size-card:hover { transform: translateY(-6px); background: var(--paper); box-shadow: var(--shadow); }
.size-card__number { position: absolute; top: 19px; right: 24px; color: rgba(75,42,32,.16); font: italic 64px/1 var(--serif); }
.size-card__visual { height: 144px; margin: 10px 0 22px; display: grid; place-items: end center; }
.size-card__shape {
  width: calc(118px * var(--size-scale));
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 2px solid rgba(123,63,44,.5);
  border-radius: 7px;
  background: linear-gradient(to bottom, #633522 0 13%, #d7ae79 13% 25%, #f0d5a6 25% 43%, #c28c52 43% 53%, #f0d5a6 53% 72%, #bd8048 72% 82%, #ead0a2 82% 100%);
  color: var(--brown-dark);
  box-shadow: 0 10px 24px rgba(75,42,32,.12);
}
.size-card__shape span { padding: 5px 7px; border-radius: 99px; background: rgba(255,250,243,.88); font: 14px/1 var(--serif); white-space: nowrap; }
.size-card h3 { margin: auto 0 5px; font: 34px/1 var(--serif); }
.size-card__meta { color: var(--muted); font-size: 12px; }
.size-card__footer { display: flex; justify-content: space-between; align-items: end; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.size-card__footer strong { font: 30px/1 var(--serif); }
.size-card__footer button { appearance: none; border: 0; background: transparent; color: var(--brown); font-size: 12px; font-weight: 800; cursor: pointer; }
.allergen-note { margin-top: 20px; padding: 20px 24px; display: flex; align-items: center; gap: 16px; border: 1px dashed rgba(123,63,44,.25); border-radius: 18px; color: var(--muted); }
.allergen-note__icon { width: 30px; height: 30px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: var(--cream-2); color: var(--brown); font: italic 17px/1 var(--serif); }
.allergen-note strong { color: var(--ink); font-size: 12px; }
.allergen-note p { margin: 3px 0 0; font-size: 12px; }

.process-section { padding-block: 125px 90px; background: var(--brown-dark); color: var(--cream); }
.section-heading--light { grid-template-columns: .8fr 2.2fr; }
.section-heading--light h2 { color: white; }
.section-heading--light h2 em { color: #d8a77b; }
.eyebrow--light { color: #d8a77b; }
.process-grid { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 75px 0 0; padding: 0; border-top: 1px solid rgba(255,255,255,.16); }
.process-grid li { min-height: 240px; padding: 27px 28px; border-right: 1px solid rgba(255,255,255,.16); }
.process-grid li:first-child { border-left: 1px solid rgba(255,255,255,.16); }
.process-grid li > span { color: #d8a77b; font: italic 14px/1 var(--serif); }
.process-grid h3 { margin: 60px 0 10px; font: 30px/1 var(--serif); }
.process-grid p { margin: 0; color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.6; }
.process-cta { min-height: 96px; margin-top: 54px; padding: 20px 0; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.16); }
.process-cta p { max-width: 490px; margin: 0; color: rgba(255,255,255,.66); font-size: 13px; line-height: 1.6; }

.delivery-section { padding-block: 120px; }
.delivery-card { display: grid; grid-template-columns: 1.2fr .8fr; overflow: hidden; border-radius: 34px; background: var(--paper); box-shadow: var(--shadow); }
.delivery-card__copy { padding: 76px 80px; }
.delivery-card h2 { margin: 22px 0 25px; font-size: clamp(48px, 5vw, 70px); }
.delivery-card__copy > p { max-width: 550px; color: var(--muted); line-height: 1.75; }
.delivery-card__hours { display: flex; gap: 46px; margin-top: 40px; }
.delivery-card__hours div { display: flex; flex-direction: column; gap: 6px; }
.delivery-card__hours span { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.delivery-card__hours strong { font: 21px/1 var(--serif); }
.delivery-card__zones { padding: 56px; display: flex; flex-direction: column; justify-content: center; gap: 12px; background: var(--cream-2); }
.zone-price { padding: 22px; display: grid; grid-template-columns: 70px 1fr; align-items: center; border: 1px solid rgba(75,42,32,.12); border-radius: 18px; background: rgba(255,255,255,.3); }
.zone-price strong { font: 30px/1 var(--serif); color: var(--brown); }
.zone-price span { color: var(--muted); font-size: 12px; line-height: 1.7; }
.free-shipping { margin-top: 10px; padding: 20px 22px; display: flex; align-items: center; gap: 15px; border-radius: 18px; background: var(--brown); color: white; }
.free-shipping > span { color: #e2b185; font-size: 24px; }
.free-shipping p { margin: 0; font-size: 12px; line-height: 1.45; }

.faq-section { padding-block: 70px 140px; }
.faq-list { max-width: 850px; margin-left: auto; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; padding: 28px 52px 28px 0; position: relative; font: 23px/1.25 var(--serif); cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 23px; color: var(--brown); font: 30px/1 var(--serif); transition: transform .2s ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list p { margin: -8px 60px 28px 0; color: var(--muted); font-size: 14px; line-height: 1.75; }

.final-cta { padding: 100px 24px; background: var(--caramel); text-align: center; color: var(--brown-dark); }
.final-cta__inner span { font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.final-cta h2 { margin: 15px 0 35px; font-size: clamp(54px, 7vw, 92px); }
.site-footer { min-height: 220px; padding: 55px max(24px, calc((100% - 1200px)/2)); display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: 40px; background: var(--brown-dark); color: var(--cream); }
.brand--footer .brand__seal { border-color: #d8a77b; color: #d8a77b; }
.site-footer__contact { justify-self: end; display: flex; flex-direction: column; align-items: end; gap: 9px; font-size: 13px; }
.site-footer__contact a { text-decoration-color: rgba(255,255,255,.3); text-underline-offset: 4px; }
.site-footer__legal { grid-column: 1 / -1; padding-top: 28px; display: flex; gap: 24px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.48); font-size: 11px; }
.site-footer__legal span { margin-right: auto; }

.order-dialog, .manage-dialog { width: 100%; max-width: none; height: 100%; max-height: none; margin: 0; padding: 0; border: 0; background: var(--cream); color: var(--ink); }
.order-dialog::backdrop, .manage-dialog::backdrop { background: rgba(31,22,18,.6); backdrop-filter: blur(7px); }
.dialog-shell { min-height: 100%; display: flex; flex-direction: column; }
.dialog-header { height: 82px; padding: 0 30px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-bottom: 1px solid var(--line); }
.mobile-order-footer, .mobile-summary-backdrop { display: none; }
[hidden] { display: none !important; }
.dialog-progress { display: flex; gap: 7px; }
.dialog-progress span { width: 42px; height: 3px; border-radius: 9px; background: rgba(75,42,32,.14); }
.dialog-progress span.is-active { background: var(--brown); }
.icon-button { appearance: none; justify-self: end; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--ink); font: 28px/1 var(--serif); cursor: pointer; }
.order-layout { flex: 1; display: grid; grid-template-columns: minmax(0, 1fr) 390px; }
.order-content { padding: 58px max(40px, calc((100vw - 1120px)/2)); overflow-y: auto; }
.order-content__inner { max-width: 720px; margin-inline: auto; }
.step-kicker { color: var(--brown); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.step-title { margin: 10px 0 12px; font: 46px/1.05 var(--serif); letter-spacing: -.025em; }
.step-copy { margin: 0 0 34px; color: var(--muted); line-height: 1.65; }
.order-summary { padding: 50px 38px; border-left: 1px solid var(--line); background: rgba(255,255,255,.28); }
.summary-sticky { position: sticky; top: 30px; }
.summary-heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.summary-sticky h3 { margin: 0 0 25px; font: 27px/1 var(--serif); }
.summary-close { display: none; appearance: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--ink); font: 25px/1 var(--serif); cursor: pointer; }
.summary-lines { display: grid; gap: 13px; }
.summary-line { display: flex; justify-content: space-between; gap: 15px; color: var(--muted); font-size: 13px; }
.summary-line strong { color: var(--ink); font-weight: 700; }
.summary-divider { height: 1px; margin: 20px 0; background: var(--line); }
.summary-total { display: flex; align-items: end; justify-content: space-between; }
.summary-total span { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.summary-total strong { font: 32px/1 var(--serif); }
.summary-note { margin-top: 22px; padding: 14px; border-radius: 13px; background: var(--cream-2); color: var(--muted); font-size: 11px; line-height: 1.55; }

.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.choice-card { position: relative; padding: 24px 19px; min-height: 190px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.3); cursor: pointer; transition: border .2s, background .2s, transform .2s; }
.choice-card:hover { transform: translateY(-3px); background: white; }
.choice-card.is-selected { border-color: var(--brown); box-shadow: inset 0 0 0 1px var(--brown); background: var(--paper); }
.choice-card__visual { height: 66px; display: grid; place-items: end center; }
.choice-card__shape {
  width: calc(64px * var(--size-scale));
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 2px solid rgba(123,63,44,.5);
  border-radius: 5px;
  background: linear-gradient(to bottom, #633522 0 13%, #d7ae79 13% 25%, #f0d5a6 25% 43%, #c28c52 43% 53%, #f0d5a6 53% 72%, #bd8048 72% 82%, #ead0a2 82% 100%);
  color: var(--brown-dark);
  box-shadow: 0 7px 16px rgba(75,42,32,.1);
}
.choice-card__shape span { padding: 3px 5px; border-radius: 99px; background: rgba(255,250,243,.9); font: 10px/1 var(--serif); white-space: nowrap; }
.choice-card h3 { margin: auto 0 4px; font: 24px/1 var(--serif); }
.choice-card p { margin: 0; color: var(--muted); font-size: 11px; }
.quantity-row { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.quantity { display: flex; align-items: center; gap: 13px; }
.quantity button { appearance: none; width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--ink); cursor: pointer; }
.quantity strong { min-width: 18px; text-align: center; }
.step-actions { margin-top: 38px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.step-actions .button:last-child { margin-left: auto; }
.back-button { appearance: none; border: 0; background: transparent; color: var(--muted); text-decoration: underline; text-underline-offset: 4px; cursor: pointer; }

.method-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.method-card { padding: 25px; border: 1px solid var(--line); border-radius: 19px; background: rgba(255,255,255,.25); text-align: left; cursor: pointer; }
.method-card.is-selected { border-color: var(--brown); box-shadow: inset 0 0 0 1px var(--brown); background: var(--paper); }
.method-card span { display: block; color: var(--brown); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.method-card strong { display: block; margin: 9px 0 6px; font: 24px/1 var(--serif); }
.method-card small { color: var(--muted); line-height: 1.5; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; margin-top: 26px; }
.field-grid--single { grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label, .field > span { font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; min-height: 49px; padding: 0 14px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.55); color: var(--ink); }
.field textarea { min-height: 90px; padding-block: 13px; resize: vertical; }
.field small { color: var(--muted); font-size: 11px; }

.calendar-toolbar { display: flex; align-items: end; justify-content: space-between; margin-bottom: 18px; }
.calendar-toolbar strong { font: 24px/1 var(--serif); }
.calendar-month-nav { display: flex; align-items: center; gap: 13px; }
.calendar-nav { appearance: none; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.45); color: var(--ink); cursor: pointer; }
.calendar-nav:disabled { opacity: .3; cursor: not-allowed; }
.calendar-legend { display: flex; gap: 14px; color: var(--muted); font-size: 10px; }
.calendar-legend span { display: inline-flex; align-items: center; gap: 5px; }
.calendar-legend i { width: 11px; height: 11px; border: 1px solid rgba(77, 91, 57, .22); border-radius: 4px; background: #dfe8d3; }
.calendar-legend span:last-child i { border-color: rgba(75,42,32,.08); background: rgba(75,42,32,.07); }
.calendar { padding: 18px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.34); }
.calendar__weekdays, .calendar__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 7px; }
.calendar__weekdays span { padding: 7px 0; color: var(--muted); font-size: 9px; font-weight: 800; text-align: center; text-transform: uppercase; }
.calendar-day { appearance: none; min-width: 0; min-height: 64px; padding: 8px 4px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border: 1px solid transparent; border-radius: 13px; color: var(--ink); cursor: pointer; transition: border-color .2s, background .2s, transform .2s; }
.calendar-day.is-available { border-color: rgba(77, 91, 57, .2); background: #dfe8d3; color: #3f4a32; }
.calendar-day.is-available:hover { border-color: var(--sage); background: #edf3e7; transform: translateY(-1px); }
.calendar-day.is-unavailable { border-color: rgba(75,42,32,.05); background: rgba(75,42,32,.055); color: rgba(48,35,29,.38); }
.calendar-day.is-selected, .calendar-day.is-selected:hover { border-color: var(--brown); background: var(--brown); color: white; transform: none; }
.calendar-day:disabled { cursor: not-allowed; }
.calendar-day__number { font: 18px/1 var(--serif); }
.calendar-day__status { max-width: 100%; overflow: hidden; font-size: 7px; font-weight: 800; letter-spacing: .02em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.calendar-day.is-selected .calendar-day__status { color: rgba(255,255,255,.7); }
.calendar-day--empty { min-height: 64px; }
.date-selection { margin-top: 15px; padding: 14px 17px; display: flex; align-items: center; justify-content: space-between; border-radius: 14px; background: var(--cream-2); font-size: 12px; }

.checkbox { display: flex; align-items: start; gap: 10px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.checkbox input { width: 18px; height: 18px; flex: 0 0 auto; accent-color: var(--brown); }
.checkbox strong { color: var(--ink); }
.form-error { margin-top: 18px; padding: 12px 14px; border-radius: 12px; background: #f8deda; color: #783129; font-size: 12px; }
.success-panel { max-width: 650px; margin: 10vh auto 0; text-align: center; }
.success-mark { width: 82px; height: 82px; margin: 0 auto 28px; display: grid; place-items: center; border-radius: 50%; background: var(--sage); color: white; font: 40px/1 var(--serif); }
.success-panel h2 { margin: 0 0 14px; font: 50px/1 var(--serif); }
.success-panel p { color: var(--muted); line-height: 1.65; }
.success-panel .button { margin-top: 18px; }

.manage-dialog { background: rgba(48,35,29,.78); }
.manage-card { width: min(650px, calc(100% - 32px)); margin: 7vh auto; padding: 42px; border-radius: 28px; background: var(--paper); box-shadow: var(--shadow); }
.manage-card__top { display: flex; align-items: start; justify-content: space-between; gap: 20px; }
.manage-card h2 { margin: 0; font: 38px/1 var(--serif); }
.status-pill { display: inline-flex; padding: 7px 11px; border-radius: 999px; background: #e7eadf; color: #556044; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.manage-details { margin: 30px 0; display: grid; gap: 13px; }
.manage-details div { display: flex; justify-content: space-between; padding-bottom: 12px; border-bottom: 1px solid var(--line); font-size: 13px; }
.manage-details span { color: var(--muted); }
.manage-actions { display: flex; justify-content: flex-end; gap: 12px; }

.toast { position: fixed; z-index: 9999; left: 50%; bottom: 24px; max-width: calc(100% - 32px); padding: 13px 18px; border-radius: 999px; background: var(--ink); color: white; font-size: 12px; box-shadow: var(--shadow); transform: translate(-50%, 30px); opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal--delay { transition-delay: .12s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (min-width: 981px) and (max-width: 1440px) {
  .section-shell { width: min(1160px, calc(100% - 40px)); }
  .top-note { height: 30px; font-size: 9px; }
  .site-header { height: 72px; padding-inline: max(20px, calc((100vw - 1240px) / 2)); }
  section[id] { scroll-margin-top: 86px; }
  .site-nav { gap: 22px; }
  .site-nav a { font-size: 12px; }
  .site-header > .button { min-height: 40px; padding-inline: 20px; }

  .hero { min-height: 580px; grid-template-columns: .9fr 1.1fr; gap: 48px; padding-block: 42px 56px; }
  .hero h1 { margin: 18px 0 18px; font-size: clamp(60px, 5.2vw, 70px); }
  .hero__lead { font-size: 15px; line-height: 1.58; }
  .hero__actions { gap: 16px; margin-top: 26px; }
  .hero__facts { margin-top: 32px; padding-top: 17px; }
  .hero__facts dd { font-size: 20px; }
  .hero__image-frame img { height: 450px; }
  .hero__stamp { left: -28px; bottom: 28px; width: 108px; }
  .hero__stamp strong { font-size: 18px; }
  .marquee__inner { height: 54px; font-size: 15px; }

  .product-section { padding-block: 82px; }
  .section-heading { margin-bottom: 42px; }
  .section-heading h2 { font-size: 56px; }
  .section-heading > p { margin-left: 28px; font-size: 14px; }
  .size-card { min-height: 315px; padding: 26px; }
  .size-card__number { top: 16px; right: 20px; font-size: 50px; }
  .size-card__visual { height: 110px; margin: 6px 0 17px; }
  .size-card__shape { width: calc(96px * var(--size-scale)); }
  .size-card__shape span { font-size: 12px; }
  .size-card h3 { font-size: 29px; }
  .size-card__footer { margin-top: 18px; padding-top: 16px; }
  .size-card__footer strong { font-size: 26px; }

  .process-section { padding-block: 80px 62px; }
  .process-grid { margin-top: 46px; }
  .process-grid li { min-height: 185px; padding: 23px; }
  .process-grid h3 { margin-top: 40px; font-size: 25px; }
  .process-cta { min-height: 78px; margin-top: 34px; }

  .delivery-section { padding-block: 82px; }
  .delivery-card__copy { padding: 48px 52px; }
  .delivery-card h2 { margin: 17px 0 19px; font-size: 54px; }
  .delivery-card__copy > p { font-size: 14px; line-height: 1.62; }
  .delivery-card__hours { margin-top: 28px; }
  .delivery-card__zones { padding: 38px; }
  .zone-price { padding: 18px; }
  .faq-section { padding-block: 50px 90px; }
  .faq-list summary { padding-block: 23px; font-size: 20px; }
  .faq-list summary::after { top: 18px; }
  .final-cta { padding-block: 70px; }
  .final-cta h2 { font-size: 68px; }
  .site-footer { min-height: 180px; padding-top: 42px; padding-bottom: 42px; }

  .dialog-header { height: 68px; padding-inline: 24px; }
  .order-layout { grid-template-columns: minmax(0, 1fr) 330px; }
  .order-content { padding: 34px max(28px, calc((100vw - 1040px)/2)); }
  .step-title { font-size: 38px; }
  .step-copy { margin-bottom: 22px; font-size: 14px; }
  .order-summary { padding: 34px 26px; }
  .summary-sticky { top: 22px; }
  .summary-sticky h3 { margin-bottom: 20px; font-size: 24px; }
  .choice-card { min-height: 170px; padding: 18px 16px; }
  .choice-card__visual { height: 58px; }
  .choice-card__shape { width: calc(56px * var(--size-scale)); }
  .choice-card h3 { font-size: 21px; }
  .quantity-row { margin-top: 15px; padding-top: 14px; }
  .step-actions { margin-top: 26px; }
  .method-card { padding: 18px; }
  .method-card strong { font-size: 21px; }
  .field-grid { gap: 13px; margin-top: 18px; }
  .calendar { padding: 14px; }
  .calendar-day, .calendar-day--empty { min-height: 52px; }
}

@media (max-width: 980px) {
  .site-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero { grid-template-columns: 1fr; gap: 40px; }
  .hero__copy { padding-top: 25px; }
  .hero__image-frame img { height: 500px; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .section-heading > p { margin-left: 0; max-width: 600px; }
  .size-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid li { border-bottom: 1px solid rgba(255,255,255,.16); }
  .delivery-card { grid-template-columns: 1fr; }
  .delivery-card__zones { display: grid; grid-template-columns: 1fr 1fr; }
  .free-shipping { grid-column: 1 / -1; }
  .order-layout { grid-template-columns: 1fr; }
  .order-summary { border: 0; border-top: 1px solid var(--line); }
}

@media (max-width: 720px) {
  .section-shell { width: min(100% - 28px, 1200px); }
  .top-note { height: 28px; font-size: 8px; gap: 0; }
  .top-note__divider, .top-note > span:last-child { display: none; }
  .site-header { height: 62px; padding-inline: 14px; }
  .site-header .brand { gap: 8px; }
  .site-header .brand__seal { width: 34px; }
  .site-header .brand__text { display: flex; font-size: 10px; }
  .site-header .brand__text strong { font-size: 15px; }
  .site-header > .button { min-height: 40px; padding-inline: 17px; font-size: 12px; }
  .hero { min-height: auto; gap: 28px; padding-block: 34px 48px; }
  .hero__copy { padding-top: 0; }
  .hero h1 { margin-block: 18px 16px; font-size: 46px; line-height: .92; }
  .hero__lead { font-size: 15px; line-height: 1.55; }
  .hero__actions { align-items: stretch; flex-direction: column; gap: 12px; margin-top: 24px; }
  .hero__actions .text-link { text-align: center; }
  .hero__facts { margin-top: 27px; padding-top: 16px; }
  .hero__facts div + div { padding-left: 12px; }
  .hero__facts dt { font-size: 8px; }
  .hero__facts dd { font-size: 18px; }
  .hero__image-frame { border-radius: 38% 38% 18px 18px; }
  .hero__image-frame img { height: 280px; }
  .hero__stamp { left: -2px; bottom: -18px; width: 88px; }
  .hero__stamp strong { font-size: 16px; }
  .marquee__inner { height: 48px; gap: 26px; font-size: 14px; }

  .product-section { padding-block: 58px; }
  .section-heading { gap: 13px; margin-bottom: 28px; }
  .section-heading .eyebrow { margin-top: 0; }
  .section-heading h2 { font-size: 39px; line-height: .96; }
  .section-heading > p { font-size: 14px; line-height: 1.55; }
  .size-grid { grid-template-columns: 1fr; gap: 9px; }
  .size-card { min-height: 0; padding: 15px; display: grid; grid-template-columns: 62px minmax(0, 1fr); grid-template-rows: auto auto auto; column-gap: 16px; border-radius: 18px; }
  .size-card:hover { transform: none; }
  .size-card__number { display: none; }
  .size-card__visual { width: 62px; height: 58px; margin: 0; grid-column: 1; grid-row: 1 / 4; place-items: center; }
  .size-card__shape { width: calc(28px + (20px * var(--size-scale))); }
  .size-card__shape span { padding: 3px 4px; font-size: 9px; }
  .size-card h3 { margin: 0 0 3px; grid-column: 2; font-size: 23px; }
  .size-card__meta { grid-column: 2; font-size: 11px; }
  .size-card__footer { margin-top: 8px; padding-top: 8px; grid-column: 2; }
  .size-card__footer strong { font-size: 22px; }
  .size-card__footer button { min-height: 44px; max-width: 130px; padding: 0; text-align: right; }
  .allergen-note { margin-top: 13px; padding: 14px; }

  .process-section { padding-block: 58px 42px; }
  .process-grid { grid-template-columns: 1fr; margin-top: 30px; }
  .process-grid li, .process-grid li:first-child { position: relative; min-height: 0; padding: 18px 4px 18px 43px; border-right: 0; border-left: 0; }
  .process-grid li > span { position: absolute; left: 5px; top: 22px; }
  .process-grid h3 { margin: 0 0 5px; font-size: 23px; }
  .process-grid p { font-size: 12px; line-height: 1.45; }
  .process-cta { align-items: stretch; flex-direction: column; gap: 18px; min-height: 0; margin-top: 26px; padding-block: 20px 0; }
  .delivery-section { padding-block: 52px; }
  .delivery-card { border-radius: 22px; }
  .delivery-card__copy, .delivery-card__zones { padding: 25px 19px; }
  .delivery-card h2 { margin-block: 15px 16px; font-size: 39px; }
  .delivery-card__copy > p { margin-bottom: 0; font-size: 14px; line-height: 1.55; }
  .delivery-card__zones { grid-template-columns: 1fr; }
  .free-shipping { grid-column: auto; }
  .delivery-card__hours { gap: 20px; margin-top: 24px; }
  .delivery-card__hours strong { font-size: 18px; }
  .zone-price { padding: 14px; grid-template-columns: 58px 1fr; }
  .zone-price strong { font-size: 24px; }
  .free-shipping { margin-top: 4px; padding: 15px; }
  .faq-section { padding-block: 48px 62px; }
  .faq-list summary { padding-block: 19px; font-size: 20px; }
  .faq-list summary::after { top: 16px; }
  .faq-list p { margin: -2px 34px 20px 0; font-size: 13px; line-height: 1.55; }
  .final-cta { padding-block: 58px; }
  .final-cta h2 { margin-bottom: 26px; font-size: 44px; }
  .site-footer { min-height: 0; padding-block: 40px; grid-template-columns: 1fr; gap: 26px; }
  .site-footer__contact { justify-self: start; align-items: start; }
  .site-footer__legal { flex-wrap: wrap; }
  .site-footer__legal span { flex-basis: 100%; }

  .order-dialog { height: 100dvh; }
  .dialog-shell { height: 100dvh; min-height: 0; overflow: hidden; }
  .dialog-header { flex: 0 0 58px; height: 58px; padding: 0 12px 0 15px; grid-template-columns: 1fr auto; background: var(--paper); }
  .dialog-header .brand { display: none; }
  .dialog-progress { justify-self: start; }
  .dialog-progress span { width: 31px; }
  .icon-button { width: 40px; height: 40px; }
  .order-layout { display: block; flex: 1; min-height: 0; overflow: hidden; }
  .order-content { height: 100%; padding: 18px 14px 24px; overflow-y: auto; overscroll-behavior: contain; }
  .order-content__inner { max-width: none; }
  .step-kicker { font-size: 9px; }
  .step-title { margin: 5px 0 6px; font-size: 30px; line-height: 1; }
  .step-copy { margin-bottom: 15px; font-size: 13px; line-height: 1.45; }
  .step-actions { display: none; }

  .choice-grid { grid-template-columns: 1fr; gap: 8px; }
  .choice-card { min-height: 82px; padding: 10px; display: grid; grid-template-columns: 48px minmax(0, 1fr) auto; grid-template-rows: auto auto; column-gap: 8px; border-radius: 15px; }
  .choice-card:hover { transform: none; }
  .choice-card__visual { width: 48px; height: 100%; grid-column: 1; grid-row: 1 / 3; place-items: center; }
  .choice-card__shape { width: calc(28px + (16px * var(--size-scale))); }
  .choice-card__shape span { padding: 2px 3px; font-size: 8px; }
  .choice-card h3 { margin: 0 0 3px; grid-column: 2; grid-row: 1; font-size: 19px; }
  .choice-card p { grid-column: 2; grid-row: 2; align-self: start; padding-right: 3px; line-height: 1.4; }
  .quantity-row { margin: 0; padding: 0; grid-column: 3; grid-row: 1 / 3; flex-direction: column; align-items: flex-end; justify-content: center; gap: 6px; border: 0; }
  .quantity-row > strong { font-size: 13px; }
  .quantity { gap: 4px; }
  .quantity button { width: 44px; height: 44px; background: var(--cream); font-size: 18px; }
  .quantity strong { min-width: 22px; }

  .method-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .method-card { min-height: 104px; padding: 12px; border-radius: 15px; }
  .method-card span { font-size: 9px; }
  .method-card strong { margin: 6px 0 4px; font-size: 18px; line-height: 1.08; }
  .method-card small { display: block; font-size: 10px; line-height: 1.35; }
  .field-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 16px; }
  .field { gap: 6px; }
  .field input, .field select, .field textarea { min-height: 48px; font-size: 16px; }
  .field textarea { min-height: 72px; }
  .checkbox { font-size: 12px; line-height: 1.4; }

  .calendar-toolbar { align-items: stretch; flex-direction: column; gap: 10px; margin-bottom: 10px; }
  .calendar-month-nav { width: 100%; }
  .calendar-month-nav strong { flex: 1; font-size: 20px; text-align: center; }
  .calendar-nav { width: 40px; height: 40px; }
  .calendar-legend { display: flex; }
  .calendar { padding: 6px; border-radius: 14px; }
  .calendar__weekdays, .calendar__grid { gap: 3px; }
  .calendar__weekdays span { padding-block: 5px; }
  .calendar-day { min-height: 44px; padding-inline: 1px; border-radius: 9px; }
  .calendar-day__number { font-size: 16px; }
  .calendar-day__status { display: none; }
  .calendar-day--empty { min-height: 44px; }
  .date-selection { margin-top: 9px; padding: 10px 12px; gap: 12px; }
  .date-selection strong { text-align: right; }

  .mobile-order-footer { position: relative; z-index: 403; flex: 0 0 auto; min-height: calc(68px + env(safe-area-inset-bottom)); padding: 9px 12px max(9px, env(safe-area-inset-bottom)); display: grid; grid-template-columns: 44px minmax(72px, 1fr) auto; align-items: center; gap: 8px; border-top: 1px solid var(--line); background: var(--paper); box-shadow: 0 -9px 26px rgba(74,48,33,.09); }
  .mobile-order-footer[data-step="1"] { grid-template-columns: minmax(80px, 1fr) auto; }
  .mobile-order-back { appearance: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--ink); font-size: 20px; cursor: pointer; }
  .mobile-order-total { appearance: none; min-width: 0; padding: 0; border: 0; background: transparent; color: var(--ink); text-align: left; cursor: pointer; }
  .mobile-order-total span { display: block; overflow: hidden; color: var(--muted); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
  .mobile-order-total strong { display: block; margin-top: 2px; font: 21px/1 var(--serif); }
  .mobile-order-next { appearance: none; min-width: 116px; min-height: 48px; padding: 0 16px; border: 0; border-radius: 999px; background: var(--brown); color: white; font-size: 12px; font-weight: 750; cursor: pointer; }
  .mobile-order-next:disabled { opacity: .42; cursor: not-allowed; }

  .mobile-summary-backdrop { appearance: none; position: fixed; z-index: 401; inset: 58px 0 calc(68px + env(safe-area-inset-bottom)); display: block; padding: 0; border: 0; background: rgba(48,35,29,.38); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .22s, visibility .22s; }
  .mobile-summary-backdrop.is-visible { opacity: 1; visibility: visible; pointer-events: auto; }
  .order-summary { position: fixed; z-index: 402; left: 0; right: 0; bottom: calc(68px + env(safe-area-inset-bottom)); max-height: calc(100dvh - 142px - env(safe-area-inset-bottom)); padding: 15px 18px 22px; overflow-y: auto; border: 0; border-top: 1px solid var(--line); border-radius: 22px 22px 0 0; background: var(--paper); box-shadow: 0 -18px 48px rgba(48,35,29,.18); transform: translateY(calc(100% + 24px)); visibility: hidden; transition: transform .25s ease, visibility .25s; }
  .order-summary.is-open { transform: translateY(0); visibility: visible; }
  .summary-sticky { position: static; }
  .summary-heading { margin-bottom: 14px; }
  .summary-sticky h3 { margin: 0; font-size: 24px; }
  .summary-close { display: grid; place-items: center; }
  .summary-lines { gap: 9px; }
  .summary-divider { margin: 14px 0; }
  .summary-total strong { font-size: 27px; }
  .summary-note { margin-top: 14px; padding: 10px 12px; }

  .form-error { margin-top: 12px; }
  .success-panel { margin-top: 5vh; }
  .success-mark { width: 62px; height: 62px; margin-bottom: 18px; font-size: 31px; }
  .success-panel h2 { font-size: 36px; }
  .manage-card { margin: 2vh auto; padding: 28px 20px; }
  .manage-card__top { flex-direction: column; }
  .manage-actions { flex-direction: column; }
}

@media (max-width: 350px) {
  .site-header .brand__text { display: none; }
  .hero h1 { font-size: 42px; }
  .method-card { padding-inline: 10px; }
  .choice-card { padding-left: 10px; }
  .quantity { gap: 2px; }
  .quantity button { width: 42px; height: 42px; }
  .mobile-order-footer { padding-inline: 9px; gap: 6px; }
  .mobile-order-next { min-width: 105px; padding-inline: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Catálogo dinámico de sabores */
.flavor-block { margin-bottom: 34px; }
.flavor-block__label, .selected-flavor-heading { margin: 0 0 14px; color: var(--muted); font: 700 11px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; }
.flavor-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.flavor-card { appearance: none; min-width: 0; padding: 10px; display: grid; grid-template-columns: 108px minmax(0, 1fr) auto; align-items: center; gap: 16px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.28); color: var(--ink); text-align: left; cursor: pointer; transition: .2s ease; }
.flavor-card:hover { transform: translateY(-2px); background: white; }
.flavor-card.is-active { border-color: var(--brown); box-shadow: inset 0 0 0 1px var(--brown); background: var(--paper); }
.flavor-card img { width: 108px; height: 92px; object-fit: cover; border-radius: 14px; }
.flavor-card__copy { min-width: 0; display: grid; gap: 5px; }
.flavor-card__copy strong { font: 25px/1 var(--serif); }
.flavor-card__copy small { overflow: hidden; color: var(--muted); font-size: 11px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.flavor-card__copy b { color: var(--brown); font-size: 11px; }
.flavor-card > i { color: var(--brown); font-size: 10px; font-style: normal; font-weight: 750; }
.selected-flavor-heading { margin-top: 8px; }
.selected-flavor-heading strong { color: var(--ink); font: 25px/1 var(--serif); letter-spacing: 0; text-transform: none; }

/* Selector de tartas agrupado por sabor */
.order-flavor-list { display: grid; gap: 12px; }
.step-title-row { display: flex; align-items: end; justify-content: space-between; gap: 15px; }
.step-title-row .step-title { margin-bottom: 0; }
.order-flavor { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.3); }
.order-flavor.is-selected { border-color: var(--brown); box-shadow: inset 0 0 0 1px var(--brown); }
.order-flavor > summary { min-height: 94px; padding: 10px 16px 10px 10px; display: grid; grid-template-columns: 76px minmax(0, 1fr) auto; align-items: center; gap: 14px; list-style: none; cursor: pointer; }
.order-flavor > summary::-webkit-details-marker { display: none; }
.order-flavor > summary img { width: 76px; height: 72px; object-fit: cover; border-radius: 12px; }
.order-flavor > summary span { min-width: 0; display: grid; gap: 5px; }
.order-flavor > summary strong { font: 24px/1 var(--serif); }
.order-flavor > summary small { overflow: hidden; color: var(--muted); font-size: 10px; line-height: 1.4; text-overflow: ellipsis; white-space: nowrap; }
.order-flavor > summary b { color: var(--brown); font-size: 10px; }
.order-flavor__sizes { padding: 0 12px 12px; display: grid; gap: 7px; }
.order-size { min-height: 68px; padding: 8px 10px; display: grid; grid-template-columns: 45px minmax(0, 1fr) auto auto; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 13px; background: var(--paper); }
.order-size.is-selected { background: var(--cream); }
.order-size__mark { width: 40px; aspect-ratio: 1; display: grid; place-items: center; border: 2px solid var(--caramel); border-radius: 5px; transform: rotate(4deg); }
.order-size__mark span { font: 9px/1 var(--serif); transform: rotate(-4deg); }
.order-size > div:nth-child(2) { min-width: 0; display: grid; gap: 4px; }
.order-size > div:nth-child(2) strong { font: 18px/1 var(--serif); }
.order-size > div:nth-child(2) small { color: var(--muted); font-size: 10px; }
.order-size > b { font-size: 12px; }

@media (max-width: 720px) {
  .marquee { overflow: visible; }
  .marquee__inner { min-width: 0; height: auto; padding: 10px 14px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; font-size: 11px; line-height: 1.25; }
  .marquee__inner span { min-width: 0; padding: 9px 8px; text-align: center; white-space: normal; }
  .marquee__inner span:last-of-type:nth-child(odd) { grid-column: 1 / -1; }
  .marquee__inner i { display: none; }
  .flavor-grid { grid-template-columns: 1fr; gap: 8px; }
  .flavor-card { grid-template-columns: 72px minmax(0, 1fr) auto; gap: 10px; border-radius: 15px; }
  .flavor-card img { width: 72px; height: 66px; border-radius: 10px; }
  .flavor-card__copy strong { font-size: 21px; }
  .flavor-card__copy small { font-size: 10px; }
  .flavor-card > i { max-width: 54px; text-align: right; }
  .flavor-block { margin-bottom: 25px; }
  .order-flavor > summary { min-height: 78px; padding: 8px 10px 8px 8px; grid-template-columns: 58px minmax(0, 1fr) auto; gap: 9px; }
  .order-flavor > summary img { width: 58px; height: 58px; border-radius: 10px; }
  .order-flavor > summary strong { font-size: 21px; }
  .order-flavor > summary small { max-width: 170px; }
  .order-flavor > summary b { max-width: 70px; text-align: right; }
  .order-flavor__sizes { padding: 0 7px 7px; gap: 5px; }
  .order-size { min-height: 62px; padding: 6px; grid-template-columns: 38px minmax(0, 1fr) auto; gap: 7px; }
  .order-size__mark { width: 34px; }
  .order-size > b { grid-column: 3; grid-row: 1; align-self: end; }
  .order-size .quantity { grid-column: 3; grid-row: 1; align-self: start; margin-bottom: 17px; }
  .order-size .quantity button { width: 36px; height: 36px; }
  .order-size > div:nth-child(2) small { font-size: 9px; }
}

/* Portada centrada en sabores y cesta */
.site-header__actions { justify-self: end; display: flex; align-items: center; gap: 9px; }
.header-cart { appearance: none; position: relative; min-height: 42px; padding: 5px 7px 5px 15px; display: inline-flex; align-items: center; gap: 9px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.38); color: var(--brown-dark); font-size: 11px; font-weight: 750; cursor: pointer; }
.header-cart:hover { border-color: var(--brown); background: var(--paper); }
.header-cart__icon { display: none; width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.header-cart strong { min-width: 28px; height: 28px; padding-inline: 7px; display: grid; place-items: center; border-radius: 999px; background: var(--cream-2); color: var(--brown); font-size: 11px; transition: .2s ease; }
.header-cart strong.has-items { background: var(--brown); color: white; }

.flavor-block { margin-bottom: 0; }
.flavor-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.flavor-showcase { min-width: 0; overflow: hidden; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 26px; background: rgba(255,255,255,.32); transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.flavor-showcase:hover { transform: translateY(-4px); background: var(--paper); box-shadow: var(--shadow); }
.flavor-showcase__image { position: relative; min-height: 280px; overflow: hidden; background: var(--cream-2); }
.flavor-showcase__image img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: transform .45s ease; }
.flavor-showcase:hover .flavor-showcase__image img { transform: scale(1.025); }
.flavor-showcase__image > span { position: absolute; left: 16px; top: 16px; padding: 7px 10px; border-radius: 999px; background: rgba(255,250,243,.92); color: var(--brown); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(7px); }
.flavor-showcase__content { flex: 1; padding: 27px; display: flex; flex-direction: column; }
.flavor-showcase__eyebrow { color: var(--brown); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.flavor-showcase h3 { margin: 8px 0 9px; font: 42px/.95 var(--serif); letter-spacing: -.025em; }
.flavor-showcase__content > p { min-height: 44px; margin: 0 0 20px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.flavor-size-list { display: grid; border-block: 1px solid var(--line); }
.flavor-size-list > div { min-height: 55px; padding: 9px 2px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.flavor-size-list > div + div { border-top: 1px solid var(--line); }
.flavor-size-mark { width: calc(10px + 15px * var(--size-scale)); aspect-ratio: 1; flex: 0 0 auto; border: 1.5px solid var(--caramel); border-radius: 3px; background: linear-gradient(to bottom, #71402b 0 20%, #e2bd86 20% 48%, #f0d7ad 48% 72%, #c88b50 72%); }
.flavor-size-list span { min-width: 0; display: flex; align-items: baseline; gap: 10px; }
.flavor-size-list strong { font: 19px/1 var(--serif); }
.flavor-size-list small { color: var(--muted); font-size: 10px; }
.flavor-size-list b { flex: 0 0 auto; font: 19px/1 var(--serif); }
.flavor-showcase__allergens { margin-top: 14px; display: grid; gap: 3px; color: var(--muted); font-size: 9px; line-height: 1.45; }
.flavor-showcase__allergens strong { color: var(--ink); font-size: 9px; }
.flavor-showcase__footer { margin-top: auto; padding-top: 23px; display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.flavor-showcase__footer > span { color: var(--muted); font-size: 10px; text-transform: uppercase; }
.flavor-showcase__footer > span strong { display: block; margin-top: 4px; color: var(--ink); font: 26px/1 var(--serif); text-transform: none; }
.flavor-grid--single { grid-template-columns: 1fr; }
.flavor-grid--single .flavor-showcase { min-height: 440px; display: grid; grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr); }
.flavor-grid--single .flavor-showcase__image { min-height: 440px; }
.flavor-grid--single .flavor-showcase__content { padding: 34px 40px; }
.flavor-grid--single .flavor-showcase h3 { font-size: 52px; }

.product-dialog { width: min(690px, calc(100% - 28px)); max-height: calc(100dvh - 30px); padding: 0; overflow: auto; border: 0; border-radius: 25px; background: var(--paper); color: var(--ink); box-shadow: 0 30px 90px rgba(41,25,18,.28); }
.product-dialog::backdrop { background: rgba(47,33,27,.58); backdrop-filter: blur(5px); }
.product-dialog__panel { position: relative; padding: 26px; }
.product-dialog__close { appearance: none; position: absolute; z-index: 2; right: 16px; top: 16px; width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,250,243,.94); color: var(--ink); font-size: 24px; cursor: pointer; }
.product-selector__intro { padding-right: 46px; display: grid; grid-template-columns: 135px minmax(0, 1fr); align-items: center; gap: 21px; }
.product-selector__intro img { width: 135px; height: 125px; object-fit: cover; border-radius: 17px; }
.product-selector__intro h2, .added-panel h2 { margin: 7px 0 8px; font: 38px/.98 var(--serif); }
.product-selector__intro p, .added-panel > p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.product-selector__sizes { margin-top: 22px; display: grid; gap: 8px; }
.product-selector-size { min-height: 70px; padding: 9px 10px 9px 14px; display: grid; grid-template-columns: minmax(0, 1fr) auto auto; align-items: center; gap: 14px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.38); }
.product-selector-size.is-selected { border-color: rgba(123,63,44,.5); background: var(--cream); }
.product-selector-size > div:first-child { display: grid; gap: 5px; }
.product-selector-size > div:first-child strong { font: 21px/1 var(--serif); }
.product-selector-size > div:first-child small { color: var(--muted); font-size: 10px; }
.product-selector-size > b { font: 17px/1 var(--serif); }
.product-selector__footer { margin-top: 20px; padding-top: 18px; display: flex; align-items: center; justify-content: space-between; gap: 16px; border-top: 1px solid var(--line); }
.product-selector__footer > div { display: grid; gap: 3px; }
.product-selector__footer > div span { color: var(--muted); font-size: 10px; }
.product-selector__footer > div strong { font: 26px/1 var(--serif); }
.added-panel { padding: 25px 12px 10px; text-align: center; }
.added-panel__mark { width: 64px; height: 64px; margin: 0 auto 18px; display: grid; place-items: center; border-radius: 50%; background: #e4eadf; color: #52644b; font-size: 30px; }
.added-panel__summary { max-width: 420px; margin: 20px auto 8px; padding: 12px 15px; display: grid; gap: 8px; border: 1px solid var(--line); border-radius: 13px; background: var(--cream); text-align: left; }
.added-panel__summary span { display: flex; justify-content: space-between; gap: 15px; font-size: 11px; }
.added-panel > small { color: var(--muted); }
.added-panel__actions { margin-top: 24px; display: flex; justify-content: center; gap: 10px; }

@media (min-width: 981px) and (max-width: 1440px) {
  .site-header__actions .button { min-height: 40px; padding-inline: 20px; }
  .header-cart { min-height: 40px; }
  .flavor-grid--single .flavor-showcase, .flavor-grid--single .flavor-showcase__image { min-height: 370px; }
  .flavor-grid--single .flavor-showcase__content { padding: 27px 32px; }
  .flavor-grid--single .flavor-showcase h3 { font-size: 44px; }
  .flavor-size-list > div { min-height: 48px; }
}

@media (max-width: 980px) {
  .flavor-grid { grid-template-columns: 1fr; }
  .flavor-showcase, .flavor-grid--single .flavor-showcase { min-height: 380px; display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); }
  .flavor-showcase__image, .flavor-grid--single .flavor-showcase__image { min-height: 380px; }
  .flavor-showcase__content, .flavor-grid--single .flavor-showcase__content { padding: 26px; }
  .flavor-showcase h3, .flavor-grid--single .flavor-showcase h3 { font-size: 40px; }
}

@media (max-width: 720px) {
  .site-header__actions { gap: 6px; }
  .site-header__actions .button { min-height: 40px; padding-inline: 14px; font-size: 11px; }
  .header-cart { width: 40px; min-height: 40px; padding: 0; justify-content: center; border: 0; background: transparent; }
  .header-cart__icon { display: block; }
  .header-cart > span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .header-cart strong { position: absolute; right: -2px; top: 0; min-width: 18px; height: 18px; padding-inline: 4px; border: 2px solid var(--cream); font-size: 8px; }
  .header-cart strong:not(.has-items) { display: none; }
  .flavor-grid { gap: 14px; }
  .flavor-showcase, .flavor-grid--single .flavor-showcase { min-height: 0; display: flex; }
  .flavor-showcase__image, .flavor-grid--single .flavor-showcase__image { min-height: 245px; }
  .flavor-showcase__content, .flavor-grid--single .flavor-showcase__content { padding: 20px 17px; }
  .flavor-showcase h3, .flavor-grid--single .flavor-showcase h3 { margin-top: 7px; font-size: 38px; }
  .flavor-showcase__content > p { min-height: 0; margin-bottom: 15px; font-size: 12px; }
  .flavor-size-list > div { min-height: 50px; }
  .flavor-size-list span { display: grid; gap: 3px; }
  .flavor-size-list strong { font-size: 18px; }
  .flavor-size-list small { font-size: 9px; }
  .flavor-showcase__footer { padding-top: 18px; }
  .flavor-showcase__footer .button { min-height: 46px; padding-inline: 18px; }
  .product-dialog { width: 100%; max-width: none; max-height: 92dvh; margin: auto 0 0; border-radius: 24px 24px 0 0; }
  .product-dialog__panel { padding: 18px 14px max(18px, env(safe-area-inset-bottom)); }
  .product-selector__intro { padding-right: 40px; grid-template-columns: 84px minmax(0, 1fr); gap: 12px; }
  .product-selector__intro img { width: 84px; height: 84px; border-radius: 13px; }
  .product-selector__intro h2, .added-panel h2 { font-size: 29px; }
  .product-selector-size { min-height: 64px; padding: 7px 6px 7px 10px; gap: 7px; }
  .product-selector-size > div:first-child strong { font-size: 18px; }
  .product-selector-size .quantity { gap: 2px; }
  .product-selector-size .quantity button { width: 38px; height: 38px; }
  .product-selector__footer { position: sticky; bottom: calc(-1 * max(18px, env(safe-area-inset-bottom))); margin-inline: -14px; margin-bottom: calc(-1 * max(18px, env(safe-area-inset-bottom))); padding: 13px 14px max(13px, env(safe-area-inset-bottom)); background: var(--paper); box-shadow: 0 -10px 28px rgba(74,48,33,.09); }
  .product-selector__footer .button { min-height: 48px; padding-inline: 17px; }
  .added-panel { padding: 36px 2px 10px; }
  .added-panel__actions { flex-direction: column-reverse; }
  .added-panel__actions .button { width: 100%; }
}

/* Escala adaptativa final: tarifas legibles y catálogo preparado para muchos sabores */
.zone-price {
  grid-template-columns: max-content minmax(0, 1fr);
  column-gap: 18px;
}
.zone-price strong { white-space: nowrap; }
.zone-price span { min-width: 0; overflow-wrap: break-word; }

.flavor-grid--few { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.flavor-grid--few .flavor-showcase { border-radius: 23px; }
.flavor-grid--few .flavor-showcase__image { min-height: 225px; }
.flavor-grid--few .flavor-showcase__content { padding: 22px; }
.flavor-grid--few .flavor-showcase h3 { font-size: 37px; }
.flavor-grid--few .flavor-showcase__content > p {
  min-height: 42px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.flavor-grid--few .flavor-size-list > div { min-height: 47px; }

.flavor-grid--many { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.flavor-grid--many .flavor-showcase { border-radius: 20px; }
.flavor-grid--many .flavor-showcase__image { min-height: 175px; }
.flavor-grid--many .flavor-showcase__image > span { left: 12px; top: 12px; padding: 6px 8px; font-size: 8px; }
.flavor-grid--many .flavor-showcase__content { padding: 17px; }
.flavor-grid--many .flavor-showcase h3 { margin-block: 6px 7px; font-size: 31px; }
.flavor-grid--many .flavor-showcase__content > p {
  min-height: 37px;
  margin-bottom: 13px;
  display: -webkit-box;
  overflow: hidden;
  font-size: 11px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.flavor-grid--many .flavor-size-list > div {
  min-height: 41px;
  padding-block: 6px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 8px;
}
.flavor-grid--many .flavor-size-list span { display: grid; gap: 2px; }
.flavor-grid--many .flavor-size-list strong,
.flavor-grid--many .flavor-size-list b { font-size: 16px; }
.flavor-grid--many .flavor-size-list small { overflow: hidden; font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }
.flavor-grid--many .flavor-showcase__allergens { margin-top: 10px; }
.flavor-grid--many .flavor-showcase__allergens span {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.flavor-grid--many .flavor-showcase__footer { padding-top: 14px; gap: 10px; }
.flavor-grid--many .flavor-showcase__footer > span strong { font-size: 22px; }
.flavor-grid--many .flavor-showcase__footer .button { min-height: 40px; padding-inline: 14px; gap: 8px; font-size: 11px; }

@media (min-width: 981px) and (max-width: 1500px) {
  .section-shell { width: min(1080px, calc(100% - 36px)); }
  .top-note { height: 27px; }
  .site-header { height: 66px; padding-inline: max(18px, calc((100vw - 1140px) / 2)); }
  section[id] { scroll-margin-top: 78px; }
  .brand__seal { width: 35px; }
  .brand__text { font-size: 11px; }
  .brand__text strong { font-size: 17px; }
  .site-nav { gap: 18px; }
  .site-nav a { font-size: 11px; }
  .site-header__actions .button { min-height: 38px; padding-inline: 17px; }
  .header-cart { min-height: 38px; }

  .hero { min-height: 0; grid-template-columns: .94fr 1.06fr; gap: 36px; padding-block: 34px 42px; }
  .hero h1 { margin-block: 14px 16px; font-size: clamp(48px, 4.5vw, 62px); line-height: .9; }
  .hero__lead { font-size: 14px; line-height: 1.55; }
  .hero__actions { margin-top: 21px; }
  .hero__facts { margin-top: 24px; padding-top: 14px; }
  .hero__facts dd { font-size: 18px; }
  .hero__image-frame img { height: clamp(340px, 31vw, 410px); }
  .hero__stamp { left: -20px; bottom: 22px; width: 92px; }
  .hero__stamp strong { font-size: 16px; }
  .marquee__inner { height: 46px; font-size: 14px; }

  .product-section { padding-block: 62px; }
  .section-heading { margin-bottom: 32px; }
  .section-heading h2 { font-size: 48px; }
  .section-heading > p { margin-left: 22px; font-size: 13px; line-height: 1.55; }
  .flavor-grid--single .flavor-showcase,
  .flavor-grid--single .flavor-showcase__image { min-height: 335px; }
  .flavor-grid--single .flavor-showcase__content { padding: 24px 28px; }
  .flavor-grid--single .flavor-showcase h3 { font-size: 40px; }
  .flavor-grid--single .flavor-showcase__content > p { margin-bottom: 14px; }
  .flavor-grid--single .flavor-size-list > div { min-height: 44px; }
  .flavor-grid--few .flavor-showcase__image { min-height: 195px; }
  .flavor-grid--few .flavor-showcase__content { padding: 19px; }
  .flavor-grid--few .flavor-showcase h3 { font-size: 33px; }
  .flavor-grid--few .flavor-size-list > div { min-height: 43px; }
  .flavor-grid--many .flavor-showcase__image { min-height: 160px; }

  .process-section { padding-block: 60px 46px; }
  .process-grid { margin-top: 34px; }
  .process-grid li { min-height: 155px; padding: 19px; }
  .process-grid h3 { margin-top: 31px; font-size: 22px; }
  .process-grid p { font-size: 12px; line-height: 1.5; }
  .process-cta { min-height: 68px; margin-top: 26px; }

  .delivery-section { padding-block: 60px; }
  .delivery-card { border-radius: 28px; }
  .delivery-card__copy { padding: 38px 40px; }
  .delivery-card h2 { margin-block: 14px 16px; font-size: 46px; }
  .delivery-card__copy > p { font-size: 13px; line-height: 1.55; }
  .delivery-card__hours { margin-top: 23px; }
  .delivery-card__zones { padding: 29px; }
  .zone-price { padding: 15px; }
  .zone-price strong { font-size: 25px; }
  .faq-section { padding-block: 42px 70px; }
  .faq-list summary { padding-block: 20px; font-size: 19px; }
  .faq-list summary::after { top: 15px; }
  .final-cta { padding-block: 52px; }
  .final-cta h2 { margin-bottom: 25px; font-size: 54px; }
  .site-footer { min-height: 160px; padding-block: 34px; }
}

@media (min-width: 721px) and (max-width: 1179px) {
  .flavor-grid--few,
  .flavor-grid--many { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; }
  .flavor-grid--few .flavor-showcase,
  .flavor-grid--many .flavor-showcase { min-height: 0; display: flex; }
  .flavor-grid--few .flavor-showcase__image,
  .flavor-grid--many .flavor-showcase__image { min-height: 180px; }
  .flavor-grid--few .flavor-showcase__content,
  .flavor-grid--many .flavor-showcase__content { padding: 17px; }
  .flavor-grid--few .flavor-showcase h3,
  .flavor-grid--many .flavor-showcase h3 { font-size: 31px; }
  .flavor-grid--few .flavor-size-list > div,
  .flavor-grid--many .flavor-size-list > div { min-height: 42px; }
}

@media (max-width: 720px) {
  .zone-price { grid-template-columns: max-content minmax(0, 1fr); column-gap: 14px; }
  .zone-price strong { font-size: 22px; }
  .zone-price span { font-size: 11px; line-height: 1.55; }
  .flavor-grid--single,
  .flavor-grid--few,
  .flavor-grid--many { grid-template-columns: 1fr; gap: 12px; }
  .flavor-grid--single .flavor-showcase,
  .flavor-grid--few .flavor-showcase,
  .flavor-grid--many .flavor-showcase { min-height: 0; display: flex; border-radius: 20px; }
  .flavor-grid--single .flavor-showcase__image,
  .flavor-grid--few .flavor-showcase__image,
  .flavor-grid--many .flavor-showcase__image { min-height: clamp(190px, 56vw, 220px); }
  .flavor-grid--single .flavor-showcase__content,
  .flavor-grid--few .flavor-showcase__content,
  .flavor-grid--many .flavor-showcase__content { padding: 17px 15px; }
  .flavor-grid--single .flavor-showcase h3,
  .flavor-grid--few .flavor-showcase h3,
  .flavor-grid--many .flavor-showcase h3 { margin-top: 6px; font-size: 34px; }
  .flavor-grid--single .flavor-showcase__content > p,
  .flavor-grid--few .flavor-showcase__content > p,
  .flavor-grid--many .flavor-showcase__content > p { min-height: 0; margin-bottom: 12px; font-size: 12px; }
  .flavor-grid--single .flavor-size-list > div,
  .flavor-grid--few .flavor-size-list > div,
  .flavor-grid--many .flavor-size-list > div { min-height: 45px; }
  .flavor-grid--single .flavor-showcase__footer,
  .flavor-grid--few .flavor-showcase__footer,
  .flavor-grid--many .flavor-showcase__footer { padding-top: 15px; }
}

@media (max-width: 360px) {
  .zone-price { grid-template-columns: 1fr; row-gap: 7px; }
}
