*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue-ice: #b4d7f4;
  --blue-mist: #7ab5e6;
  --blue-sky: #4a9ad8;
  --blue-core: #2a7fc4;
  --blue-rich: #1a5f9e;
  --blue-deep: #0f4578;
  --blue-ink: #08325c;
  --blue-midnight: #051f3d;

  --blue-light: var(--blue-ice);
  --blue-mid: var(--blue-core);
  --blue-navy: var(--blue-midnight);
  --blue-brand: var(--blue-rich);
  --blue-accent: var(--blue-sky);

  --text-on-blue: rgba(255, 255, 255, 0.92);
  --text-muted: rgba(255, 255, 255, 0.78);
  --text-body: #2a5578;
  --text-body-soft: #4a7394;
  --white: #ffffff;
  --surface: #c5dff2;
  --surface-deep: #a8cce8;
  --surface-card: rgba(255, 255, 255, 0.82);
  --glass: rgba(255, 255, 255, 0.14);
  --glass-border: rgba(255, 255, 255, 0.28);
  --shadow-soft: 0 16px 48px rgba(5, 31, 61, 0.28);
  --shadow-card: 0 12px 36px rgba(5, 31, 61, 0.14);
  --shadow-glow: 0 0 80px rgba(74, 154, 216, 0.35);
  --radius-pill: 999px;
  --radius-nav: 20px;
  --font: 'Outfit', system-ui, sans-serif;
  --font-display: 'Dancing Script', cursive;
  --gradient-main: linear-gradient(
    165deg,
    var(--blue-mist) 0%,
    var(--blue-sky) 28%,
    var(--blue-core) 58%,
    var(--blue-deep) 82%,
    var(--blue-midnight) 100%
  );
  --gradient-mesh:
    radial-gradient(ellipse 70% 55% at 12% 18%, rgba(180, 215, 244, 0.55) 0%, transparent 58%),
    radial-gradient(ellipse 60% 50% at 88% 22%, rgba(74, 154, 216, 0.4) 0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(8, 50, 92, 0.5) 0%, transparent 62%),
    linear-gradient(180deg, var(--blue-sky) 0%, var(--blue-rich) 45%, var(--blue-midnight) 100%);
  --gradient-buy: linear-gradient(135deg, var(--blue-sky) 0%, var(--blue-core) 45%, var(--blue-ink) 100%);
  --gradient-buy-hover: linear-gradient(135deg, var(--blue-core) 0%, var(--blue-deep) 55%, var(--blue-midnight) 100%);
  --gradient-buy-light: linear-gradient(135deg, var(--blue-mist) 0%, var(--blue-sky) 40%, var(--blue-core) 100%);
  --shadow-buy: 0 8px 24px rgba(5, 31, 61, 0.28);
  --shadow-buy-hover: 0 12px 32px rgba(5, 31, 61, 0.34);
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font);
  background: var(--gradient-mesh);
  background-attachment: fixed;
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

main {
  overflow-x: clip;
  width: 100%;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.45;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}

.masthead {
  position: relative;
  background: var(--gradient-main);
  padding-bottom: 88px;
  -webkit-clip-path: url(#masthead-wave);
  clip-path: url(#masthead-wave);
}

.masthead::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 78% 35%, rgba(180, 215, 244, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 15% 70%, rgba(42, 127, 196, 0.25) 0%, transparent 55%);
  pointer-events: none;
}

.masthead::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 31, 61, 0.18) 100%);
  pointer-events: none;
}

.site-header {
  padding: 32px 48px 0;
  position: relative;
  z-index: 10;
}

.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 30px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-nav);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid var(--glass-border);
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.navbar.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.navbar.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  text-shadow: 0 1px 12px rgba(5, 31, 61, 0.3);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.login-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color 0.2s;
}

.login-link:hover {
  color: var(--white);
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-blue);
  transition: color 0.2s, transform 0.2s;
}

.icon-btn:hover {
  color: var(--white);
  transform: scale(1.06);
}

