/* ============================================================
   GELATTO — Heladería y Sorbetería en Santa Helena
   Visually rich, animated, mobile-first landing page
   ============================================================ */

/* ---------- IMPORTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800;900&family=Inter:wght@400;500;600&display=swap');

/* ---------- CUSTOM PROPERTIES ---------- */
:root {
  --c-primary:   #FF6B35;
  --c-secondary: #004E89;
  --c-accent:    #FFD166;
  --c-bg:        #FFF8F0;
  --c-surface:   #FFFFFF;
  --c-text:      #1A1A1A;
  --c-muted:     #555049;
  --c-border:    #E8E4DE;
  --c-wa:        #25D366;
  --c-wa-dark:   #1DA851;
  --ff-heading:  'Poppins', system-ui, sans-serif;
  --ff-body:     'Inter', system-ui, sans-serif;
  --radius:      16px;
  --radius-sm:   10px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.06);
  --shadow-md:   0 8px 30px rgba(0,0,0,.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.15);
  --transition:  .3s cubic-bezier(.4,0,.2,1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ---------- ACCESSIBILITY ---------- */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--c-primary); color: #fff; padding: 8px 16px;
  border-radius: var(--radius-sm); z-index: 9999; font-weight: 600;
}
.skip-link:focus { top: 16px; }

/* ---------- CONTAINER ---------- */
.container {
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
}

/* ---------- SECTION ---------- */
.section { padding: 80px 0; position: relative; overflow: hidden; }
.section--menu { background: var(--c-surface); }
.section--about { background: var(--c-bg); }
.section--location { background: var(--c-surface); }

.section__head { text-align: center; margin-bottom: 48px; }
.section__title {
  font-family: var(--ff-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
}
.section__title--left { text-align: left; }
.section__lead {
  font-size: 1.1rem; color: var(--c-muted);
  max-width: 520px; margin-inline: auto;
}
.section__title--left + .about__lead { margin-inline: 0; }
.section__underline {
  display: block; width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
  border-radius: 2px; margin: 16px auto 0;
}
.section__title--left ~ .section__underline,
.about__text .section__underline { margin-inline: 0; }
.section__actions { text-align: center; margin-top: 36px; }

/* ---------- EYEBROW ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--ff-heading);
  font-size: .85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: #C4501A; margin-bottom: 8px;
}

/* ---------- HEADER ---------- */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(255,248,240,.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,.08);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 1200px; margin-inline: auto;
}
.logo { display: flex; align-items: center; gap: 6px; }
.logo__icon { font-size: 1.6rem; }
.logo__text {
  font-family: var(--ff-heading); font-weight: 900;
  font-size: 1.5rem; color: var(--c-text);
  transition: color var(--transition);
}
.header.scrolled .logo__text { color: var(--c-primary); }
.header.scrolled .header__hours,
.header.scrolled .header__phone { color: var(--c-text); }

