:root {
  --cream: #fff8f1;
  --paper: #fffdf9;
  --rose: #d85672;
  --rose-soft: #f7d9df;
  --chocolate: #3b1e12;
  --coffee: #6f3f25;
  --gold: #c8933d;
  --teal: #047c78;
  --mint: #dff1e8;
  --ink: #211915;
  --muted: #75665f;
  --line: rgba(111, 63, 37, 0.18);
  --shadow: 0 18px 45px rgba(59, 30, 18, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
select,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 58px);
  color: var(--paper);
  background: rgba(59, 30, 18, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled,
.site-header.open {
  color: var(--chocolate);
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 10px 30px rgba(59, 30, 18, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
}

.brand span {
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.icon-button {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  padding: 110px clamp(22px, 7vw, 92px) 86px;
  overflow: hidden;
  color: var(--paper);
  background: var(--chocolate);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("assets/media/stand-ilustrado.jpeg");
  background-position: center center;
  background-size: cover;
  opacity: 0.62;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 248, 241, 0.42), rgba(255, 248, 241, 0.2) 34%, rgba(32, 15, 8, 0.14)),
    linear-gradient(90deg, rgba(32, 15, 8, 0.78), rgba(32, 15, 8, 0.45) 54%, rgba(32, 15, 8, 0.18)),
    linear-gradient(180deg, rgba(32, 15, 8, 0.18), rgba(32, 15, 8, 0.36));
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.5);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero .eyebrow {
  color: #ffd6df;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  line-height: 1.02;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
}

h1 {
  max-width: 780px;
  font-size: clamp(3.1rem, 8vw, 7.2rem);
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4.5rem);
}

h3 {
  font-size: 1.1rem;
}

.script-line {
  margin: 6px 0 12px;
  color: #ffb9c7;
  font-family: "Style Script", cursive;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1;
}

.hero-copy {
  width: min(590px, 100%);
  margin: 0 0 26px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--paper);
  background: var(--rose);
  box-shadow: 0 16px 32px rgba(216, 86, 114, 0.25);
}

.button.secondary {
  color: var(--chocolate);
  background: var(--paper);
  border-color: rgba(255, 255, 255, 0.7);
}

.button.wide {
  width: 100%;
}

