/* ============================================
   BLAWD GOURMET — Design tokens & base styles
   ============================================ */
:root {
  --green-950: #10241b;
  --green-900: #1a3a2e;
  --green-800: #234c39;
  --green-700: #2c5c46;
  --orange-600: #e8622c;
  --orange-700: #cf4f1e;
  --orange-500: #ec7a44;
  --cream-50: #f5ecd7;
  --cream-100: #efe1c4;
  --cream-200: #e6d3ac;
  --ink: #1a3a2e;
  --ink-soft: #262322;
  --white: #fffdf8;
  --choco: #6b4226;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 14px rgba(27, 61, 46, 0.1);
  --shadow-md: 0 14px 40px rgba(27, 61, 46, 0.18);
  --shadow-lg: 0 24px 60px rgba(20, 20, 15, 0.28);
  --font-head: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.12;
  margin: 0 0 .5em;
  color: var(--green-900);
}
h1 { font-size: clamp(2.1rem, 6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.eyebrow {
  display: inline-block;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .8rem;
  color: var(--orange-600);
  margin-bottom: .7em;
  font-style: italic;
}
.center { text-align: center; }
.lead { font-size: 1.15rem; color: var(--green-800); max-width: 640px; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ============ Scroll reveal ============ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-stagger.is-visible > * { opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .15s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .25s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .35s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .45s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: .98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  min-height: 44px;
}
.btn:hover { transform: translateY(-3px) scale(1.02); }
.btn--primary { background: var(--orange-600); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--orange-700); box-shadow: var(--shadow-md); }
.btn--outline { background: transparent; border-color: var(--green-900); color: var(--green-900); }
.btn--outline:hover { background: var(--green-900); color: var(--white); }
.btn--outline-light { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.7); color: var(--white); backdrop-filter: blur(4px); }
.btn--outline-light:hover { background: rgba(255,255,255,.2); }
.btn--whatsapp { background: #25D366; color: #06301c; }
.btn--whatsapp:hover { background: #1ebc59; }
.btn--sm { padding: 10px 18px; font-size: .88rem; }
.btn--block { width: 100%; justify-content: center; }

/* ============ HEADER (minimal, overlay nav) ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 246, 238, 0.96);
}
.site-header.is-transparent { background: transparent; backdrop-filter: none; }
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.logo { display: flex; text-decoration: none; flex-shrink: 0; }
.logo-img { height: 40px; width: auto; display: block; }
.footer-logo-img { height: 38px; width: auto; display: block; margin: 0 auto; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: var(--white);
  border: none;
  cursor: pointer;
  padding: 12px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  z-index: 210;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--green-900);
  margin: 0 auto;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--green-950);
  z-index: 199;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
}
.nav-overlay.is-open { opacity: 1; visibility: visible; }
.nav-overlay-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 24px;
}
.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.nav-links a {
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  color: var(--cream-100);
  transition: color .2s ease, letter-spacing .2s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--orange-500); letter-spacing: .02em; }
.nav-overlay .lang-switch {
  display: flex;
  border: 2px solid var(--cream-100);
  border-radius: 999px;
  overflow: hidden;
  font-size: .85rem;
  font-weight: 800;
}
.nav-overlay .lang-switch a {
  text-decoration: none;
  padding: 8px 18px;
  color: var(--cream-100);
  font-family: var(--font-body);
  font-size: .85rem;
}
.nav-overlay .lang-switch a.active { background: var(--orange-600); color: var(--white); }

/* ============ HERO (full-bleed photo) ============ */
.hero-full {
  position: relative;
  min-height: 62vh;
  max-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: -73px;
  padding-top: 73px;
}
@media (max-width: 760px) {
  .hero-full { min-height: 52vh; max-height: none; }
}
.hero-full-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-full-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-full-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,41,31,.55) 0%, rgba(18,41,31,.35) 45%, rgba(18,41,31,.85) 100%);
}
.hero-full-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px 60px;
  color: var(--white);
}
.hero-full-content .eyebrow { color: var(--orange-500); }
.hero-full-content h1 { color: var(--white); max-width: 760px; text-shadow: 0 4px 24px rgba(0,0,0,.3); }
.hero-full-content .lead { color: var(--cream-100); max-width: 560px; }
.hero-full-content .hero-actions { justify-content: center; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

/* Interior page hero — photo background, spaced uppercase title */
.page-hero-photo {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: -73px;
  padding-top: 73px;
}
.page-hero-photo-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-photo-bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05); }
.page-hero-photo-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,41,31,.55), rgba(18,41,31,.72));
}
.page-hero-photo-content { position: relative; z-index: 1; color: var(--white); padding: 40px 24px; max-width: 760px; }
.page-hero-photo-content h1 {
  color: var(--white);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 5vw, 3rem);
}
.page-hero-photo-content .eyebrow { color: var(--orange-500); }
.page-hero-photo-content .lead { color: var(--cream-100); margin: 0 auto; }