/* Default: dark text on cream background, darker when scrolled */
.header__nav { display: flex; align-items: center; gap: 20px; }
.header__hours { font-size: .85rem; font-weight: 500; color: var(--c-text); }
.header__phone { font-size: .85rem; font-weight: 600; color: var(--c-text); }
.header__cta {
  display: inline-flex; align-items: center;
  padding: 8px 20px; border-radius: 999px;
  background: rgba(255,255,255,.2); color: #fff;
  backdrop-filter: blur(6px);
  font-weight: 600; font-size: .85rem;
  transition: transform var(--transition), background var(--transition);
}
.header.scrolled .header__cta { background: var(--c-primary); color: #fff; backdrop-filter: none; }
.header__cta:hover { transform: scale(1.05); }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #A83A12, #C4501A, #E85D2C, #A83A12, #C4501A);
  background-size: 400% 400%;
  animation: gradientShift 12s ease infinite;
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero__floats {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.floaty {
  position: absolute; font-size: 2rem; opacity: .25;
  animation: float 6s ease-in-out infinite;
}
.floaty--1 { top: 12%; left: 8%;  animation-delay: 0s; font-size: 2.4rem; }
.floaty--2 { top: 22%; right: 10%; animation-delay: 1.2s; font-size: 1.8rem; }
.floaty--3 { bottom: 25%; left: 15%; animation-delay: 2.4s; font-size: 2rem; }
.floaty--4 { bottom: 18%; right: 12%; animation-delay: 3.6s; font-size: 2.2rem; }
.floaty--5 { top: 40%; left: 3%;   animation-delay: 4.8s; font-size: 1.6rem; }
.floaty--6 { top: 60%; right: 5%;  animation-delay: 0.8s; font-size: 1.4rem; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%      { transform: translateY(-18px) rotate(5deg); }
  66%      { transform: translateY(8px) rotate(-3deg); }
}

.blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .18;
}
.blob--1 { width: 300px; height: 300px; background: var(--c-accent); top: -50px; left: -80px; }
.blob--2 { width: 250px; height: 250px; background: #FF8C42; bottom: -60px; right: -40px; }
.blob--3 { width: 200px; height: 200px; background: #fff; top: 40%; left: 50%; }

.hero__content { position: relative; z-index: 2; padding: 24px; max-width: 700px; }

.hero__badge {
  display: inline-block;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  padding: 8px 20px; border-radius: 999px;
  font-size: .85rem; font-weight: 600; color: #fff;
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--ff-heading);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900; line-height: 1.1;
  color: #fff; margin-bottom: 16px;
  text-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.hero__hl {
  color: #FFD166;
}

.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,.9); margin-bottom: 32px;
  font-weight: 500;
}

.hero__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Scroll indicator */
.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.85); font-size: .75rem; text-shadow: 0 1px 4px rgba(0,0,0,.3); font-weight: 500;
  animation: bounce 2s ease-in-out infinite;
}
.hero__mouse {
  width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.6);
  border-radius: 12px; position: relative;
}
.hero__wheel {
  width: 4px; height: 8px; background: rgba(255,255,255,.8);
  border-radius: 2px; position: absolute; top: 6px; left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.5s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-8px); }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px;
  font-family: var(--ff-heading); font-weight: 700; font-size: .95rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer; border: none;
}
.btn:hover { transform: scale(1.04); }
.btn:active { transform: scale(.97); }

.btn--whatsapp {
  background: var(--c-wa); color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
}
.btn--whatsapp:hover { background: var(--c-wa-dark); box-shadow: 0 6px 24px rgba(37,211,102,.45); }