.button svg,
.metric svg,
.feature svg,
.promo svg,
.event-note svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.scroll-hint {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.metric-band {
  overflow: hidden;
  padding: 34px 0;
  background:
    linear-gradient(90deg, var(--cream), rgba(247, 217, 223, 0.75), var(--mint)),
    var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric-track {
  display: flex;
  width: max-content;
  animation: metric-scroll 34s linear infinite;
}

.metric-band:hover .metric-track {
  animation-play-state: paused;
}

.metric-set {
  display: flex;
  gap: 14px;
  padding: 0 7px;
}

.metric {
  min-width: 245px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  min-height: 112px;
  padding: 18px;
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.metric svg {
  color: var(--teal);
  grid-row: 1 / 3;
  width: 34px;
  height: 34px;
}

.metric strong {
  color: var(--chocolate);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1;
  text-align: left;
}

.metric span:last-child {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: left;
}

@keyframes metric-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

section {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.builder-section,
.events-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.section-copy p,
.builder-copy p,
.events-content p,
.contact-section p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.02rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature,
.promo,
.product-card,
.builder-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature {
  min-height: 230px;
  padding: 22px;
}

.feature svg,
.promo svg {
  color: var(--rose);
  width: 28px;
  height: 28px;
  margin-bottom: 22px;
}

.feature p,
.promo p,
.product-card p {
  color: var(--muted);
}

.menu-section,
.promo-section {
  background: var(--paper);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.segmented-control {
  display: inline-grid;
  grid-template-columns: repeat(4, minmax(82px, 1fr));
  gap: 4px;
  padding: 4px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.segment {
  min-height: 40px;
  padding: 8px 12px;
  color: var(--coffee);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
}

.segment.active {
  color: var(--paper);
  background: var(--chocolate);
}

.accordion-list {
  display: grid;
  gap: 14px;
}

.accordion-item {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.accordion-item.is-hidden {
  display: none;
}

.accordion-trigger {
  width: 100%;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  color: var(--chocolate);
  background: transparent;
  border: 0;
  font-weight: 900;
  cursor: pointer;
}

.accordion-trigger span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.accordion-panel {
  padding: 0 20px 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.product-grid.compact {
  grid-template-columns: repeat(4, 1fr);
}

.product-card {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 360px;
  padding: 22px;
  align-content: start;
}

.product-card.image-card {
  min-height: 310px;
  background: var(--paper);
}

.product-photo {
  width: 100%;
  height: 150px;
  object-fit: contain;
  background: linear-gradient(180deg, #fff, var(--cream));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.admin-upload {
  display: none;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 10px;
  color: var(--chocolate);
  background: var(--mint);
  border: 1px dashed rgba(4, 124, 120, 0.45);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

body.admin-mode .admin-upload {
  display: flex;
}

.admin-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.badge {
  width: fit-content;
  padding: 6px 9px;
  color: var(--rose);
  background: var(--rose-soft);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.price-row strong,
.image-card strong {
  color: var(--rose);
}

.topping-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.topping-grid span,
.event-tags span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  color: var(--chocolate);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
}

.topping-grid span {
  min-height: 132px;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
}

.topping-grid img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--cream);
}

.builder-section {
  background: var(--mint);
}

.product-preview {
  width: min(380px, 100%);
  margin-top: 26px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.preview-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 300px;
  background:
    radial-gradient(circle at 50% 26%, rgba(216, 86, 114, 0.16), transparent 34%),
    linear-gradient(180deg, #fff, var(--cream));
}

.preview-stage img {
  width: 78%;
  height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(59, 30, 18, 0.16));
}

.preview-shine {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(200, 147, 61, 0.28);
  border-radius: var(--radius);
  pointer-events: none;
}

.preview-summary {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: var(--chocolate);
  color: var(--paper);
}

.preview-summary span {
  color: #ffd4de;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.preview-summary strong {
  font-size: 1.2rem;
}

.preview-toppings {
  display: flex;
  gap: 8px;
  min-height: 46px;
}

.preview-toppings img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: var(--paper);
  border-radius: 50%;
}

.builder-panel {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 34px);
}

.field-group {
  display: grid;
  gap: 10px;
}

.field-group > label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 900;
}

.field-group small {
  color: var(--rose);
  font-size: 0.78rem;
}

select,
input[type="date"],
input[type="time"] {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.size-options,
.extras-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.size-options label,
.extras-list label {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 700;
}

.total-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  color: var(--paper);
  background: var(--chocolate);
  border-radius: var(--radius);
}

.total-box span {
  font-weight: 800;
}

.total-box strong {
  font-size: 2rem;
}

.promo-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 18px;
  align-items: stretch;
}

.promo-showcase > img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.promo {
  min-height: 0;
  padding: 24px;
}

.moments-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: var(--chocolate);
  color: var(--paper);
}

.moments-section .section-copy p {
  color: #f2c7d0;
}

.moments-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.moment-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  isolation: isolate;
}

.moment-card img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  filter: blur(5px) saturate(1.04) brightness(1.08);
  transform: scale(1.035);
}

.cup-focus {
  position: absolute;
  z-index: 3;
  overflow: hidden;
  background: rgba(255, 253, 249, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.cup-focus img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: saturate(1.12) brightness(1.14);
  transform: scale(1.18);
}

.cup-focus-one {
  top: 38px;
  left: 24px;
  width: 46%;
  height: 42%;
}

.cup-focus-one img {
  object-position: 22% 45%;
}

.cup-focus-two {
  top: 74px;
  left: 20px;
  width: 52%;
  height: 44%;
}

.cup-focus-two img {
  object-position: 12% 46%;
}

.moment-card:first-child img {
  object-position: 50% 42%;
}

.moment-card:nth-child(2) img {
  object-position: 48% 48%;
}

.moment-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(59, 30, 18, 0.06), rgba(59, 30, 18, 0.62)),
    radial-gradient(circle at 50% 36%, rgba(255, 248, 241, 0.16), transparent 42%);
}

.moment-overlay {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  display: grid;
  gap: 8px;
}

.moment-overlay span {
  width: fit-content;
  padding: 7px 10px;
  color: var(--chocolate);
  background: var(--rose-soft);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.moment-overlay strong {
  max-width: 330px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.04;
}

.events-section {
  background: var(--cream);
}

.events-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.event-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--teal);
  font-weight: 900;
}

.event-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.gallery-section {
  background: var(--paper);
}

.gallery-marquee {
  overflow: hidden;
  padding: 8px 0 18px;
}

.gallery-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: gallery-scroll 40s linear infinite;
}

.gallery-marquee:hover .gallery-track {
  animation-play-state: paused;
}

.gallery-track img {
  width: clamp(260px, 32vw, 430px);
  height: 390px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery-track img:nth-child(3),
.gallery-track img:nth-child(8) {
  object-fit: cover;
  object-position: center top;
  padding: 0;
  background: var(--cream);
}

@keyframes gallery-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

.social-section {
  background: var(--cream);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.social-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.social-card > img:first-child {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: contain;
  object-position: top center;
  background: #101418;
}

.social-card span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  color: var(--paper);
  background: rgba(59, 30, 18, 0.86);
  border-radius: var(--radius);
  font-weight: 900;
}

.social-card svg {
  width: 20px;
  height: 20px;
}

.contact-section {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 80% 20%, rgba(216, 86, 114, 0.28), transparent 34%),
    radial-gradient(circle at 12% 90%, rgba(4, 124, 120, 0.18), transparent 30%),
    var(--chocolate);
}

