/* ═══════════════════════════════════════════════════════════
   SANTA PATITA — Diseño Pet Friendly
   Paleta: Azul cielo #2596e4 | Amarillo #F7C618 | Dark #1A1A2E
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --sky:     #2596e4;
  --sky-d:   #1a7abf;
  --sky-l:   #daeefb;
  --yellow:  #F7C618;
  --yellow-d:#E0B015;
  --dark:    #1A1A2E;
  --dark2:   #2d2d44;
  --white:   #ffffff;
  --gray:    #F5F7FA;
  --text:    #333350;
  --muted:   #7C7C9A;
  --green:   #5CB85C;
  --radius:  16px;
  --radius-lg: 24px;
  --shadow:  0 4px 24px rgba(37,150,228,.15);
  --shadow-lg: 0 8px 40px rgba(37,150,228,.25);
  --t: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Container ── */
.container { max-width: 1600px; margin: 0 auto; padding: 0 40px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 50px; font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: .95rem; cursor: pointer;
  transition: var(--t); border: 2px solid transparent; white-space: nowrap;
}
.btn--yellow  { background: var(--yellow); color: var(--dark); }
.btn--yellow:hover  { background: var(--yellow-d); transform: translateY(-3px) scale(1.03); box-shadow: 0 8px 24px rgba(247,198,24,.4); }
.btn--white   { background: white; color: var(--sky-d); }
.btn--white:hover   { background: var(--sky-l); transform: translateY(-3px); }
.btn--sky     { background: var(--sky); color: white; }
.btn--sky:hover     { background: var(--sky-d); transform: translateY(-3px); }
.btn--lg  { padding: 16px 36px; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; padding: 18px; font-size: 1.05rem; }

/* ═══════════════════════════════════════════ CLOUDS ══ */
.clouds-bg {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.cloud {
  position: absolute;
  background: white;
  border-radius: 50px;
  opacity: .12;
  animation: drift linear infinite;
}
.cloud::before, .cloud::after {
  content: ''; position: absolute; background: white; border-radius: 50%;
}
.cloud-1 { width:200px; height:60px; top:10%; animation-duration:40s; animation-delay:-5s; }
.cloud-1::before { width:80px; height:80px; top:-40px; left:30px; }
.cloud-1::after  { width:60px; height:60px; top:-30px; left:90px; }
.cloud-2 { width:150px; height:45px; top:30%; animation-duration:55s; animation-delay:-20s; }
.cloud-2::before { width:60px; height:60px; top:-30px; left:20px; }
.cloud-3 { width:250px; height:70px; top:60%; animation-duration:45s; animation-delay:-10s; }
.cloud-3::before { width:100px; height:100px; top:-50px; left:40px; }
.cloud-3::after  { width:70px; height:70px; top:-40px; left:120px; }
.cloud-4 { width:180px; height:55px; top:80%; animation-duration:50s; animation-delay:-30s; }
.cloud-4::before { width:70px; height:70px; top:-35px; left:25px; }
@keyframes drift {
  from { transform: translateX(-300px); }
  to   { transform: translateX(calc(100vw + 300px)); }
}

/* ═══════════════════════════════════════════ ANNOUNCEMENT ══ */
.announcement-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
  background: #3d3d3d; color: white;
  text-align: center; padding: 8px 16px;
  font-family: 'Poppins', sans-serif; font-size: .8rem; font-weight: 600;
  letter-spacing: .08em;
}
.announcement-bar__link { color: white; text-decoration: none; }
.announcement-bar__link:hover { opacity: .8; }