/* Alfajor icon (fallback CSS placeholder) */
.alfajor-icon {
  --flavor-color: var(--orange-600);
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(180deg,
    var(--choco) 0%, var(--choco) 36%,
    var(--flavor-color) 36%, var(--flavor-color) 64%,
    var(--choco) 64%, var(--choco) 100%);
  border: 5px solid var(--cream-50);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.alfajor-icon--lg { width: 200px; height: 200px; border-width: 8px; }
.alfajor-icon--sm { width: 64px; height: 64px; border-width: 3px; }

/* ============ FLAVOR SHOWCASE (big stacked cards) ============ */
.flavor-showcase { display: flex; flex-direction: column; gap: 32px; margin-top: 40px; }
.flavor-feature {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 48px 40px 0;
  text-align: center;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.flavor-feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.flavor-feature h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); color: var(--orange-600); }
.flavor-feature p { color: #5c6b62; max-width: 520px; margin-left: auto; margin-right: auto; }
.flavor-feature .price-row {
  display: flex; gap: 10px; justify-content: center; align-items: baseline; margin-bottom: 28px;
}
.flavor-feature .price { font-weight: 800; color: var(--green-800); font-size: 1.15rem; }
.flavor-feature .weight { color: #93a39a; font-size: .9rem; }
.flavor-feature-photo {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  transition: transform .6s ease;
}
.flavor-feature:hover .flavor-feature-photo { transform: scale(1.035); }
.flavor-feature-photo-wrap { overflow: hidden; border-radius: var(--radius-md); margin: 0 -1px; }

/* Small grid variant used inside teasers */
.flavor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.flavor-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0 0 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
}
.flavor-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.flavor-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 18px;
  transition: transform .5s ease;
}
.flavor-card:hover .flavor-photo { transform: scale(1.06); }
.flavor-card h3 { margin: 0 12px 6px; }
.flavor-card p { margin: 0 18px 10px; font-size: .92rem; }
.flavor-card .price {
  display: inline-block;
  margin-top: 6px;
  font-weight: 800;
  color: var(--orange-700);
  font-size: 1.05rem;
}
.flavor-card .weight { color: #7a8a80; font-size: .85rem; }

.why-section {
  background-image: url("/assets/img/why-us-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ============ WHY US (line-art icons) ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
  margin-top: 44px;
  text-align: center;
}
.why-icon {
  width: 110px; height: 110px;
  margin: 0 auto 18px;
  color: var(--orange-600);
}
.why-icon svg, .why-icon img { width: 100%; height: 100%; object-fit: contain; }

/* ============ STORY ============ */
.story {
  background: var(--green-900);
  color: var(--cream-50);
  border-radius: var(--radius-lg);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.story h2 { color: var(--white); }
.story p { color: var(--cream-100); }
.story-visual {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.story-photo {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 4px solid rgba(255,255,255,.15);
  box-shadow: var(--shadow-md);
}
.story-photo--offset { margin-top: 34px; }
@media (max-width: 760px) {
  .story { grid-template-columns: 1fr; padding: 40px 26px; text-align: center; }
  .story-visual { order: -1; }
}

/* ============ TESTIMONIAL CAROUSEL ============ */
.testi-section {
  position: relative;
  padding: 96px 0;
  background-color: var(--orange-600);
  background-image: url("/assets/img/testi-pattern-hq.png");
  background-size: 780px auto;
  background-repeat: repeat;
  overflow: hidden;
}
.testi-section .eyebrow, .testi-section h2 { color: var(--white); }
.testi-carousel { max-width: 680px; margin: 48px auto 0; position: relative; padding: 0 60px; }
@media (max-width: 640px) { .testi-carousel { padding: 0 44px; } }
.testi-track { position: relative; min-height: 260px; }
.testi-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .45s ease, transform .45s ease;
  pointer-events: none;
}
.testi-slide.is-active { opacity: 1; transform: none; pointer-events: auto; position: relative; }
.testi-bubble {
  background: var(--white);
  border-radius: 28px;
  padding: 32px 30px;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.testi-bubble p {
  font-style: italic;
  font-weight: 600;
  color: var(--green-900);
  font-size: 1.15rem;
  margin: 0;
  text-align: center;
}
.testi-bubble::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
  border-width: 16px 14px 0;
  border-style: solid;
  border-color: var(--white) transparent transparent;
}
.testi-plate {
  background: var(--ink-soft);
  border-radius: 20px;
  margin-top: 30px;
  padding: 20px 24px;
  text-align: center;
}
.testi-name { font-weight: 800; color: var(--orange-500); }
.testi-role { font-size: .88rem; color: #cfd6d1; }
.testi-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}
.testi-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.22);
  border: none;
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
  z-index: 2;
}
.testi-arrow[data-dir="-1"] { left: 0; }
.testi-arrow[data-dir="1"] { right: 0; }
.testi-arrow:hover { background: rgba(255,255,255,.4); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.45); border: none; cursor: pointer; padding: 0; }
.testi-dot.is-active { background: var(--white); width: 22px; border-radius: 999px; transition: width .25s ease; }

