:root {
  --turquoise: #31d6d0;
  --turquoise-dark: #12a9a5;
  --baby-pink: #ffd6e7;
  --baby-pink-soft: #fff0f7;
  --yellow: #fff2a8;
  --white: #ffffff;
  --ink: #24313d;
  --muted: #677582;
  --line: rgba(36, 49, 61, .10);
  --shadow: 0 12px 30px rgba(36, 49, 61, .08);
  --radius: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Quicksand', 'Cairo', sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--baby-pink) 0%, var(--baby-pink-soft) 52%, #ffffff 100%);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(49, 214, 208, .14), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(255, 242, 168, .28), transparent 22%),
    radial-gradient(circle at 55% 92%, rgba(255, 255, 255, .55), transparent 28%);
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
.soft-bg, .sprinkles { display: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  margin: 0;
  padding: 12px clamp(16px, 4vw, 54px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255, 240, 247, .96);
  border-bottom: 1px solid var(--line);
}
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Quicksand', 'Cairo', sans-serif; font-size: 1.15rem; font-weight: 700; }
.logo-img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 3px solid var(--baby-pink); }
.nav-links { display: flex; gap: 22px; font-weight: 800; color: var(--muted); }
.nav-links a:hover { color: var(--turquoise-dark); }

.header-btn, .primary-btn, .secondary-btn, .option-toggle {
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.header-btn, .primary-btn, .option-toggle { background: var(--turquoise); color: white; }
.secondary-btn { background: var(--baby-pink); color: var(--ink); }
.header-btn:hover, .primary-btn:hover, .secondary-btn:hover, .option-toggle:hover { opacity: .88; }

.hero {
  width: min(1120px, calc(100% - 32px));
  margin: 44px auto 24px;
  display: grid;
  grid-template-columns: 1fr .85fr;
  align-items: center;
  gap: 34px;
}
.eyebrow { display: inline-flex; margin-bottom: 12px; color: var(--turquoise-dark); font-weight: 900; letter-spacing: .08em; text-transform: uppercase; font-size: .76rem; }
h1, h2 { font-family: 'Quicksand', 'Cairo', sans-serif; line-height: 1; letter-spacing: -.035em; }
h1 { font-size: clamp(2.6rem, 7vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
p { color: var(--muted); line-height: 1.7; font-size: 1rem; }
.hero-copy p { max-width: 560px; margin: 20px 0; font-size: 1.05rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual { position: relative; padding: 12px; border-radius: 34px; background: var(--white); box-shadow: var(--shadow); border: 1px solid var(--line); }
.hero-visual img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 26px; }
.floating-badge { position: absolute; z-index: 3; padding: 10px 16px; border-radius: 999px; background: var(--yellow); font-weight: 900; box-shadow: var(--shadow); }
.badge-one { left: 14px; top: 22px; color: var(--turquoise-dark); }
.badge-two { right: 14px; bottom: 32px; color: #8a6d00; }

.quick-info {
  width: min(900px, calc(100% - 32px));
  margin: 16px auto 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.quick-info div { background: var(--white); border: 1px solid var(--line); border-radius: 22px; padding: 22px; text-align: center; box-shadow: var(--shadow); }
.quick-info strong { display: block; font-family: 'Quicksand', 'Cairo', sans-serif; font-size: 2.1rem; color: var(--turquoise-dark); }
.quick-info span { color: var(--muted); font-weight: 800; }

.menu-section { width: min(1120px, calc(100% - 32px)); margin: 0 auto 64px; }
.section-heading { text-align: center; max-width: 680px; margin: 0 auto 26px; }
.section-heading p { margin-top: 10px; }
.menu-shell { background: var(--white); border: 1px solid var(--line); border-radius: 30px; padding: 16px; box-shadow: var(--shadow); }
.category-tabs { position: sticky; top: 75px; z-index: 10; display: flex; gap: 8px; overflow-x: auto; padding: 8px; margin-bottom: 16px; background: rgba(255,255,255,.78); border: 1px solid var(--line); border-radius: 999px; }
.tab-btn { border: 0; white-space: nowrap; cursor: pointer; padding: 12px 16px; border-radius: 999px; background: transparent; color: var(--muted); font-weight: 900; }
.tab-btn.active, .tab-btn:hover { background: var(--baby-pink); color: var(--ink); }
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.menu-card { display: grid; grid-template-columns: 112px 1fr auto; gap: 14px; align-items: center; background: rgba(255,255,255,.92); border-radius: 22px; padding: 12px; min-height: 142px; border: 1px solid var(--line); box-shadow: 0 8px 22px rgba(36,49,61,.06); }
.menu-card img { width: 112px; height: 112px; object-fit: cover; border-radius: 18px; background: #f6f6f6; }
.menu-card h3 { font-family: 'Quicksand', 'Cairo', sans-serif; font-size: 1.16rem; line-height: 1.08; margin: 7px 0 5px; }
.menu-card p { font-size: .9rem; line-height: 1.45; }
.menu-card strong { justify-self: end; text-align: right; color: var(--turquoise-dark); font-weight: 900; min-width: 118px; }
.pill { display: inline-flex; padding: 6px 10px; border-radius: 999px; background: var(--yellow); color: #806600; font-size: .72rem; font-weight: 900; }
.hidden { display: none; }

.order-strip { width: min(1120px, calc(100% - 32px)); margin: 0 auto 64px; padding: 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-radius: 30px; background: linear-gradient(135deg, #ffffff, var(--baby-pink-soft) 45%, var(--yellow)); box-shadow: var(--shadow); border: 1px solid var(--line); }
.order-strip h2 { font-size: clamp(1.9rem, 3.6vw, 3.2rem); max-width: 720px; }

.location-contact { width: min(1120px, calc(100% - 32px)); margin: 0 auto 64px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; }
.map-card, .contact-card { border-radius: 28px; overflow: hidden; background: white; box-shadow: var(--shadow); border: 1px solid var(--line); }
.map-card iframe { width: 100%; height: 400px; border: 0; display: block; }
.contact-card { padding: 30px; display: flex; flex-direction: column; justify-content: center; }
.contact-card p { margin: 16px 0; }
.contact-list { display: grid; gap: 10px; }
.contact-list a { padding: 15px 16px; border-radius: 18px; background: #f5ffff; font-weight: 900; border: 1px solid var(--line); }
.contact-list a:nth-child(even) { background: #fff5fb; }

footer { width: min(1120px, calc(100% - 32px)); margin: 0 auto 20px; padding: 22px; text-align: center; color: var(--muted); }
.reveal, .reveal.show, .delay-1 { opacity: 1; transform: none; transition: none; }

.has-options { align-items: start; }
.has-options > img { align-self: center; }
.option-toggle { justify-self: end; align-self: center; white-space: nowrap; padding: 11px 15px; }
.option-panel { grid-column: 1 / -1; display: none; gap: 8px; padding-top: 8px; }
.options-open .option-panel { display: grid; }
.option-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 14px; border-radius: 16px; background: #f8ffff; border: 1px solid var(--line); font-weight: 800; }
.option-row span { color: var(--ink); }
.option-row strong { min-width: auto; color: var(--turquoise-dark); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; margin-top: 34px; }
  .hero-visual { max-width: 520px; margin: auto; }
  .quick-info { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .location-contact { grid-template-columns: 1fr; }
  .order-strip { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 620px) {
  .site-header { padding: 10px 12px; }
  .logo span:last-child { display: none; }
  .header-btn { padding: 11px 14px; font-size: .88rem; }
  .hero, .menu-section, .order-strip, .location-contact, .quick-info { width: calc(100% - 20px); }
  h1 { font-size: 2.9rem; }
  .menu-shell { padding: 10px; border-radius: 24px; }
  .category-tabs { top: 70px; border-radius: 22px; }
  .menu-card { grid-template-columns: 84px 1fr; gap: 12px; }
  .menu-card img { width: 84px; height: 84px; border-radius: 16px; }
  .menu-card strong { grid-column: 1 / -1; justify-self: start; text-align: left; min-width: auto; font-size: 1.02rem; }
  .menu-card h3 { font-size: 1.03rem; }
  .menu-card p { font-size: .84rem; }
  .order-strip, .contact-card { padding: 22px; border-radius: 24px; }
  .map-card iframe { height: 330px; }
  .option-toggle { grid-column: 1 / -1; justify-self: start; }
  .option-row { align-items: flex-start; flex-direction: column; gap: 4px; }
}

.cart-section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 64px;
}
.cart-card {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 18px;
  align-items: start;
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(135deg, #ffffff, var(--baby-pink-soft) 48%, var(--yellow));
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.cart-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 16px;
}
.cart-items { display: grid; gap: 10px; margin-bottom: 14px; }
.empty-cart { padding: 14px; text-align: center; background: #f8ffff; border-radius: 16px; }
.cart-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  background: #f8ffff;
  border: 1px solid var(--line);
}
.cart-line strong { display: block; font-family: 'Quicksand', 'Cairo', sans-serif; }
.cart-line span { color: var(--turquoise-dark); font-weight: 900; font-size: .9rem; }
.qty-controls { display: flex; align-items: center; gap: 7px; }
.qty-controls button, .add-cart-btn, .add-option-btn {
  border: 0;
  cursor: pointer;
  font-weight: 900;
  border-radius: 999px;
  background: var(--turquoise);
  color: white;
}
.qty-controls button { width: 30px; height: 30px; }
.qty-controls button:last-child { background: var(--baby-pink); color: var(--ink); }
.add-cart-btn {
  grid-column: 1 / -1;
  justify-self: start;
  padding: 11px 16px;
}
.add-option-btn { padding: 8px 14px; }
.cart-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.whatsapp-cart-btn { flex: 1; }

@media (max-width: 900px) {
  .cart-card { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .cart-section { width: calc(100% - 20px); }
  .cart-card { padding: 18px; border-radius: 24px; }
  .cart-line { align-items: flex-start; flex-direction: column; }
  .cart-actions { flex-direction: column; }
  .add-cart-btn { grid-column: 1 / -1; }
}