.contact-section .eyebrow,
.contact-section p {
  color: #ffd4de;
}

.contact-card {
  position: relative;
  z-index: 1;
}

.contact-card h2 {
  max-width: 760px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 16px 32px rgba(4, 124, 120, 0.24);
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-whatsapp svg {
  width: 26px;
  height: 26px;
}

@media (max-width: 1080px) {
  .feature-grid,
  .product-grid,
  .product-grid.compact,
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .promo-showcase {
    grid-template-columns: 1fr;
  }

  .builder-section,
  .moments-section,
  .events-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .gallery-track img {
    height: 340px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 16px;
  }

  .icon-button {
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    color: var(--chocolate);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-header.open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 13px 8px;
  }

  .hero {
    min-height: 88svh;
    padding: 104px 18px 72px;
  }

  .hero-media {
    background-position: 63% center;
  }

  .scroll-hint {
    left: 18px;
    right: auto;
  }

  .section-head {
    align-items: stretch;
    flex-direction: column;
  }

  .segmented-control {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid,
  .product-grid,
  .product-grid.compact,
  .promo-grid,
  .moments-grid,
  .social-grid,
  .topping-grid,
  .form-row,
  .size-options,
  .extras-list {
    grid-template-columns: 1fr;
  }

  .metric {
    min-height: 126px;
    min-width: 220px;
  }

  section {
    padding: 48px 16px;
  }

  .accordion-trigger {
    padding: 16px;
  }

  .accordion-panel {
    padding: 0 16px 16px;
  }

  .product-card {
    min-height: auto;
  }

  .product-photo {
    height: 180px;
  }

  .gallery-track img {
    width: 280px;
    height: 300px;
  }

  .moment-card,
  .moment-card img {
    min-height: 360px;
  }

  .promo-showcase > img {
    min-height: 260px;
  }

  .social-card,
  .social-card > img:first-child {
    min-height: 300px;
  }

  .cup-focus-one,
  .cup-focus-two {
    width: 58%;
    height: 38%;
  }
}

/* Paleta suave por sección y experiencia de administración */
.menu-section {
  background: #fff8f1;
}

.protagonists-section {
  color: var(--chocolate);
  background:
    radial-gradient(circle at 86% 14%, rgba(216, 86, 114, 0.14), transparent 30%),
    #f8e7ea;
}

.protagonists-section .eyebrow,
.protagonists-section .section-intro {
  color: #8a4a58;
}

.promo-section {
  background: #f5ede5;
}

.events-section {
  background: #efe2d7;
}

.flavor-section {
  background: #fff0ec;
}

.contact-section {
  color: var(--chocolate);
  background:
    radial-gradient(circle at 82% 18%, rgba(216, 86, 114, 0.11), transparent 32%),
    #f2e8df;
}

.contact-section .eyebrow,
.contact-section p {
  color: var(--coffee);
}

.business-info article {
  background: rgba(255, 253, 249, 0.72);
  border-color: rgba(111, 63, 37, 0.16);
}

.business-info svg {
  color: var(--rose);
}

.business-info span {
  color: var(--muted);
}

.contact-actions {
  display: flex;
  justify-content: flex-start;
}

.final-social-section {
  background: #f7e3e7;
}

.product-photo-placeholder.has-image {
  background-size: cover;
  background-position: center;
}

body.admin-mode .product-photo-placeholder.admin-editable {
  position: relative;
  outline: 2px dashed rgba(216, 86, 114, 0.64);
  outline-offset: -7px;
  cursor: pointer;
}

body.admin-mode .product-photo-placeholder.admin-editable:hover,
body.admin-mode .product-photo-placeholder.admin-editable:focus-visible {
  outline-color: var(--chocolate);
  box-shadow: 0 0 0 4px rgba(216, 86, 114, 0.14);
}

.admin-product-upload span {
  display: grid;
  line-height: 1.25;
}

.admin-product-upload b {
  font-size: 0.8rem;
}

.admin-product-upload small {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
}

.admin-photo-banner {
  width: min(470px, calc(100% - 36px));
  max-width: 470px;
  display: grid;
  grid-template-columns: auto 1fr;
}

.admin-photo-banner > svg {
  grid-row: 1 / 3;
}

.admin-photo-banner span small {
  color: #f8e7ea;
}

.admin-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  grid-column: 2;
}

.admin-banner-actions button,
.admin-banner-actions a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  color: var(--chocolate);
  background: var(--paper);
  border: 0;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 900;
  cursor: pointer;
}