/* ============ CTA BAND ============ */
.cta-band {
  background: var(--green-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: var(--white); margin-bottom: .2em; }
.cta-band .btn--primary:hover { background: var(--orange-700); }

/* ============ WHERE TO BUY teaser + page ============ */
.pos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 36px;
}
.pos-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--orange-600);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pos-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pos-card h3 { margin-bottom: 4px; font-size: 1.15rem; }
.pos-card .pos-meta { font-size: .88rem; color: #6a7a70; margin-bottom: 10px; }
.pos-card a.maps-link { font-weight: 700; color: var(--green-800); text-decoration: underline; font-size: .9rem; }
.pos-card .pos-dist { display: inline-block; margin-top: 10px; font-weight: 800; color: var(--orange-700); font-size: .85rem; }

.locator {
  background: var(--green-900);
  color: var(--cream-50);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 40px;
}
.locator h2 { color: var(--white); }
#locator-result {
  margin-top: 16px;
  font-weight: 700;
  min-height: 1.4em;
}
#locator-result .closest { color: var(--orange-500); }

#map-canvas {
  width: 100%;
  height: 460px;
  border-radius: var(--radius-md);
  margin-top: 40px;
  box-shadow: var(--shadow-md);
  z-index: 1;
}
.map-pin-icon { display: flex; align-items: center; justify-content: center; }
.map-pin-badge {
  width: 44px; height: 44px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--orange-600);
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
}
.map-pin-badge img { width: 24px; height: 24px; transform: rotate(45deg); border-radius: 50%; object-fit: cover; }
.map-pin-badge--me { background: var(--green-800); }
.leaflet-popup-content-wrapper { border-radius: 14px; }
.map-popup { text-align: center; }
.map-popup strong { display: block; margin-bottom: 4px; color: var(--green-900); }
.map-popup a { color: var(--orange-700); font-weight: 700; font-size: .85rem; }

.map-embed {
  width: 100%;
  border: 0;
  border-radius: var(--radius-md);
  min-height: 320px;
  margin-top: 14px;
}

/* ============ QUIZ ============ */
.quiz-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 44px;
  max-width: 640px;
  margin: 44px auto 0;
}
.quiz-progress {
  height: 6px;
  background: var(--cream-200);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 28px;
}
.quiz-progress-bar {
  height: 100%;
  background: var(--orange-600);
  width: 0%;
  transition: width .35s ease;
}
.quiz-question { font-size: 1.25rem; margin-bottom: 22px; text-align: center; font-weight: 700; color: var(--green-900); }
.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 520px) { .quiz-options { grid-template-columns: 1fr; } }
.quiz-option {
  background: var(--cream-100);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  text-align: left;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  min-height: 44px;
  transition: all .18s ease;
}
.quiz-option:hover { border-color: var(--orange-600); background: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.quiz-result { text-align: center; }
.quiz-result-photo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 22px;
  box-shadow: var(--shadow-md);
  border: 6px solid var(--cream-50);
}
.quiz-restart { margin-top: 22px; }
.quiz-step { display: none; }
.quiz-step.is-active { display: block; animation: quizFadeIn .4s ease; }
@keyframes quizFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ============ GIFT CATALOG (regalos) ============ */
.gift-hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 900px;
  margin: 40px auto 0;
}
.gift-hero-photo { width: 100%; max-height: 360px; object-fit: cover; }
.gift-hero-photo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  max-height: 220px;
  overflow: hidden;
}
.gift-hero-photo-grid img { width: 100%; height: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
@media (min-width: 640px) { .gift-hero-photo-grid { max-height: 280px; } }
.gift-hero-body { padding: 40px; }

.gift-picker { margin-top: 44px; }
.gift-picker-label {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--green-900);
  text-align: center;
  margin-bottom: 6px;
}
.gift-picker-hint { text-align: center; color: #7a8a80; margin-bottom: 24px; font-size: .95rem; }

.gift-qty-pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 48px; }
.gift-qty-pill {
  border: 2px solid var(--cream-200);
  background: var(--white);
  border-radius: 999px;
  padding: 14px 26px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--green-900);
  cursor: pointer;
  min-height: 44px;
  transition: all .2s ease;
}
.gift-qty-pill:hover { border-color: var(--orange-600); transform: translateY(-2px); }
.gift-qty-pill.is-selected { background: var(--orange-600); border-color: var(--orange-600); color: var(--white); box-shadow: var(--shadow-sm); }