.hero {
  position: relative;
  padding: 56px 48px 0;
  z-index: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.hero-content {
  max-width: 620px;
  padding-left: 8px;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 4.8vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  text-shadow: 0 4px 24px rgba(5, 31, 61, 0.35);
  max-width: 14ch;
}

.hero-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 18px;
  max-width: 42ch;
}

.hero-callout {
  position: relative;
  max-width: 44ch;
  margin-bottom: 32px;
  padding: 16px 18px 16px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow:
    0 10px 28px rgba(5, 31, 61, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-callout::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, var(--white) 0%, rgba(255, 255, 255, 0.55) 100%);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.45);
}

.hero-callout-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
  opacity: 0.95;
}

.hero-callout-text {
  font-size: 1.08rem;
  line-height: 1.55;
  font-weight: 600;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(5, 31, 61, 0.35);
}

.btn-primary,
.btn-add,
.btn-order,
.btn-whatsapp-checkout,
.nav-toggle,
.option-pill,
.qty button {
  touch-action: manipulation;
}

.btn-primary {
  display: inline-block;
  padding: 14px 38px;
  background: var(--gradient-buy);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-buy);
  transition: transform 0.25s ease, box-shadow 0.25s, filter 0.25s;
}

.btn-primary:hover {
  background: var(--gradient-buy-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-buy-hover);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 420px;
  margin-left: auto;
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 88%;
  height: 88%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180, 215, 244, 0.45) 0%, transparent 68%);
  filter: blur(8px);
}

.hero-photo {
  position: relative;
  width: min(100%, 380px);
  height: auto;
  background: transparent;
  filter: drop-shadow(0 20px 40px rgba(5, 31, 61, 0.35));
}

.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin: 16px auto 0;
  width: fit-content;
  opacity: 0.5;
}

.scroll-hint span {
  display: block;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
}

.scroll-hint span:nth-child(1) { width: 28px; }
.scroll-hint span:nth-child(2) { width: 18px; }
.scroll-hint span:nth-child(3) { width: 10px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.shop {
  background:
    radial-gradient(ellipse 100% 70% at 50% -20%, rgba(122, 181, 230, 0.65) 0%, transparent 58%),
    radial-gradient(ellipse 80% 50% at 0% 60%, rgba(42, 127, 196, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 70% 45% at 100% 80%, rgba(15, 69, 120, 0.25) 0%, transparent 48%),
    linear-gradient(180deg, var(--surface) 0%, var(--surface-deep) 55%, #8ebde0 100%);
  padding: 80px 48px 140px;
  margin-top: -48px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.shop::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(74, 154, 216, 0.12) 0%, transparent 42%),
    radial-gradient(circle at 80% 70%, rgba(26, 95, 158, 0.1) 0%, transparent 38%);
  pointer-events: none;
}

.menu-stage {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 36px 28px 40px;
}

.menu-corner-bow {
  position: absolute;
  top: -18px;
  right: -22px;
  width: min(140px, 18vw);
  height: auto;
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 10px 22px rgba(5, 31, 61, 0.22));
  transform: rotate(-8deg);
  animation: menu-bow-float 5s ease-in-out infinite;
}

@keyframes menu-bow-float {
  0%, 100% {
    transform: rotate(-8deg) translateY(0);
  }
  50% {
    transform: rotate(-5deg) translateY(-5px);
  }
}

.menu-corner-flowers {
  position: absolute;
  right: -28px;
  bottom: 48px;
  width: min(210px, 24vw);
  height: auto;
  pointer-events: none;
  z-index: 0;
  opacity: 0.95;
  filter: drop-shadow(0 10px 24px rgba(5, 31, 61, 0.18));
}

.menu-frame {
  position: absolute;
  inset: -10px -14px -18px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.55) 0%, rgba(197, 223, 242, 0.35) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 0 0 1px rgba(74, 154, 216, 0.2),
    0 28px 64px rgba(5, 31, 61, 0.14),
    var(--shadow-glow);
  pointer-events: none;
  z-index: 0;
}

.menu-frame::before,
.menu-frame::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--blue-sky);
  opacity: 0.55;
  transform: rotate(45deg);
}