.admin-banner-actions a {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.admin-banner-actions svg {
  width: 15px;
  height: 15px;
}

.admin-photo-banner.is-saved {
  background: #315e4d;
}

/* Configurador más compacto para evitar desplazamientos innecesarios */
.order-modal-body {
  gap: 10px;
  padding: 14px 18px;
}

.order-step {
  gap: 8px;
}

.order-step + .order-step {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.order-step-title {
  align-items: center;
  gap: 9px;
}

.order-step-title > span {
  width: 26px;
  height: 26px;
  font-size: 0.8rem;
}

.order-step-title h3 {
  margin: 0 0 1px;
  font-size: 0.98rem;
}

.order-step-title p {
  font-size: 0.75rem;
}

.modal-size-options button {
  min-height: 48px;
  padding: 8px 10px;
}

.topping-option {
  min-height: 82px;
  gap: 4px;
  padding: 5px 4px;
}

.topping-standalone,
.topping-sprite {
  width: 78px;
  height: 40px;
}

.topping-sprite img {
  width: 312px;
  height: 208px;
  transform: translate(calc(var(--x) * -78px), calc(var(--y) * -52px));
}

.quantity-control button {
  height: 40px;
}

.delivery-fields {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  background: #fff0ec;
  border: 1px solid rgba(216, 86, 114, 0.2);
}

.delivery-fields > svg {
  width: 23px;
  height: 23px;
  color: var(--rose);
}

.delivery-fields p {
  display: grid;
  gap: 3px;
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.delivery-fields strong {
  color: var(--chocolate);
  font-size: 0.84rem;
}

.final-social-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.final-social-links a {
  grid-template-columns: auto 1fr;
  min-height: 76px;
}

.final-social-links a:hover {
  transform: translateY(-3px);
}

.final-social-links .brand-icon {
  width: 28px;
  height: 28px;
}

.final-social-links > .social-instagram { color: #b73574; }
.final-social-links > .social-facebook { color: #1877f2; }
.final-social-links > .social-tiktok { color: #171717; }
.final-social-links > .social-whatsapp { color: #168b45; }

.final-social-links a strong {
  color: currentColor;
}

@media (max-width: 760px) {
  .admin-photo-banner {
    width: auto;
    max-width: none;
  }

  .admin-banner-actions {
    grid-column: 1 / 3;
  }

  .order-modal-body {
    gap: 8px;
    padding: 10px 12px;
  }

  .modal-topping-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .topping-option {
    min-height: 78px;
  }

  .topping-standalone,
  .topping-sprite {
    width: 70px;
    height: 36px;
  }

  .topping-sprite img {
    width: 280px;
    height: 188px;
    transform: translate(calc(var(--x) * -70px), calc(var(--y) * -47px));
  }

  .final-social-links {
    grid-template-columns: 1fr;
  }
}

/* Ajustes editoriales: portada clara, fotos administrables y promos sin imagen */
.hero-content {
  padding: clamp(22px, 4vw, 40px);
  color: var(--chocolate);
  background: rgba(255, 248, 241, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(42, 20, 12, 0.22);
  text-shadow: none;
  backdrop-filter: blur(10px);
}

.hero .eyebrow,
.hero-copy {
  color: var(--coffee);
}

.hero h1 {
  color: var(--chocolate);
}

.hero .script-line {
  color: var(--rose);
}

.product-photo-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  color: var(--coffee);
  background-color: #f9e9e8;
  background-image: linear-gradient(145deg, #fffaf6, #f5dddf);
  background-position: center;
  background-size: cover;
  text-align: center;
}

.product-photo-placeholder svg {
  width: 30px;
  height: 30px;
  color: var(--rose);
}

.product-photo-placeholder span {
  padding-inline: 8px;
  font-size: 0.78rem;
  font-weight: 800;
}

.product-photo-placeholder.has-image > * {
  display: none;
}

.admin-product-upload {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 11px;
  color: var(--chocolate);
  background: var(--rose-soft);
  border: 1px dashed var(--rose);
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

body.admin-mode .admin-product-upload {
  display: flex;
}

.admin-product-upload input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.admin-product-upload.is-loading {
  opacity: 0.65;
  pointer-events: none;
}

.admin-product-upload svg {
  width: 18px;
  height: 18px;
}

.admin-photo-banner {
  position: fixed;
  top: 88px;
  right: 18px;
  z-index: 75;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 330px;
  padding: 12px 15px;
  color: var(--paper);
  background: var(--chocolate);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.admin-photo-banner span {
  display: grid;
  font-size: 0.75rem;
}

.admin-photo-banner strong {
  color: #ffd1dc;
  font-size: 0.88rem;
}

.promo-showcase {
  display: block;
}

.promo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.promo {
  min-height: 240px;
  align-content: start;
}

.testimonial-carousel {
  cursor: grab;
}

.testimonial-carousel:active {
  cursor: grabbing;
}

.testimonial-carousel.is-auto {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.final-social-section {
  background: linear-gradient(135deg, #f7dde2, #f4e7df);
}

.final-social-links a {
  border-color: rgba(161, 75, 91, 0.22);
}

@media (max-width: 760px) {
  .hero-content {
    padding: 20px;
    background: rgba(255, 248, 241, 0.91);
    border-radius: 16px;
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .promo {
    min-height: 0;
  }

  .admin-photo-banner {
    top: auto;
    right: 12px;
    bottom: 78px;
    left: 12px;
    max-width: none;
  }
}

/* Version comercial compacta */
section[id] {
  scroll-margin-top: 76px;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.section-intro {
  max-width: 560px;
  margin: 12px 0 0;
  color: var(--muted);
}

.metric-band {
  padding: 28px clamp(18px, 5vw, 72px);
}

.metric-track {
  width: min(920px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
  animation: none;
}

.metric {
  min-width: 0;
}

.segmented-control {
  grid-template-columns: repeat(5, minmax(78px, 1fr));
}

.product-card {
  min-height: 420px;
}

.mobile-price,
.quick-toggle {
  display: none;
}

.card-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 4px;
}

.quick-order,
.quick-toggle {
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 900;
}

.quick-order {
  display: inline-flex;
  flex: 1;
  color: var(--paper);
  background: var(--teal);
}

.quick-order svg,
.quick-toggle svg {
  width: 17px;
  height: 17px;
}

.quick-toggle {
  color: var(--chocolate);
  background: var(--cream);
  border: 1px solid var(--line);
  cursor: pointer;
}

.allergy-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.allergy-note svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--teal);
}

input[type="number"],
input[type="text"] {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.experience-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  color: var(--paper);
  background: var(--chocolate);
}

.experience-copy > p:not(.eyebrow) {
  max-width: 520px;
  color: #f2c7d0;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, 220px);
  gap: 12px;
}

.experience-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
}

.experience-grid .experience-main {
  grid-row: 1 / 3;
}

.social-actions {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 12px 14px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  transition: background 160ms ease, transform 160ms ease;
}

a.social-link:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(3px);
}

.social-link svg {
  width: 22px;
  height: 22px;
  color: #ffb9c7;
  flex: 0 0 auto;
}

.social-link span {
  display: grid;
  color: #f2c7d0;
  font-size: 0.82rem;
}

.social-link strong {
  color: var(--paper);
  font-size: 0.96rem;
}

.social-link-muted {
  opacity: 0.72;
}

.business-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.business-info article {
  display: flex;
  gap: 10px;
  min-height: 82px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.business-info svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: #ffb9c7;
}

.business-info div {
  display: grid;
  gap: 3px;
}

.business-info span {
  color: #f2c7d0;
  font-size: 0.8rem;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-footer {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
  font-size: 0.84rem;
  font-weight: 700;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--chocolate);
}

.site-footer svg {
  width: 17px;
  height: 17px;
}

.floating-whatsapp span {
  display: none;
}

.floating-whatsapp.is-hidden {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}

@media (max-width: 1080px) {
  .experience-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 0;
  }

  body.has-quote-items {
    padding-bottom: 76px;
  }

  h1 {
    font-size: clamp(2.85rem, 14vw, 4.25rem);
  }

  .script-line {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .metric-track {
    grid-template-columns: 1fr;
  }

  .metric {
    min-height: 92px;
  }

  .segmented-control {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    padding: 4px;
  }

  .segment {
    min-width: 0;
    padding-inline: 6px;
  }

  .product-card,
  .product-card.image-card {
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 8px 12px;
    min-height: 0;
    padding: 14px;
  }

  .product-photo {
    grid-column: 1;
    grid-row: 1 / 5;
    width: 90px;
    height: 90px;
  }

  .product-card .badge,
  .product-card h3,
  .product-card p,
  .mobile-price {
    grid-column: 2;
  }

  .product-card .badge {
    padding: 4px 7px;
    font-size: 0.68rem;
  }

  .product-card h3 {
    font-size: 1rem;
  }

  .mobile-price {
    display: block;
    color: var(--rose);
    font-size: 0.86rem;
    font-weight: 900;
  }

  .product-card:not(.is-expanded) p,
  .product-card:not(.is-expanded) .price-row,
  .product-card.image-card > strong {
    display: none;
  }

  .product-card.is-expanded p,
  .product-card.is-expanded .price-row {
    grid-column: 1 / -1;
  }

  .card-actions {
    grid-column: 1 / -1;
    margin-top: 4px;
  }

  .quick-toggle {
    display: inline-flex;
  }

  .experience-grid {
    grid-template-rows: 220px 170px;
  }

  .experience-grid .experience-main {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .business-info,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .site-footer {
    min-height: 92px;
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 999px;
  }

  .floating-whatsapp span {
    display: inline;
    font-weight: 900;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Experiencia de compra y contenido 2026 */
[hidden] {
  display: none !important;
}

body.no-scroll {
  overflow: hidden;
}

.hero-media {
  background-image: url("assets/media/hero-principal.webp");
  background-position: center center;
  opacity: 1;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(42, 20, 12, 0.9) 0%, rgba(42, 20, 12, 0.72) 38%, rgba(42, 20, 12, 0.24) 68%, rgba(42, 20, 12, 0.08) 100%),
    linear-gradient(180deg, rgba(20, 8, 4, 0.12), rgba(20, 8, 4, 0.36));
}

.nav-download {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  color: inherit;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
}

.nav-download svg {
  width: 17px;
  height: 17px;
}

.menu-download-popover {
  position: fixed;
  top: 78px;
  right: clamp(18px, 4vw, 58px);
  z-index: 45;
  width: min(410px, calc(100% - 32px));
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(35, 16, 9, 0.24);
}

.menu-download-popover > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-download-popover > div > svg {
  width: 28px;
  height: 28px;
  color: var(--rose);
}

.menu-download-popover span {
  display: grid;
  color: var(--muted);
  font-size: 0.78rem;
}

.menu-download-popover strong {
  color: var(--chocolate);
  font-size: 0.94rem;
}

.menu-download-popover .button {
  min-height: 42px;
  padding: 9px 12px;
  font-size: 0.82rem;
}

.product-order-button {
  width: 100%;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  padding: 10px 12px;
  color: var(--paper);
  background: var(--teal);
  border: 0;
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.product-order-button svg {
  width: 17px;
  height: 17px;
}

.protagonists-section {
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 85% 15%, rgba(216, 86, 114, 0.26), transparent 28%),
    var(--chocolate);
}

.protagonists-section .eyebrow,
.protagonists-section .section-intro {
  color: #f4c7d0;
}

.protagonists-head {
  align-items: center;
}

.carousel-controls {
  display: flex;
  gap: 8px;
}

.carousel-controls button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  cursor: pointer;
}

.carousel-controls svg {
  width: 20px;
  height: 20px;
}

.testimonial-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 0 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonial-carousel::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  position: relative;
  min-width: clamp(250px, 25vw, 340px);
  height: 470px;
  margin: 0;
  overflow: hidden;
  background: #1f100a;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  scroll-snap-align: start;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
}

.testimonial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card::after {
  position: absolute;
  inset: 38% 0 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(24, 10, 5, 0.9));
}

.testimonial-card figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 1;
  color: var(--paper);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.25;
}

.event-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: 260px 160px;
  gap: 10px;
}

.event-mosaic figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.event-mosaic-main {
  grid-column: 1 / 4;
}

.event-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-mosaic figcaption,
.flavor-masonry figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  width: fit-content;
  padding: 7px 10px;
  color: var(--paper);
  background: rgba(43, 20, 12, 0.82);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.event-video-card {
  position: relative;
  min-height: clamp(520px, 55vw, 650px);
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  background:
    radial-gradient(circle at 18% 18%, rgba(246, 231, 167, 0.24), transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(216, 86, 114, 0.28), transparent 34%),
    linear-gradient(145deg, #29130d, #6f3f25);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: clamp(18px, 3vw, 30px);
  box-shadow: 0 24px 54px rgba(59, 30, 18, 0.24);
}

.event-video-card::before,
.event-video-card::after {
  position: absolute;
  z-index: -1;
  width: 150px;
  height: 150px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.event-video-card::before {
  top: 12%;
  left: -82px;
}

.event-video-card::after {
  right: -76px;
  bottom: 10%;
}

.event-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  outline: none;
}

.event-video-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(28, 12, 7, 0.22), transparent 24%, transparent 68%, rgba(28, 12, 7, 0.66));
}

.event-video-caption {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  margin: 0;
}

.event-video-caption span,
.event-video-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--paper);
  background: rgba(43, 20, 12, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 24px rgba(28, 12, 7, 0.2);
  backdrop-filter: blur(10px);
}

.event-video-caption span {
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.event-video-caption svg,
.event-video-control svg {
  width: 17px;
  height: 17px;
}

.event-video-controls {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.event-video-control {
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.event-video-control:hover,
.event-video-control:focus-visible {
  background: rgba(216, 86, 114, 0.92);
  transform: translateY(-2px);
}

.event-video-control:focus-visible,
.event-video:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.video-icon-play,
.video-icon-sound,
.event-video-card.is-paused .video-icon-pause,
.event-video-card.has-sound .video-icon-muted {
  display: none;
}

.event-video-card.is-paused .video-icon-play,
.event-video-card.has-sound .video-icon-sound {
  display: block;
}

.flavor-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  background: var(--paper);
}

.flavor-intro > p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
}

.flavor-signature {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 9px 12px;
  color: var(--rose);
  background: var(--rose-soft);
  border-radius: 999px;
  font-weight: 900;
}

.flavor-signature svg {
  width: 18px;
  height: 18px;
}

.flavor-masonry {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 220px 220px 180px;
  gap: 12px;
}

.flavor-masonry figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.flavor-feature {
  grid-row: 1 / 3;
}

.flavor-wide {
  grid-column: 1 / 3;
}

.flavor-masonry img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-social-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  background: var(--mint);
}

.final-social-section > div > p:not(.eyebrow) {
  color: var(--muted);
}

.final-social-links {
  display: grid;
  gap: 10px;
}

.final-social-links a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 70px;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(59, 30, 18, 0.08);
  transition: transform 160ms ease;
}

.final-social-links a:hover {
  transform: translateX(4px);
}

.final-social-links a > svg:first-child {
  color: var(--rose);
}

.final-social-links svg {
  width: 22px;
  height: 22px;
}

.final-social-links span {
  display: grid;
  color: var(--muted);
  font-size: 0.82rem;
}

.final-social-links strong {
  color: var(--chocolate);
  font-size: 1rem;
}

.order-modal,
.quote-shell {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
}

.modal-backdrop,
.quote-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(28, 12, 6, 0.68);
  border: 0;
  backdrop-filter: blur(6px);
}

.order-modal-card {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 32px));
  max-height: calc(100svh - 32px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-self: center;
  justify-self: center;
  overflow: hidden;
  background: var(--paper);
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(27, 11, 5, 0.34);
}

.order-modal-head,
.quote-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.order-product-mini {
  display: flex;
  align-items: center;
  gap: 12px;
}

.order-product-mini img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.order-product-mini div,
.quote-head > div {
  display: grid;
  gap: 3px;
}

.order-product-mini span,
.quote-head span {
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.order-product-mini h2,
.quote-head h2 {
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.2rem;
}

.modal-close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--chocolate);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.modal-close svg {
  width: 20px;
  height: 20px;
}

.order-modal-body {
  display: grid;
  gap: 20px;
  align-content: start;
  overflow-y: auto;
  padding: 20px;
}

.order-step {
  display: grid;
  gap: 14px;
  align-content: start;
}

.order-step-title {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.order-step-title > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--paper);
  background: var(--rose);
  border-radius: 50%;
  font-weight: 900;
}

.order-step-title h3 {
  margin-bottom: 4px;
}

.order-step-title p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.modal-size-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.modal-size-options button {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  color: var(--chocolate);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
}

.modal-size-options button.selected {
  color: var(--paper);
  background: var(--chocolate);
  border-color: var(--chocolate);
}

.modal-topping-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(90px, 1fr));
  gap: 8px;
}