/* ═══════════════════════════════════════════ NAV ══ */
.nav {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 1000;
  padding: 10px 0; transition: var(--t); overflow: visible;
}
.nav--scrolled {
  background: rgba(37,150,228,.97); backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(37,150,228,.3); padding: 10px 0;
}
.nav--scrolled .nav__links a { color: rgba(255,255,255,.9); }
.nav--scrolled .nav__links a:hover { color: var(--yellow); }
.nav--scrolled .nav__burger span { background: white; }
.nav__inner { display: flex; align-items: center; gap: 24px; position: relative; }
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo-img { height: 60px; border-radius: 0; }
.nav__logo-fallback {
  display: none; align-items: center; gap: 8px;
  font-family: 'Fredoka One', cursive; font-size: 1.2rem; color: white;
}
.nav--scrolled .nav__logo-fallback { color: white; }
.logo-halo { font-size: 1.8rem; }
.nav__links { display: flex; list-style: none; gap: 28px; position: absolute; left: 50%; transform: translateX(-50%); overflow: visible; }
.nav__links a { color: #3d3d3d; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 15px; transition: color var(--t); }
.nav__links a:hover { color: var(--yellow); }
.nav__dropdown { position: relative; }
.nav__dropdown-menu {
  display: none;
  position: fixed;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  list-style: none;
  padding: 8px 0;
  min-width: 200px;
  z-index: 9999;
}
.nav__dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #3d3d3d !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  white-space: nowrap;
}
.nav__dropdown-menu li a:hover { background: var(--sky-l); color: var(--sky-d) !important; }
.nav__dropdown-menu.open { display: block; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; margin-left: auto; }
.nav__burger span { display: block; width: 24px; height: 2.5px; background: white; border-radius: 2px; transition: var(--t); }
.nav__icons { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.nav__icon-btn { position: relative; background: none; border: none; cursor: pointer; color: rgba(255,255,255,.9); display: flex; align-items: center; justify-content: center; padding: 4px; transition: color var(--t); }
.nav__icon-btn:hover { color: var(--yellow); }
.nav--scrolled .nav__icon-btn { color: rgba(255,255,255,.9); }
.nav--scrolled .nav__icon-btn:hover { color: var(--yellow); }
.nav__cart-badge { position: absolute; top: -6px; right: -8px; background: var(--dark); color: white; font-size: .65rem; font-weight: 800; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.nav--scrolled .nav__cart-badge { background: var(--dark); }

/* ═══════════════════════════════════════════ HERO ══ */
.hero {
  position: relative; min-height: 600px; max-height: 660px;
  background: linear-gradient(160deg, #2596e4 0%, #3aaee8 40%, #6dc8f0 100%);
  display: flex; align-items: center; overflow: visible; padding-top: 116px; clip-path: none;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  padding: 20px 40px 80px 20px;
}
.hero__tag {
  display: inline-block; background: rgba(255,255,255,.25);
  backdrop-filter: blur(8px); border-radius: 50px;
  padding: 8px 20px; font-size: .82rem; font-weight: 800;
  color: var(--dark); letter-spacing: .04em; margin-bottom: 20px;
}
.hero__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #3d3d3d; line-height: 1.0; margin-bottom: 20px;
}
.hero__title em { color: white; font-style: normal; }
.hero__sub { font-size: 28px; color: rgba(26,26,46,.8); margin-bottom: 28px; line-height: 1.7; }
.hero__badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.badge {
  background: rgba(255,255,255,.35); backdrop-filter: blur(8px);
  border-radius: 50px; padding: 6px 16px; font-size: .82rem; font-weight: 700;
  color: var(--dark); border: 1px solid rgba(255,255,255,.5);
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__mascot { position: absolute; bottom: 0; right: -40px; display: flex; align-items: flex-end; overflow: visible; }
.mascot-circle {
  width: 380px; height: 380px; border-radius: 50%;
  background: rgba(255,255,255,.2); border: 4px solid rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  animation: float 4s ease-in-out infinite; box-shadow: 0 20px 60px rgba(0,0,0,.1);
}
.mascot-img { width: 100%; height: 100%; object-fit: cover; }
.mascot-emoji { font-size: 6rem; text-align: center; }
.hero-dog-img { height: 100%; max-height: 520px; width: auto; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(0,0,0,.2)); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
.mascot-float {
  position: absolute; font-size: 2rem;
  animation: floatBubble 3s ease-in-out infinite;
}
.mascot-float-1 { top: 10%; right: 5%; animation-delay: 0s; }
.mascot-float-2 { bottom: 20%; left: 5%; animation-delay: 1s; }
.mascot-float-3 { top: 40%; right: -5%; animation-delay: 2s; }
@keyframes floatBubble { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-12px) rotate(10deg); } }
.hero__paws { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.hp { position: absolute; width: 7rem; height: 7rem; object-fit: contain; mix-blend-mode: multiply; animation: floatBubble 3s ease-in-out infinite; opacity: 0.85; }
.hp-1  { top: 6%;  left: 2%;   animation-delay: 0s; }
.hp-2  { top: 14%; left: 18%;  animation-delay: 0.4s; }
.hp-3  { top: 4%;  left: 35%;  animation-delay: 0.8s; }
.hp-4  { top: 16%; left: 52%;  animation-delay: 1.2s; }
.hp-5  { top: 6%;  left: 68%;  animation-delay: 1.6s; }
.hp-6  { top: 14%; left: 85%;  animation-delay: 2s; }
.hp-7  { top: 38%; left: 5%;   animation-delay: 0.3s; }
.hp-8  { top: 45%; left: 22%;  animation-delay: 0.7s; }
.hp-9  { top: 36%; left: 40%;  animation-delay: 1.1s; }
.hp-10 { top: 48%; left: 58%;  animation-delay: 1.5s; }
.hp-11 { top: 38%; left: 75%;  animation-delay: 1.9s; }
.hp-12 { top: 68%; left: 8%;   animation-delay: 0.5s; }
.hp-13 { top: 72%; left: 28%;  animation-delay: 0.9s; }
.hp-14 { top: 65%; left: 48%;  animation-delay: 1.3s; }
.hp-15 { top: 74%; left: 70%;  animation-delay: 1.7s; }
.hero__wave { position: absolute; bottom: -2px; left: 0; right: 0; z-index: 2; }
.hero__wave svg { display: block; width: 100%; height: 60px; }

/* ═══════════════════════════════════════════ MODAL ══ */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.5); align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff; border-radius: 24px; padding: 48px 40px;
  max-width: 700px; width: 90%; max-height: 85vh; overflow-y: auto;
  position: relative; box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.modal-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; font-size: 1.4rem; cursor: pointer; color: #999;
}
.modal-close:hover { color: #333; }
.modal-title { font-family: 'Poppins', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--dark); margin-bottom: 40px; text-align: center; }
.tl { position: relative; padding: 0 20px; }
.tl__line { position: absolute; left: 50%; transform: translateX(-50%); top: 0; bottom: 0; width: 3px; background: linear-gradient(to bottom, var(--sky), var(--sky-l)); border-radius: 2px; }
.tl__item { display: flex; margin-bottom: 40px; position: relative; }
.tl__item:not(.tl__item--right) { justify-content: flex-start; padding-right: calc(50% + 24px); }
.tl__item--right { justify-content: flex-end; padding-left: calc(50% + 24px); }
.tl__dot { position: absolute; left: 50%; transform: translateX(-50%); top: 16px; width: 16px; height: 16px; border-radius: 50%; background: var(--sky); border: 3px solid #fff; box-shadow: 0 0 0 3px var(--sky); z-index: 1; }
.tl__card { background: #f8fbff; border-radius: 14px; padding: 20px 22px; border: 1px solid #e0eef8; width: 100%; }
.tl__year { display: inline-block; background: var(--sky); color: #fff; font-size: .72rem; font-weight: 800; padding: 2px 12px; border-radius: 20px; margin-bottom: 8px; }
.tl__card h3 { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.tl__card p { font-size: .88rem; color: #666; line-height: 1.6; margin: 0; }

/* ═══════════════════════════════════════════ TIMELINE ══ */
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute; left: 50%; transform: translateX(-50%);
  top: 0; bottom: 0; width: 3px; background: linear-gradient(to bottom, var(--sky), var(--sky-l));
  border-radius: 2px;
}
.timeline__item { display: flex; align-items: center; margin-bottom: 48px; position: relative; }
.timeline__item--left { flex-direction: row-reverse; }
.timeline__item--right { flex-direction: row; }
.timeline__dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--sky); border: 3px solid white;
  box-shadow: 0 0 0 3px var(--sky);
  position: absolute; left: 50%; transform: translateX(-50%);
  z-index: 1; flex-shrink: 0;
}
.timeline__card {
  width: calc(50% - 40px);
  background: white; border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  border: 1px solid #f0f4f8;
}
.timeline__item--left .timeline__card { margin-right: auto; }
.timeline__item--right .timeline__card { margin-left: auto; }
.timeline__year {
  display: inline-block; background: var(--sky); color: white;
  font-size: .75rem; font-weight: 800; padding: 3px 12px;
  border-radius: 20px; margin-bottom: 10px; letter-spacing: .05em;
}
.timeline__card h3 { font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.timeline__card p { font-size: .9rem; color: #666; line-height: 1.6; margin: 0; }

/* ═══════════════════════════════════════════ SECTIONS ══ */
.section { padding: 88px 0; position: relative; }
.section--sky { background: var(--sky-l); }
.section__header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.section__tag {
  display: block; font-size: .78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--sky-d); margin-bottom: 10px;
}
.section__title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--dark); line-height: 1.2; margin-bottom: 12px;
}
.section__sub { color: var(--muted); font-size: .98rem; }

/* ═══════════════════════════════════════════ BENEFITS ══ */
.benefits__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.benefit-card {
  background: white; border-radius: var(--radius-lg); padding: 32px 24px;
  text-align: center; box-shadow: var(--shadow); border: 2px solid transparent;
  transition: var(--t); opacity: 0; transform: translateY(20px);
}
.benefit-card.visible { opacity: 1; transform: none; }
.benefit-card:hover { border-color: var(--sky); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.benefit-card__icon { font-size: 2.8rem; margin-bottom: 16px; display: block; }
.benefit-card h3 { font-size: 1.05rem; font-weight: 900; margin-bottom: 10px; color: var(--dark); }
.benefit-card p { font-size: .87rem; color: var(--muted); line-height: 1.65; }

/* ═══════════════════════════════════════════ ORDER BUILDER ══ */
.order-builder {
  background: white; border-radius: 32px; padding: 48px;
  box-shadow: 0 8px 60px rgba(37,150,228,.2); max-width: 900px; margin: 0 auto;
}
.order-step { margin-bottom: 40px; }
.order-step:last-child { margin-bottom: 0; }
.step-label {
  font-size: 1.05rem; font-weight: 900; color: var(--dark);
  margin-bottom: 18px; display: flex; align-items: center; gap: 10px;
}
.step-num {
  width: 32px; height: 32px; background: var(--sky); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 900; flex-shrink: 0;
}

/* Flavors */
.flavors-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.flavor-card { cursor: pointer; }
.flavor-card input { display: none; }
.flavor-card__inner {
  padding: 20px 16px; border-radius: var(--radius); text-align: center;
  border: 3px solid #eef2f7; transition: var(--t);
  background: white; opacity: 0; transform: translateY(16px);
}
.flavor-card.visible .flavor-card__inner { opacity: 1; transform: none; }
.flavor-card:hover .flavor-card__inner { border-color: var(--sky); transform: translateY(-4px); box-shadow: var(--shadow); }
.flavor-card.selected .flavor-card__inner { border-color: var(--sky); background: var(--sky-l); box-shadow: 0 0 0 4px rgba(37,150,228,.2); }
.flavor-card__emoji { font-size: 2.4rem; margin-bottom: 10px; display: block; }
.flavor-card__name { font-weight: 900; font-size: .95rem; color: var(--dark); margin-bottom: 4px; }
.flavor-card__desc { font-size: .78rem; color: var(--muted); }

/* Sizes */
.sizes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.size-card { cursor: pointer; position: relative; }
.size-card input { display: none; }
.size-card__inner {
  padding: 24px 20px; border-radius: var(--radius); text-align: center;
  border: 3px solid #eef2f7; transition: var(--t); background: white;
  opacity: 0; transform: translateY(16px);
}
.size-card.visible .size-card__inner { opacity: 1; transform: none; }
.size-card:hover .size-card__inner { border-color: var(--yellow); transform: translateY(-4px); }
.size-card.selected .size-card__inner { border-color: var(--yellow); background: #FFFDE7; box-shadow: 0 0 0 4px rgba(247,198,24,.2); }
.size-card--popular .size-card__inner { border-color: var(--yellow); }
.size-card__popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--yellow); color: var(--dark); font-size: .72rem; font-weight: 900;
  padding: 4px 14px; border-radius: 50px; white-space: nowrap; z-index: 1;
}
.size-card__units { font-family: 'Fredoka One', cursive; font-size: 1.3rem; color: var(--dark); margin-bottom: 6px; }
.size-card__price { font-size: 1.8rem; font-weight: 900; color: var(--sky-d); line-height: 1; margin-bottom: 6px; }
.size-card__tag { font-size: .75rem; color: var(--muted); font-weight: 700; }

/* Qty */
.qty-selector { display: flex; align-items: center; gap: 20px; }
.qty-btn {
  width: 48px; height: 48px; border-radius: 50%; background: var(--sky-l);
  border: 2px solid var(--sky); font-size: 1.4rem; font-weight: 900;
  color: var(--sky-d); cursor: pointer; transition: var(--t);
  display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: var(--sky); color: white; transform: scale(1.1); }
.qty-display { font-family: 'Fredoka One', cursive; font-size: 2rem; color: var(--dark); min-width: 40px; text-align: center; }

/* Date */
.date-picker-wrap { display: flex; flex-direction: column; gap: 12px; max-width: 360px; }
.date-input {
  padding: 14px 18px; border: 3px solid #eef2f7; border-radius: var(--radius);
  font-family: 'Nunito', sans-serif; font-size: 1rem; font-weight: 700;
  color: var(--dark); background: white; cursor: pointer; transition: var(--t); outline: none;
}
.date-input:focus { border-color: var(--sky); }
.date-hint { font-size: .85rem; color: var(--muted); font-weight: 700; }
.delivery-banner {
  padding: 14px 18px; border-radius: var(--radius); font-size: .9rem;
  font-weight: 700; color: var(--muted); background: var(--gray);
  border: 2px solid #eef2f7; transition: var(--t);
}
.delivery-banner--free { background: #d1fae5; color: #065f46; border-color: #6ee7b7; }
.delivery-banner--paid { background: #fef9c3; color: #713f12; border-color: #fde68a; }

/* Delivery types */
.delivery-types { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.delivery-card { cursor: pointer; }
.delivery-card input { display: none; }
.delivery-card__inner {
  padding: 20px; border-radius: var(--radius); border: 3px solid #eef2f7;
  display: flex; align-items: center; gap: 16px; transition: var(--t); background: white;
}
.delivery-card:hover .delivery-card__inner { border-color: var(--sky); }
.delivery-card:has(input:checked) .delivery-card__inner { border-color: var(--sky); background: var(--sky-l); }
.delivery-card__icon { font-size: 1.8rem; flex-shrink: 0; }
.delivery-card__inner strong { display: block; font-size: .95rem; color: var(--dark); margin-bottom: 3px; }
.delivery-card__inner span { font-size: .8rem; color: var(--muted); font-weight: 700; }

/* Summary */
.order-summary {
  background: linear-gradient(135deg, var(--sky-l), #fff8dc);
  border-radius: var(--radius-lg); padding: 32px;
  border: 3px solid var(--sky); margin-top: 8px;
}
.order-summary__detail { margin-bottom: 24px; }
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px dashed rgba(37,150,228,.3); }
.summary-row:last-child { border-bottom: none; }
.summary-row span { color: var(--muted); font-weight: 700; font-size: .9rem; }
.summary-row strong { color: var(--dark); font-weight: 900; font-size: .95rem; }
.summary-row--total span { color: var(--dark); font-size: 1rem; }
.summary-row--total strong { color: var(--sky-d); font-size: 1.3rem; font-family: 'Fredoka One', cursive; }
.order-note { text-align: center; font-size: .8rem; color: var(--muted); margin-top: 12px; font-weight: 700; }

/* ═══════════════════════════════════════════ DELIVERY ══ */
.delivery-info { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 48px; }
.delivery-box {
  background: white; border-radius: var(--radius-lg); padding: 32px 28px;
  text-align: center; box-shadow: var(--shadow); border: 2px solid #eef2f7;
  transition: var(--t); opacity: 0; transform: translateY(20px);
}
.delivery-box.visible { opacity: 1; transform: none; }
.delivery-box:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.delivery-box--free { border-color: #6ee7b7; background: linear-gradient(135deg, #d1fae5, #fff); }
.delivery-box__icon { font-size: 2.8rem; margin-bottom: 16px; display: block; }
.delivery-box h3 { font-weight: 900; font-size: 1.05rem; margin-bottom: 12px; color: var(--dark); }
.delivery-box p { font-size: .88rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.delivery-box__tag {
  display: inline-block; padding: 5px 16px; border-radius: 50px;
  font-size: .75rem; font-weight: 900; background: var(--sky-l); color: var(--sky-d);
}
.delivery-box--free .delivery-box__tag { background: #d1fae5; color: #065f46; }

/* Districts */
.districts { background: white; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); }
.districts h3 { font-weight: 900; font-size: 1.1rem; margin-bottom: 20px; color: var(--dark); }
.districts__grid { display: flex; flex-wrap: wrap; gap: 10px; }
.districts__grid span {
  padding: 6px 18px; background: var(--sky-l); border-radius: 50px;
  font-size: .85rem; font-weight: 700; color: var(--sky-d);
  border: 2px solid rgba(37,150,228,.3);
}

/* ═══════════════════════════════════════════ STORES ══ */
.stores-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.store-card {
  background: white; border-radius: var(--radius-lg); padding: 32px 24px;
  text-align: center; box-shadow: var(--shadow); border: 2px solid transparent;
  transition: var(--t); opacity: 0; transform: translateY(20px);
}
.store-card.visible { opacity: 1; transform: none; }
.store-card:hover { border-color: var(--yellow); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.store-card__icon { font-size: 2.4rem; margin-bottom: 12px; display: block; }
.store-card__district {
  font-size: .75rem; font-weight: 900; text-transform: uppercase;
  letter-spacing: .1em; color: var(--sky-d); margin-bottom: 6px;
}
.store-card__name { font-weight: 900; font-size: 1.05rem; color: var(--dark); margin-bottom: 10px; }
.store-card__addr { font-size: .83rem; color: var(--muted); margin-bottom: 20px; line-height: 1.5; }
.store-card__btn {
  display: inline-block; padding: 8px 20px; background: var(--sky-l);
  color: var(--sky-d); border-radius: 50px; font-weight: 900; font-size: .82rem;
  transition: var(--t); border: 2px solid var(--sky);
}
.store-card__btn:hover { background: var(--sky); color: white; }

/* ═══════════════════════════════════════════ FOOTER ══ */
.footer { background: var(--dark); position: relative; }
.footer__wave svg { display: block; width: 100%; height: 50px; }
.footer__inner {
  display: grid; grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 48px; padding: 48px 0 60px;
}
.footer__logo {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.footer__logo-text {
  font-family: 'Fredoka One', cursive; font-size: 1.2rem; color: white; letter-spacing: .04em;
}
.footer__brand p { color: rgba(255,255,255,.5); font-size: .88rem; line-height: 1.7; margin-bottom: 20px; max-width: 260px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 38px; height: 38px; background: rgba(255,255,255,.08);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); transition: var(--t);
}
.footer__social a:hover { background: var(--sky); color: white; }
.footer__links h4 { color: white; font-size: .82rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; }
.footer__links ul { list-style: none; }
.footer__links li { margin-bottom: 10px; color: rgba(255,255,255,.5); font-size: .88rem; }
.footer__links a { color: rgba(255,255,255,.5); transition: color var(--t); }
.footer__links a:hover { color: var(--yellow); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; text-align: center; }
.footer__bottom p { color: rgba(255,255,255,.3); font-size: .8rem; }

/* ═══════════════════════════════════════════ WA FLOAT ══ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 60px; height: 60px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,.5); z-index: 999;
  transition: var(--t); animation: waPulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.12); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50%      { box-shadow: 0 4px 32px rgba(37,211,102,.8), 0 0 0 12px rgba(37,211,102,.1); }
}

/* ═══════════════════════════════════════════ RESPONSIVE ══ */
@media (max-width: 1024px) {
  .benefits__grid  { grid-template-columns: repeat(2,1fr); }
  .stores-grid     { grid-template-columns: repeat(2,1fr); }
  .footer__inner   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .hero__inner     { grid-template-columns: 1fr; text-align: center; }
  .hero__badges    { justify-content: center; }
  .hero__ctas      { justify-content: center; }
  .hero__mascot    { order: -1; }
  .mascot-circle   { width: 260px; height: 260px; }
  .nav__links {
    display: none; position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(255,255,255,.98); flex-direction: column; padding: 20px;
    gap: 0; list-style: none;
  }
  .nav__links.open { display: flex; }
  .nav__links a    { display: block; padding: 14px 0; color: var(--dark); border-bottom: 1px solid #eef2f7; }
  .nav__burger     { display: flex; }
  .nav .btn--yellow { display: none; }
  .flavors-grid    { grid-template-columns: repeat(2,1fr); }
  .sizes-grid      { grid-template-columns: 1fr; }
  .delivery-types  { grid-template-columns: 1fr; }
  .delivery-info   { grid-template-columns: 1fr; }
  .order-builder   { padding: 28px 20px; border-radius: 24px; }
  .benefits__grid  { grid-template-columns: 1fr; }
  .stores-grid     { grid-template-columns: 1fr 1fr; }
  .footer__inner   { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 480px) {
  .stores-grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 2.2rem; }
  .btn--lg { padding: 14px 24px; font-size: .95rem; }
}