.menu-frame::before {
  top: 20px;
  left: 24px;
}

.menu-frame::after {
  bottom: 20px;
  right: 24px;
}

.shop-header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
  padding-top: 12px;
}

.menu-bow {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--blue-rich);
  filter: drop-shadow(0 4px 10px rgba(26, 95, 158, 0.3));
}

.shop-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue-rich);
  margin-bottom: 10px;
}

.shop-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7.5vw, 5rem);
  font-weight: 700;
  color: var(--blue-ink);
  line-height: 1;
  margin-bottom: 14px;
}

.shop-lead {
  font-size: 1.08rem;
  color: var(--text-body-soft);
  max-width: 46ch;
  margin: 0 auto;
  line-height: 1.7;
}

.menu-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 24px;
  align-items: stretch;
}

.menu-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 24px 26px;
  background: linear-gradient(
    168deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(228, 241, 252, 0.88) 55%,
    rgba(197, 223, 242, 0.75) 100%
  );
  border: 1px solid rgba(74, 154, 216, 0.35);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  .menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 52px rgba(5, 31, 61, 0.18);
    border-color: rgba(42, 127, 196, 0.55);
  }

  .menu-card:hover .menu-photo img {
    transform: scale(1.07);
  }
}

.menu-card--star {
  border-color: rgba(42, 127, 196, 0.5);
  background: linear-gradient(
    168deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(212, 232, 248, 0.9) 45%,
    rgba(168, 204, 232, 0.82) 100%
  );
}

.menu-card--star::after {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 22px;
  border: 1px dashed rgba(74, 154, 216, 0.3);
  pointer-events: none;
}

.menu-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gradient-buy);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-buy);
}

.menu-badge--soft {
  background: var(--gradient-buy-light);
}

.menu-photo-ring {
  position: relative;
  width: 158px;
  height: 158px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.menu-photo-ring::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: conic-gradient(
    from 200deg,
    var(--blue-ice),
    var(--blue-sky),
    var(--blue-core),
    var(--blue-rich),
    var(--blue-ice)
  );
  animation: menu-ring-spin 16s linear infinite;
}

.menu-photo-ring::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
}

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

.menu-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 10px 28px rgba(5, 31, 61, 0.22);
  background: var(--blue-ice);
}

.menu-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-card-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.menu-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
  width: 100%;
}

.menu-title-row h3 {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--blue-ink);
  line-height: 1.15;
  text-wrap: balance;
}

.menu-dots {
  flex: 1;
  min-width: 24px;
  max-width: 72px;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--blue-sky) 0,
    var(--blue-sky) 4px,
    transparent 4px,
    transparent 9px
  );
  opacity: 0.6;
}

.menu-price-tag {
  font-size: 1.18rem;
  font-weight: 700;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue-rich), var(--blue-core));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.menu-desc {
  font-size: 0.9rem;
  color: var(--text-body-soft);
  line-height: 1.65;
  margin-bottom: 16px;
  padding: 0 4px;
}

.menu-desc--italic {
  font-style: italic;
}

.menu-options {
  border: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
}

.menu-options--stack {
  flex-direction: column;
  align-items: center;
}

.option-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(42, 127, 196, 0.28);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--blue-rich);
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.option-pill:hover {
  transform: scale(1.03);
  border-color: rgba(42, 127, 196, 0.5);
}

.option-pill:has(input:checked) {
  background: var(--gradient-buy);
  border-color: transparent;
  color: var(--white);
  box-shadow: var(--shadow-buy);
}

.option-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.menu-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: auto;
  width: 100%;
}

.qty {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(74, 154, 216, 0.35);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(5, 31, 61, 0.08);
}

.qty button {
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  background: var(--gradient-buy);
  transition: background 0.2s, filter 0.2s;
}

.qty button:hover {
  background: var(--gradient-buy-hover);
  filter: brightness(1.05);
}

.qty input {
  width: 40px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blue-ink);
  -moz-appearance: textfield;
}