.topping-option {
  position: relative;
  min-height: 110px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 7px;
  overflow: hidden;
  padding: 8px 5px;
  color: var(--chocolate);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
}

.topping-option:has(input:checked) {
  background: var(--rose-soft);
  border: 2px solid var(--rose);
}

.topping-option:has(input:disabled) {
  opacity: 0.44;
  cursor: not-allowed;
}

.topping-option input {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 17px;
  height: 17px;
  accent-color: var(--rose);
}

.topping-standalone,
.topping-sprite {
  width: 96px;
  height: 52px;
  display: block;
  object-fit: contain;
}

.topping-sprite {
  position: relative;
  overflow: hidden;
}

.topping-sprite img {
  position: absolute;
  top: 0;
  left: 0;
  width: 384px;
  height: 256px;
  max-width: none;
  transform: translate(calc(var(--x) * -96px), calc(var(--y) * -64px));
}

.topping-showcase-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(100px, 1fr));
  gap: 9px;
}

.topping-showcase-item {
  min-height: 108px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  padding: 10px 6px;
  color: var(--chocolate);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.74rem;
  font-weight: 800;
  text-align: center;
}

.quantity-step {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.quantity-control {
  display: grid;
  grid-template-columns: 42px 48px 42px;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.quantity-control button {
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--chocolate);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.quantity-control svg {
  width: 18px;
  height: 18px;
}

.quantity-control output {
  font-weight: 900;
  text-align: center;
}

.order-modal-footer {
  display: grid;
  grid-template-columns: auto minmax(260px, 0.45fr);
  align-items: center;
  justify-content: end;
  gap: 18px;
  padding: 14px 20px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.order-modal-footer > div {
  display: grid;
  text-align: right;
}

.order-modal-footer span {
  color: var(--muted);
  font-size: 0.76rem;
}

.order-modal-footer strong {
  color: var(--chocolate);
  font-size: 1.4rem;
}

.order-modal-footer button:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.quote-drawer {
  position: relative;
  z-index: 1;
  width: min(480px, 100%);
  height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  justify-self: end;
  overflow: hidden;
  background: var(--paper);
  box-shadow: -24px 0 70px rgba(27, 11, 5, 0.28);
}

.quote-scroll {
  overflow-y: auto;
  padding: 16px;
}

.quote-empty {
  min-height: 240px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  color: var(--muted);
  text-align: center;
}

.quote-empty svg {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  color: var(--rose);
}

.quote-empty strong {
  color: var(--chocolate);
}

.quote-items {
  display: grid;
  gap: 10px;
}

.quote-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.quote-item > img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: var(--paper);
  border-radius: 8px;
}

.quote-item-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.quote-item-copy strong {
  color: var(--chocolate);
  font-size: 0.86rem;
}

.quote-item-copy span {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.7rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quote-item-copy b {
  color: var(--rose);
  font-size: 0.84rem;
}

.quote-item-actions {
  display: grid;
  grid-template-columns: 28px 24px 28px;
  align-items: center;
  justify-items: center;
  gap: 2px;
}

.quote-item-actions button {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--chocolate);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.quote-item-actions .remove-quote-item {
  grid-column: 1 / 4;
  width: 100%;
  margin-top: 4px;
  color: var(--rose);
}

.quote-item-actions svg {
  width: 15px;
  height: 15px;
}

.fulfillment-section {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.fulfillment-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.fulfillment-options label {
  position: relative;
  min-height: 82px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 12px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

.fulfillment-options label:has(input:checked) {
  background: var(--mint);
  border-color: var(--teal);
}

.fulfillment-options input {
  position: absolute;
  opacity: 0;
}

.fulfillment-options svg {
  width: 21px;
  height: 21px;
  color: var(--teal);
}

.fulfillment-options span {
  display: grid;
  color: var(--muted);
  font-size: 0.7rem;
}

.fulfillment-options strong {
  color: var(--chocolate);
  font-size: 0.86rem;
}

.delivery-fields {
  display: grid;
  gap: 9px;
  padding: 12px;
  background: var(--mint);
  border-radius: 10px;
}

.delivery-fields label,
.notes-field {
  display: grid;
  gap: 6px;
  color: var(--chocolate);
  font-size: 0.78rem;
  font-weight: 800;
}

.delivery-fields input,
.notes-field textarea {
  width: 100%;
  padding: 10px 11px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.gps-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--teal);
  background: var(--paper);
  border: 1px solid var(--teal);
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.gps-button svg {
  width: 18px;
  height: 18px;
}

.delivery-fields small {
  color: var(--muted);
}

.delivery-fields small.location-success {
  color: var(--teal);
  font-weight: 800;
}

.quote-footer {
  display: grid;
  gap: 10px;
  padding: 14px 16px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.quote-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.quote-total span {
  color: var(--muted);
  font-weight: 800;
}

.quote-total strong {
  color: var(--chocolate);
  font-size: 1.6rem;
}

.button.is-disabled {
  opacity: 0.46;
  pointer-events: none;
}

.continue-shopping {
  min-height: 36px;
  color: var(--coffee);
  background: transparent;
  border: 0;
  font-weight: 800;
  cursor: pointer;
}

.floating-quote {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  color: var(--paper);
  background: var(--teal);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(4, 124, 120, 0.28);
  font-weight: 900;
  cursor: pointer;
}

.floating-quote svg {
  width: 22px;
  height: 22px;
}

.floating-quote strong {
  min-width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: var(--paper);
  border-radius: 50%;
  font-size: 0.76rem;
}

@media (max-width: 1080px) {
  .nav-links {
    gap: 15px;
  }

  .nav-download {
    padding-inline: 9px;
  }

  .modal-topping-grid {
    grid-template-columns: repeat(4, minmax(90px, 1fr));
  }

  .topping-showcase-grid {
    grid-template-columns: repeat(4, minmax(90px, 1fr));
  }

  .flavor-section,
  .final-social-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero-media {
    background-position: 68% center;
  }

  .nav-download {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
    color: var(--paper);
    background: var(--chocolate);
    border-color: var(--chocolate);
    border-radius: 8px;
  }

  .menu-download-popover {
    top: 76px;
    right: 16px;
    left: 16px;
    width: auto;
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-width: 78vw;
    height: 430px;
  }

  .event-mosaic {
    grid-template-rows: 220px 120px;
  }

  .event-video-card {
    min-height: min(680px, 78svh);
  }

  .event-video-controls {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .event-video-control {
    padding-inline: 12px;
  }

  .flavor-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 320px 180px 160px;
  }

  .flavor-feature {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .flavor-wide {
    display: block;
    grid-column: 1 / 3;
    grid-row: 3;
  }

  .product-order-button {
    grid-column: 1 / -1;
  }

  .order-modal-card {
    width: 100%;
    max-height: 100svh;
    align-self: end;
    border-radius: 18px 18px 0 0;
  }

  .order-modal-head,
  .quote-head {
    padding: 12px 14px;
  }

  .order-modal-body {
    padding: 14px;
  }

  .modal-size-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .modal-topping-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topping-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topping-option {
    min-height: 104px;
  }

  .quantity-step {
    grid-template-columns: 1fr;
  }

  .order-modal-footer {
    grid-template-columns: auto 1fr;
    gap: 10px;
    padding: 11px 14px;
  }

  .order-modal-footer .button {
    padding-inline: 10px;
    font-size: 0.76rem;
  }

  .quote-drawer {
    width: 100%;
  }

  .floating-quote {
    right: 12px;
    bottom: 12px;
    left: 12px;
    justify-content: center;
  }
}