.gift-extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
  margin-bottom: 40px;
}
.gift-extra-tile {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  border: 3px solid transparent;
  transition: transform .2s ease, border-color .2s ease;
  background: var(--cream-100);
}
.gift-extra-tile:hover { transform: translateY(-4px); }
.gift-extra-tile.is-selected { border-color: var(--orange-600); }
.gift-extra-tile img { width: 100%; height: 100%; object-fit: cover; }
.gift-extra-tile .gift-extra-icon {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem;
}
.gift-extra-tile-label {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(180deg, transparent, rgba(18,41,31,.85));
  color: var(--white);
  font-weight: 700;
  font-size: .85rem;
  padding: 24px 12px 12px;
  text-align: center;
}
.gift-extra-tile-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  color: var(--orange-600);
  opacity: 0;
  transform: scale(.6);
  transition: all .2s ease;
}
.gift-extra-tile.is-selected .gift-extra-tile-check { opacity: 1; transform: scale(1); }
.gift-hint { text-align: center; font-size: .85rem; color: #93a39a; margin-top: -24px; margin-bottom: 40px; }

.gift-summary-band {
  background: var(--cream-100);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  text-align: center;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 26px;
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-row .icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cream-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.social-row { display: flex; gap: 12px; margin-top: 20px; justify-content: center; }
.social-row a {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid currentColor;
  color: var(--green-900);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: all .2s ease;
}
.social-row a svg { width: 20px; height: 20px; }
.social-row a:hover { background: var(--orange-600); border-color: var(--orange-600); color: var(--white); transform: translateY(-3px); }
.site-footer .social-row a { color: var(--cream-100); }
.site-footer .social-row a:hover { background: var(--orange-600); border-color: var(--orange-600); color: var(--white); }

.faq-item {
  border-bottom: 1px solid var(--cream-200);
  padding: 18px 0;
}
.faq-item summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--orange-600); }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin-top: 10px; color: var(--green-800); }

/* ============ FLOATING WHATSAPP ============ */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
  z-index: 150;
  text-decoration: none;
  animation: waPulse 2.4s infinite;
}
.wa-float svg { width: 30px; height: 30px; fill: var(--white); }
@keyframes waPulse {
  0% { box-shadow: 0 6px 18px rgba(0,0,0,.25), 0 0 0 0 rgba(37,211,102,.55); }
  70% { box-shadow: 0 6px 18px rgba(0,0,0,.25), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 6px 18px rgba(0,0,0,.25), 0 0 0 0 rgba(37,211,102,0); }
}
@media (prefers-reduced-motion: reduce) { .wa-float { animation: none; } }

/* ============ FOOTER (centered, minimal) ============ */
.site-footer {
  background: var(--green-950);
  color: var(--cream-100);
  padding: 64px 0 28px;
  margin-top: 100px;
  text-align: center;
}
.site-footer .footer-tagline {
  max-width: 420px;
  margin: 22px auto 0;
  color: var(--cream-200);
  font-size: .95rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}
.footer-nav a { color: var(--cream-100); text-decoration: none; font-weight: 600; font-size: .92rem; }
.footer-nav a:hover { color: var(--orange-500); }
.footer-meta { margin-top: 28px; color: var(--cream-200); font-size: .88rem; }
.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .82rem;
  color: var(--cream-200);
}
.footer-bottom a { color: var(--orange-500); text-decoration: none; font-weight: 700; }
.footer-bottom a:hover { text-decoration: underline; }

/* ============ Skip link ============ */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green-900);
  color: var(--white);
  padding: 10px 16px;
  z-index: 999;
}
.skip-link:focus { left: 10px; top: 10px; }