.qty input::-webkit-outer-spin-button,
.qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.btn-add {
  flex: 1;
  min-height: 48px;
  padding: 12px 22px;
  background: var(--gradient-buy);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: transform 0.25s, opacity 0.2s, box-shadow 0.25s, background 0.25s;
  box-shadow: var(--shadow-buy);
}

.btn-add:hover:not(:disabled) {
  background: var(--gradient-buy-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-buy-hover);
}

.btn-add:disabled {
  opacity: 0.92;
  transform: none;
}

.btn-add.is-added {
  background: var(--gradient-buy-light);
  box-shadow: 0 8px 28px rgba(74, 154, 216, 0.45);
}

.menu-cta {
  position: relative;
  z-index: 1;
  margin-top: 56px;
  text-align: center;
  padding: 52px 40px 44px;
  border-radius: 32px;
  background: linear-gradient(
    145deg,
    var(--blue-sky) 0%,
    var(--blue-core) 38%,
    var(--blue-deep) 72%,
    var(--blue-midnight) 100%
  );
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 24px 56px rgba(5, 31, 61, 0.28), var(--shadow-glow);
  overflow: hidden;
}

.menu-cta::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--blue-ice);
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(5, 31, 61, 0.25);
}

.menu-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(180, 215, 244, 0.2) 0%, transparent 55%);
  pointer-events: none;
}

.menu-cta-script {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  position: relative;
}

.menu-cta-copy {
  font-size: 1rem;
  opacity: 0.9;
  max-width: 40ch;
  line-height: 1.65;
  position: relative;
}

.btn-order {
  display: inline-block;
  margin-top: 10px;
  padding: 16px 40px;
  background: var(--gradient-buy-light);
  color: var(--white);
  font-weight: 700;
  font-size: 0.96rem;
  font-family: inherit;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: var(--shadow-buy);
  transition: transform 0.25s, background 0.25s, box-shadow 0.25s;
  position: relative;
  cursor: pointer;
}

.btn-order:hover {
  transform: translateY(-3px);
  background: var(--gradient-buy);
  box-shadow: var(--shadow-buy-hover);
}

.menu-cta-phone {
  font-size: 0.88rem;
  opacity: 0.82;
  letter-spacing: 0.06em;
  position: relative;
}