.btn--primary { background: var(--c-primary); color: #fff; }
.btn--primary:hover { background: #e55a28; }

.btn--ghost {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.6);
}
.btn--ghost:hover { background: rgba(255,255,255,.15); border-color: #fff; }

.btn--ghost-light {
  background: transparent; color: var(--c-primary);
  border: 2px solid var(--c-primary);
}
.btn--ghost-light:hover { background: var(--c-primary); color: #fff; }

.btn--lg { padding: 16px 36px; font-size: 1.05rem; }
.btn--xl { padding: 20px 44px; font-size: 1.15rem; }

.wa-icon { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

/* ---------- FLAVOR CARDS ---------- */
.flavors {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 640px) {
  .flavors { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 960px) {
  .flavors { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}

.flavor-card {
  position: relative; overflow: hidden;
  background: var(--c-surface);
  border: 2px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px 20px 24px;
  text-align: center;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.flavor-card:hover {
  transform: scale(1.05) translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c);
}
.flavor-card:active { transform: scale(.98); }

.flavor-card__blob {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--c);
  margin: 0 auto 16px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px color-mix(in srgb, var(--c) 40%, transparent);
}
.flavor-card:hover .flavor-card__blob {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--c) 50%, transparent);
}
.flavor-card__blob--speckle {
  background: radial-gradient(circle at 30% 30%, var(--c) 60%, var(--c2) 100%);
  background-image:
    radial-gradient(circle at 20% 50%, #3D2613 3px, transparent 3px),
    radial-gradient(circle at 60% 30%, #3D2613 2px, transparent 2px),
    radial-gradient(circle at 75% 70%, #3D2613 4px, transparent 4px),
    radial-gradient(circle at 40% 80%, #3D2613 2px, transparent 2px);
  background-color: var(--c);
}

.flavor-card__name {
  font-family: var(--ff-heading);
  font-size: 1rem; font-weight: 700;
  margin-bottom: 4px;
}
.flavor-card__desc {
  font-size: .82rem; color: var(--c-muted);
}

.seasonal {
  text-align: center; margin-top: 24px;
  font-size: .95rem; font-weight: 600; color: var(--c-primary);
}

/* ---------- ABOUT ---------- */
.about {
  display: grid; grid-template-columns: 1fr;
  gap: 48px; align-items: center;
}
@media (min-width: 640px) {
  .about { grid-template-columns: 1fr 1fr; gap: 40px; }
}

.about__lead {
  font-size: 1.1rem; line-height: 1.7;
  margin-bottom: 28px; color: var(--c-muted);
}
.about__lead strong { color: var(--c-text); }

.about__visual {
  display: flex; justify-content: center; align-items: center;
  position: relative; min-height: 260px;
}

.swirl {
  width: 180px; height: auto;
  animation: swirlBob 4s ease-in-out infinite;
}
@keyframes swirlBob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-12px) rotate(3deg); }
}

.about__deco {
  position: absolute; font-size: 1.8rem;
  animation: float 5s ease-in-out infinite;
}
.about__deco--1 { top: 10%; right: 10%; animation-delay: 0s; }
.about__deco--2 { bottom: 15%; left: 5%; animation-delay: 2s; }

/* ---------- FEATURES ---------- */
.features { display: flex; flex-direction: column; gap: 16px; }
.feature {
  display: flex; align-items: center; gap: 16px;
  padding: 16px; border-radius: var(--radius-sm);
  background: var(--c-bg);
  transition: transform var(--transition);
}
.feature:hover { transform: translateX(4px); }
.feature__icon { font-size: 1.8rem; flex-shrink: 0; }
.feature__name {
  font-family: var(--ff-heading);
  font-size: .95rem; font-weight: 700;
}
.feature__desc { font-size: .85rem; color: var(--c-muted); }

/* ---------- LOCATION ---------- */
.location {
  display: grid; grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) {
  .location { grid-template-columns: 1fr 1fr; }
}

.location__card {
  background: var(--c-bg); border-radius: var(--radius);
  padding: 32px;
}

.info-list { display: flex; flex-direction: column; gap: 24px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item__icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.info-item__label {
  font-family: var(--ff-heading);
  font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
  color: var(--c-primary); margin-bottom: 2px;
}
.info-item__value { font-size: .95rem; line-height: 1.5; }
.info-item__value a {
  color: var(--c-primary); font-weight: 600;
  text-decoration: underline; text-underline-offset: 3px;
}

.location__actions {
  display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap;
}

.location__map {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16/10; background: var(--c-border);
}
.location__map iframe {
  width: 100%; height: 100%; border: 0;
}

/* ---------- CTA FINAL ---------- */
.cta-final {
  position: relative; padding: 100px 0;
  text-align: center; color: #fff; overflow: hidden;
}
.cta-final__bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, var(--c-primary), #FF8C42, var(--c-accent));
  background-size: 300% 300%;
  animation: gradientShift 10s ease infinite;
}
.cta-final__floats {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.cta-final .floaty { color: rgba(255,255,255,.3); }
.cta-final .blob   { background: rgba(255,255,255,.1); }

.cta-final__content { position: relative; z-index: 2; }
.cta-final__title {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900; margin-bottom: 12px;
  text-shadow: 0 2px 16px rgba(0,0,0,.15);
}
.cta-final__sub {
  font-size: 1.15rem; opacity: .9; margin-bottom: 36px;
}
.cta-final__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-final .btn--ghost-light { border-color: rgba(255,255,255,.6); color: #fff; }
.cta-final .btn--ghost-light:hover { background: rgba(255,255,255,.2); border-color: #fff; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--c-secondary); color: rgba(255,255,255,.8);
  padding: 48px 0 0;
}
.footer__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (min-width: 640px) {
  .footer__inner { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer__logo {
  font-family: var(--ff-heading);
  font-size: 1.6rem; font-weight: 900; color: #fff;
  display: block; margin-bottom: 8px;
}
.footer__tag { font-size: .9rem; opacity: .7; }
.footer__head {
  font-family: var(--ff-heading);
  font-size: .85rem; font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: .05em;
  margin-bottom: 12px;
}
.footer__col p { font-size: .9rem; line-height: 1.7; }
.footer__col a {
  color: var(--c-accent); font-weight: 500;
  transition: color var(--transition);
}
.footer__col a:hover { color: #fff; }
.footer__bottom {
  text-align: center; padding: 20px 24px; margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .8rem; opacity: .6;
}

/* ---------- WHATSAPP FLOATING ---------- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 9990;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--c-wa);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: transform var(--transition);
}
.wa-float:hover { transform: scale(1.1); }
.wa-float:active { transform: scale(.95); }
.wa-float__icon { width: 30px; height: 30px; fill: #fff; }

.wa-float__ring {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid var(--c-wa); opacity: 0;
  animation: waPulse 2.5s ease-out infinite;
}
.wa-float__ring--2 { animation-delay: 1.25s; }
@keyframes waPulse {
  0%   { transform: scale(.8); opacity: .6; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
  transition-delay: var(--d, 0s);
}
.reveal.revealed {
  opacity: 1; transform: translateY(0);
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- RESPONSIVE TWEAKS ---------- */
@media (max-width: 639px) {
  .header__hours { display: none; }
  .header__cta { display: none; }
  .hero__scroll { display: none; }
  .section { padding: 56px 0; }
  .flavors { gap: 12px; }
  .flavor-card { padding: 20px 14px 18px; }
  .flavor-card__blob { width: 56px; height: 56px; }
  .location__card { padding: 24px; }
  .cta-final { padding: 72px 0; }
  .footer__inner { gap: 24px; }
}

@media (min-width: 960px) {
  .section { padding: 100px 0; }
}

/* ============================================================
   LEGAL PAGES (legal / privacidad / cookies)
   ============================================================ */
.legal {
  background: var(--c-bg);
  padding: 64px 0 96px;
}
.legal__inner {
  max-width: 820px;
  background: var(--c-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 40px 28px;
  border: 1px solid var(--c-border);
}
@media (min-width: 640px) {
  .legal { padding: 80px 0 100px; }
  .legal__inner { padding: 56px 56px; }
}
.legal__head { text-align: center; margin-bottom: 36px; padding-bottom: 24px; border-bottom: 1px solid var(--c-border); }
.legal__head h1 {
  font-family: var(--ff-heading);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800; line-height: 1.2;
  color: var(--c-text); margin-bottom: 8px;
}
.legal__updated { font-size: .85rem; color: var(--c-muted); }
.legal__intro { font-size: 1.05rem; color: var(--c-muted); margin-bottom: 24px; }
.legal__body h2 {
  font-family: var(--ff-heading);
  font-size: 1.25rem; font-weight: 700;
  color: var(--c-primary);
  margin-top: 32px; margin-bottom: 12px;
  line-height: 1.3;
}
.legal__body h2:first-of-type { margin-top: 0; }
.legal__body p { margin-bottom: 14px; color: var(--c-text); }
.legal__body a { color: var(--c-primary); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.legal__body a:hover { color: #c4501a; }
.legal__body code {
  background: var(--c-bg); padding: 2px 6px;
  border-radius: 4px; font-size: .9em;
  border: 1px solid var(--c-border);
}
.legal__body strong { color: var(--c-text); }
.legal__body em { color: var(--c-muted); font-style: italic; }
.legal__list { margin: 12px 0 16px; padding-left: 4px; }
.legal__list li {
  position: relative; padding-left: 24px; margin-bottom: 8px;
  color: var(--c-text); line-height: 1.6;
}
.legal__list li::before {
  content: "🍦"; position: absolute; left: 0; top: 0;
  font-size: .85rem; opacity: .8;
}
.legal__back { text-align: center; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--c-border); }
.legal__back .btn { display: inline-flex; }

/* Footer: legal links row */
.footer__legal-links { margin-top: 6px; }
.footer__legal-links a {
  color: rgba(255,255,255,.7); font-weight: 500;
  text-decoration: none; transition: color var(--transition);
}
.footer__legal-links a:hover { color: #fff; }
.footer__bottom--single {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  margin-top: 0; padding-top: 20px;
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 9995;
  background: #1A1A1A;
  color: #fff;
  padding: 14px 20px;
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  font-size: .9rem; line-height: 1.5;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__text { max-width: 720px; margin: 0; opacity: .9; }
.cookie-banner__text a { color: var(--c-accent); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner__btn {
  flex-shrink: 0;
  background: var(--c-primary);
  color: #fff;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: .9rem;
  padding: 10px 24px;
  border-radius: 999px;
  border: none; cursor: pointer;
  transition: transform var(--transition), background var(--transition);
}
.cookie-banner__btn:hover { transform: scale(1.05); background: #e55a28; }
.cookie-banner__btn:active { transform: scale(.97); }

/* On mobile, give the floating WhatsApp button room above the banner */
.cookie-banner.is-visible ~ .wa-float { bottom: 90px; }
@media (max-width: 639px) {
  .cookie-banner { flex-direction: column; text-align: center; gap: 10px; padding: 14px 16px; }
  .cookie-banner__text { font-size: .82rem; }
}

/* Respect users who already have the WA float overlapping: nudge it up while banner visible */
body:has(.cookie-banner.is-visible) .wa-float { bottom: 96px; }