@media (max-width: 960px) {
  body {
    background-attachment: scroll;
  }

  .site-header,
  .hero,
  .shop {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-header {
    padding-top: 20px;
  }

  .navbar {
    padding: 12px 16px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 4px;
    padding: 8px 0 4px;
    order: 3;
  }

  .navbar.is-open .nav-links {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 1rem;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(255, 255, 255, 0.14);
  }

  .masthead {
    padding-bottom: 64px;
  }

  .hero {
    padding-top: 32px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
    padding-bottom: 24px;
  }

  .hero-content {
    max-width: none;
    margin: 0 auto;
    padding-left: 0;
  }

  .hero-content h1 {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2rem, 8.5vw, 3rem);
    line-height: 1.12;
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    max-width: 36ch;
  }

  .hero-callout {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    width: 100%;
    text-align: left;
  }

  .hero-callout-text {
    font-size: 1rem;
  }

  .btn-primary {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .hero-visual {
    max-width: min(72vw, 280px);
    margin: 0 auto;
  }

  .shop {
    padding-top: 56px;
    padding-bottom: 100px;
    margin-top: -32px;
  }

  .menu-stage {
    padding: 52px 14px 88px;
    overflow: hidden;
  }

  .menu-corner-bow {
    top: 6px;
    right: 6px;
    width: min(92px, 24vw);
    animation: none;
    transform: rotate(-6deg);
  }

  .menu-corner-flowers {
    right: 2px;
    bottom: 12px;
    width: min(118px, 32vw);
    opacity: 0.82;
  }

  .menu-frame {
    inset: 0;
    border-radius: 24px;
    box-shadow:
      0 0 0 1px rgba(74, 154, 216, 0.2),
      0 16px 40px rgba(5, 31, 61, 0.12);
  }

  .shop-header {
    margin-bottom: 36px;
    padding: 0 72px 0 8px;
    position: relative;
    z-index: 1;
  }

  .menu-bow {
    display: none;
  }

  .shop-eyebrow {
    font-size: 0.68rem;
  }

  .shop-title {
    font-size: clamp(2.4rem, 9.5vw, 3.2rem);
    line-height: 1.05;
  }

  .shop-lead {
    font-size: 0.98rem;
    max-width: 34ch;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    position: relative;
    z-index: 1;
    padding-bottom: 24px;
  }

  .menu-card {
    padding: 24px 16px 20px;
    padding-top: 36px;
  }

  .menu-badge {
    top: 10px;
    right: 10px;
    font-size: 0.58rem;
    padding: 4px 10px;
  }

  .menu-photo-ring {
    width: 132px;
    height: 132px;
    margin-bottom: 16px;
  }

  .menu-photo-ring::before {
    animation: none;
  }

  .menu-title-row {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .menu-title-row h3 {
    font-size: 1.85rem;
  }

  .menu-dots {
    display: none;
  }

  .menu-options {
    width: 100%;
  }

  .option-pill {
    font-size: 0.84rem;
    padding: 10px 14px;
    min-height: 44px;
  }

  .menu-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .qty {
    width: 100%;
    justify-content: space-between;
  }

  .qty input {
    flex: 1;
    width: auto;
    font-size: 1.05rem;
    padding: 8px 0;
  }

  .btn-add {
    width: 100%;
  }

  .menu-cta {
    padding: 36px 20px 32px;
    margin-top: 40px;
  }

  .menu-cta-script {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .btn-order {
    width: 100%;
    max-width: 320px;
  }

  .checkout-overlay {
    align-items: flex-end;
    padding: 0;
  }

  .checkout-modal {
    width: 100%;
    max-height: 92dvh;
    border-radius: 24px 24px 0 0;
    padding: 28px 20px calc(24px + env(safe-area-inset-bottom, 0px));
    -webkit-overflow-scrolling: touch;
  }

  .checkout-title {
    font-size: clamp(1.65rem, 6.5vw, 2.1rem);
    padding-right: 40px;
  }

  .street-wrap input {
    font-size: 16px;
    padding: 14px 16px;
  }

  .btn-whatsapp-checkout {
    min-height: 52px;
    font-size: 1.02rem;
  }
}

.checkout-open {
  overflow: hidden;
}

.checkout-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 31, 61, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.checkout-overlay[hidden] {
  display: none;
}

.checkout-modal {
  position: relative;
  width: min(100%, 560px);
  max-height: min(92vh, 720px);
  overflow-y: auto;
  padding: 40px 36px 36px;
  border-radius: 32px;
  background: linear-gradient(168deg, #ffffff 0%, #eef6fc 55%, #d8ebfa 100%);
  border: 1px solid rgba(74, 154, 216, 0.35);
  box-shadow: 0 28px 72px rgba(5, 31, 61, 0.32), var(--shadow-glow);
}

.checkout-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  color: var(--blue-ink);
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.checkout-close:hover {
  background: var(--white);
  transform: scale(1.06);
}

.checkout-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  font-weight: 700;
  color: var(--blue-ink);
  line-height: 1.2;
  margin-bottom: 12px;
  padding-right: 36px;
}

.checkout-summary {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blue-rich);
  background: rgba(74, 154, 216, 0.12);
  border: 1px solid rgba(74, 154, 216, 0.25);
  border-radius: 14px;
  padding: 10px 14px;
  margin-bottom: 24px;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.checkout-field label,
.checkout-field legend {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-rich);
  margin-bottom: 10px;
}

.checkout-field legend {
  padding: 0;
}

.street-wrap {
  position: relative;
}

.street-wrap input {
  width: 100%;
  padding: 14px 18px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--blue-ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(74, 154, 216, 0.35);
  border-radius: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.street-wrap input:focus {
  outline: none;
  border-color: var(--blue-core);
  box-shadow: 0 0 0 4px rgba(74, 154, 216, 0.18);
}

.street-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 5;
  list-style: none;
  background: var(--white);
  border: 1px solid rgba(74, 154, 216, 0.3);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.street-suggestions[hidden] {
  display: none;
}

.street-suggestion-item {
  width: 100%;
  text-align: left;
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--text-body);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}

.street-suggestion-item:hover,
.street-suggestion-item:focus-visible {
  background: rgba(74, 154, 216, 0.12);
  outline: none;
}

.street-suggestion-item strong {
  color: var(--blue-rich);
  font-weight: 700;
}

.street-preview {
  margin-top: 10px;
  font-size: 0.92rem;
  color: var(--text-body-soft);
  line-height: 1.5;
  cursor: pointer;
}

.street-preview-rest {
  color: var(--blue-core);
  font-weight: 600;
}

.street-preview-pick {
  color: var(--blue-rich);
  font-weight: 700;
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.payment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-pill {
  flex: 1;
  min-width: 100px;
  justify-content: center;
}

.checkout-hint {
  font-size: 0.88rem;
  color: var(--text-body-soft);
  text-align: center;
  line-height: 1.5;
}

.checkout-hint--ok {
  color: var(--blue-rich);
  font-weight: 600;
}

.btn-whatsapp-checkout {
  width: 100%;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  color: var(--white);
  background: var(--gradient-buy);
  border: none;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-buy);
  cursor: pointer;
  transition: transform 0.25s, background 0.25s, box-shadow 0.25s, opacity 0.2s;
}

.btn-whatsapp-checkout:hover:not(:disabled) {
  background: var(--gradient-buy-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-buy-hover);
}

.btn-whatsapp-checkout:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

@media (max-width: 520px) {
  .site-header,
  .hero,
  .shop {
    padding-left: 12px;
    padding-right: 12px;
  }

  .site-header {
    padding-top: 14px;
  }

  .navbar {
    padding: 10px 12px;
    gap: 8px;
  }

  .logo {
    font-size: 1.15rem;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-content h1 {
    font-size: clamp(1.75rem, 8.8vw, 2.35rem);
    line-height: 1.14;
  }

  .hero-lead {
    font-size: 0.94rem;
    margin-bottom: 14px;
  }

  .hero-callout {
    padding: 14px 14px 14px 18px;
    margin-bottom: 24px;
  }

  .hero-callout-text {
    font-size: 0.92rem;
  }

  .btn-primary {
    max-width: none;
    padding: 15px 24px;
  }

  .hero-visual {
    max-width: min(68vw, 240px);
  }

  .shop {
    padding-top: 48px;
    padding-bottom: 72px;
  }

  .menu-stage {
    padding: 44px 10px 76px;
  }

  .menu-corner-bow {
    top: 2px;
    right: 2px;
    width: min(78px, 22vw);
  }

  .menu-corner-flowers {
    width: min(100px, 28vw);
    bottom: 6px;
    right: 0;
    opacity: 0.78;
  }

  .shop-header {
    padding: 0 58px 0 4px;
    margin-bottom: 28px;
  }

  .shop-title {
    font-size: clamp(2.1rem, 11vw, 2.8rem);
  }

  .shop-lead {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .menu-card {
    padding: 22px 14px 18px;
    padding-top: 32px;
    border-radius: 22px;
  }

  .menu-title-row h3 {
    font-size: 1.55rem;
    white-space: normal;
    text-wrap: balance;
  }

  .menu-price-tag {
    font-size: 1.05rem;
  }

  .menu-desc {
    font-size: 0.86rem;
  }

  .menu-cta {
    padding: 30px 16px 28px;
    margin-top: 32px;
    border-radius: 22px;
  }

  .menu-cta-copy {
    font-size: 0.9rem;
  }

  .btn-order {
    max-width: none;
    width: 100%;
    padding: 15px 20px;
  }

  .payment-options {
    flex-direction: column;
  }

  .payment-pill {
    width: 100%;
    justify-content: center;
  }

  .menu-card--star::after {
    inset: 8px;
  }

  .checkout-modal {
    padding: 24px 16px calc(20px + env(safe-area-inset-bottom, 0px));
    max-height: 94dvh;
  }

  .checkout-title {
    font-size: clamp(1.45rem, 6vw, 1.85rem);
  }

  .checkout-close {
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
  }
}