/* =========================================================
   iFody — Mockup C: Moderno Vibrante (MOBILE-FIRST)
   Base = mobile. Media queries (min-width) escalam pra desktop.
   ========================================================= */

:root {
  --bg: #0F0A1A;
  --bg-2: #160F22;
  --surface: #1C1428;
  --surface-2: #251A35;
  --line: #2E2240;
  --line-soft: #221A30;

  --text: #FFFFFF;
  --text-2: #C5B8D8;
  --text-3: #8A7B9F;

  --pink: #FF3D8A;
  --pink-light: #FF8EB8;
  --violet: #8B3CFF;
  --orange: #FF8E53;
  --yellow: #FFB930;
  --blue: #3DC1FF;
  --gold: #FFD485;

  --grad-primary: linear-gradient(135deg, #FF3D8A 0%, #8B3CFF 100%);
  --grad-warm: linear-gradient(135deg, #FF3D8A 0%, #FF8E53 100%);
  --grad-cool: linear-gradient(135deg, #8B3CFF 0%, #3DC1FF 100%);
  --grad-gold: linear-gradient(135deg, #FFD485 0%, #FF8E53 100%);

  --r-sm: 10px;
  --r: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --font: 'Outfit', system-ui, sans-serif;
  --hand: 'Caveat', cursive;

  --ease: cubic-bezier(.22, .61, .36, 1);

  --header-h: 56px;
  --bottombar-h: 64px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-tap-highlight-color: transparent; }
html, body { background: var(--bg); color: var(--text); min-height: 100%; }
body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  /* compensa o bottom bar no mobile */
  padding-bottom: calc(var(--bottombar-h) + var(--safe-bottom));
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   TYPOGRAPHY HELPERS
   ============================================ */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 61, 138, .12);
  border: 1px solid rgba(255, 61, 138, .25);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pink-light);
}
.kicker--gold { background: rgba(255, 212, 133, .12); border-color: rgba(255, 212, 133, .3); color: var(--gold); }
.kicker--pink { background: rgba(255, 61, 138, .15); border-color: rgba(255, 61, 138, .3); color: var(--pink-light); }

.title {
  font-weight: 700;
  font-size: clamp(28px, 7vw, 56px);
  line-height: 1.05;
  letter-spacing: -.025em;
  margin-top: 12px;
}
.title em {
  font-style: normal;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
  min-height: 48px;
  -webkit-touch-callout: none;
  user-select: none;
}
.btn--lg { padding: 16px 26px; min-height: 52px; }
.btn--xl { padding: 18px 28px; min-height: 56px; font-size: 15px; }
.btn--primary {
  background: var(--grad-primary);
  color: white;
  box-shadow: 0 6px 20px rgba(255, 61, 138, .35);
}
.btn--primary:active { transform: scale(.98); }
@media (hover:hover) {
  .btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255, 61, 138, .5); }
}
.btn--outline {
  background: transparent;
  border: 1.5px solid var(--line);
  color: var(--text);
}
.btn--outline:active { background: rgba(255, 255, 255, .04); }
@media (hover:hover) {
  .btn--outline:hover { border-color: var(--pink); color: var(--pink-light); }
}
.btn--gold {
  background: var(--grad-gold);
  color: #2A1A0A;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(255, 212, 133, .3);
}
.btn--dark { background: #0F0A1A; color: white; font-weight: 600; }
.btn--text { background: transparent; color: var(--text-3); padding: 12px; }

.text-link { font-size: 14px; font-weight: 600; color: var(--pink-light); }

/* ============================================
   AGE GATE
   ============================================ */
.age-gate {
  position: fixed; inset: 0;
  background: rgba(15, 10, 26, .92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  transition: opacity .5s var(--ease);
}
.age-gate.is-hidden { opacity: 0; pointer-events: none; }
.age-gate__box {
  max-width: 420px;
  width: 100%;
  background: var(--bg-2);
  padding: 56px 28px 36px;
  border-radius: var(--r-xl);
  text-align: center;
  border: 1px solid var(--line);
  position: relative;
}
.age-gate__sticker {
  position: absolute;
  top: -22px; left: 50%;
  transform: translateX(-50%) rotate(-8deg);
  background: var(--grad-primary);
  color: white;
  font-weight: 800;
  font-size: 20px;
  padding: 10px 20px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(255, 61, 138, .4);
}
.age-gate__box h1 {
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 12px 0 12px;
}
.age-gate__box h1 em {
  font-style: normal;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.age-gate__box p { color: var(--text-2); margin-bottom: 24px; font-size: 14px; }
.age-gate__btns { display: flex; flex-direction: column; gap: 8px; }
.age-gate__btns .btn { width: 100%; }

/* ============================================
   TOP BAR (mobile: 1 mensagem, desktop: 3)
   ============================================ */
.topbar {
  background: var(--bg-2);
  font-size: 12px;
  color: var(--text-2);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.topbar__row {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 8px 16px;
  white-space: nowrap;
  position: relative;
  min-height: 1.7em;
}
.topbar__item { display: inline-flex; align-items: center; gap: 6px; }

/* Mobile: empilha os 3 items absolutamente no mesmo lugar e rotaciona via
   fade. Ciclo de 12s = 4s por item (sem JS). `inset: 0` + flex centra o item
   verticalmente — sem isso o item fica colado no topo da row e o
   `overflow: hidden` do .topbar corta descenders/acentos. */
@media (max-width: 719px) {
  .topbar__row { min-height: 36px; }
  .topbar__item {
    position: absolute;
    inset: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: ifody-topbar-cycle 12s infinite;
  }
  .topbar__item:nth-child(1) { animation-delay: 0s; }
  .topbar__item:nth-child(2) { animation-delay: 4s; }
  .topbar__item:nth-child(3) { animation-delay: 8s; }
}
@keyframes ifody-topbar-cycle {
  0%, 2%   { opacity: 0; transform: translateY(3px); }
  6%, 30%  { opacity: 1; transform: translateY(0); }
  33%, 100% { opacity: 0; transform: translateY(-3px); }
}

@media (min-width: 720px) {
  .topbar__row { gap: 32px; padding: 10px 0; flex-wrap: wrap; min-height: 0; }
}
.ball {
  width: 7px; height: 7px;
  background: #4CD964;
  border-radius: 50%;
  box-shadow: 0 0 10px #4CD964;
  animation: pulse 2s infinite;
}
.topbar__item--closed .ball {
  background: #FF4D5C;
  box-shadow: 0 0 10px #FF4D5C;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }

/* ============================================
   HEADER (mobile-first, search vira drawer)
   ============================================ */
.header {
  background: rgba(15, 10, 26, .92);
  border-bottom: 1px solid var(--line);
}
.header__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  min-height: var(--header-h);
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -.02em;
  flex-shrink: 0;
  justify-self: center; /* mobile: logo no centro entre hamburger e actions */
}
.header__actions { justify-self: end; }
@media (min-width: 720px) {
  /* Desktop: volta a layout flex linear, logo alinhada à esquerda, actions à direita. */
  .header__row { display: flex; }
  .logo { justify-self: auto; }
  .header__actions { margin-left: auto; }
}
.logo__icon { display: inline-flex; }
.logo__icon svg { width: 28px; height: 28px; }
.logo img.logo__full {
  display: block;
  height: 32px;
  width: auto;
  max-width: 160px;
}
.logo__text--hide { display: none; }
@media (min-width: 720px) {
  .logo img.logo__full { height: 38px; max-width: 180px; }
}

/* Search: escondido no mobile (botao "Buscar" no bottom bar resolve), full desktop */
.search {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-3);
  min-height: 42px;
  transition: border-color .25s var(--ease);
  flex: 1;
}
.search svg { flex-shrink: 0; }
.search input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  outline: none;
}
.search input::placeholder { color: var(--text-3); }
.search:focus-within { border-color: var(--pink); }
.search__kbd { display: none; }

@media (min-width: 720px) {
  .header__row { gap: 16px; padding: 14px 0; }
  .logo { font-size: 22px; }
  .logo__icon svg { width: 32px; height: 32px; }
}
@media (min-width: 980px) {
  .search {
    display: flex;
    padding: 12px 18px;
    max-width: 540px;
    margin: 0 16px;
  }
  .search__kbd {
    display: inline-block;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 6px;
    background: var(--line);
    color: var(--text-2);
    letter-spacing: .04em;
  }
}

/* Header actions */
.header__actions { display: flex; align-items: center; gap: 2px; }
.header__link {
  display: none; /* esconde no mobile, vira bottom bar */
}
@media (min-width: 980px) {
  .header__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 12px;
    color: var(--text-2);
    font-size: 13px;
    font-weight: 500;
    transition: background .25s var(--ease), color .25s var(--ease);
  }
  .header__link:hover { background: var(--surface); color: var(--text); }
}

/* Badge de contador nos header__link (ex: favoritos). Cart usa o
   .cart__count amarelo; aqui mantemos rosa pra diferenciar e dar destaque
   sem competir com a sacola. */
.header__link-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  margin-left: 2px;
  border-radius: 999px;
  background: var(--grad-primary);
  color: white;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(255, 61, 138, .35);
}

/* Botão ícone (busca) no header mobile — desktop tem a barra inline, esse some. */
.header__icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--text-2);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.header__icon-btn:hover { background: var(--surface); color: var(--text); }
@media (min-width: 980px) {
  .header__icon-btn--search { display: none; }
}

/* Cart button: compact mobile (só ícone), expandido desktop */
.cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: white;
  font-weight: 600;
  font-size: 13px;
  position: relative;
  box-shadow: 0 4px 14px rgba(255, 61, 138, .35);
  justify-content: center;
}
.cart__count {
  position: absolute;
  top: -4px; left: -4px;
  width: 20px; height: 20px;
  background: var(--yellow);
  color: #2A1A0A;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 800;
  border: 2px solid var(--bg);
}
.cart__price { display: none; }
@media (min-width: 980px) {
  .cart {
    width: auto; height: auto;
    padding: 10px 18px 10px 14px;
    border-radius: 999px;
    gap: 10px;
  }
  .cart__price { display: inline-block; }
}

/* Subnav: scroll horizontal no mobile, dropdown de subcategorias visivel no desktop */
.subnav {
  display: flex;
  gap: 4px;
  padding: 4px 16px 12px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.subnav::-webkit-scrollbar { display: none; }
@media (min-width: 720px) {
  .subnav { padding: 4px 0 14px; }
}
@media (min-width: 980px) {
  /* Desktop: overflow visivel pra o dropdown poder aparecer fora do subnav */
  .subnav { overflow: visible; }
  .header { overflow: visible; }
}
.subnav__item {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  flex-shrink: 0;
}
.subnav__item--active {
  background: var(--text);
  color: var(--bg);
  font-weight: 600;
}
.subnav__item--sale { color: var(--pink-light); }
.dot-gold {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}

/* ============================================
   HERO · Slider full-bleed
   Mobile: 1/1 (500×500), Desktop: 3/1 (1800×600)
   ============================================ */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 1 / 1;
}
@media (min-width: 720px) {
  .hero-slider { aspect-ratio: 3 / 1; }
}
.hero-slider__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}
.hero-slider__track.no-anim { transition: none; }
.hero-slider__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  text-decoration: none;
}
.hero-slider__slide picture,
.hero-slider__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Arrows (desktop only) */
.hero-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(15, 10, 26, .55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.hero-slider__nav:hover { background: rgba(15, 10, 26, .8); }
.hero-slider__nav:active { transform: translateY(-50%) scale(.95); }
.hero-slider__nav--prev { left: 16px; }
.hero-slider__nav--next { right: 16px; }
@media (min-width: 980px) {
  .hero-slider__nav { display: inline-flex; }
}

/* Dots */
.hero-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 10, 26, .45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
@media (min-width: 720px) {
  .hero-slider__dots { bottom: 22px; gap: 10px; padding: 8px 14px; }
}
.hero-slider__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, .4);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}
.hero-slider__dot.is-active {
  width: 22px;
  border-radius: 999px;
  background: #fff;
}

/* Single-slide: esconde controles */
.hero-slider--single .hero-slider__nav,
.hero-slider--single .hero-slider__dots { display: none; }

@media (prefers-reduced-motion: reduce) {
  .hero-slider__track { transition: none; }
}

/* ============================================
   FEATURES (mobile: 2 cols compact, desktop: 4)
   ============================================ */
.features {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.features__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 720px) {
  .features { padding: 36px 0; }
  .features__row { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}
.feature {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 12px;
  row-gap: 2px;
  padding: 8px;
  min-width: 0;
}
.feature__ico {
  grid-row: 1 / span 2;
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.feature strong {
  display: block;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.2;
  min-width: 0;
  overflow-wrap: break-word;
}
.feature span {
  font-size: 11px;
  color: var(--text-3);
  display: block;
  min-width: 0;
  overflow-wrap: break-word;
  line-height: 1.4;
}
@media (min-width: 720px) {
  .feature__ico { width: 52px; height: 52px; }
  .feature strong { font-size: 14px; }
  .feature span { font-size: 12px; }
}

/* ============================================
   SECTION HEADS
   ============================================ */
.head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.head .text-link,
.head .countdown { align-self: flex-start; }
.head .filters { align-self: stretch; min-width: 0; }
@media (min-width: 880px) {
  .head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 40px;
  }
  .head .filters { align-self: auto; }
}

/* ============================================
   CATEGORIAS DA HOME (slider de pills redondas, estilo iFood)
   ============================================ */
.cats-sec { padding: 40px 0 16px; }
@media (min-width: 720px) { .cats-sec { padding: 64px 0 32px; } }

.cats-slider {
  position: relative;
}

.cats-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding: 4px 0 12px;
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
}
.cats-track::-webkit-scrollbar { display: none; }
@media (min-width: 720px) {
  .cats-track {
    gap: 24px;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

.cat-pill {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 88px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  scroll-snap-align: start;
  transition: transform .25s var(--ease);
}
@media (min-width: 720px) {
  .cat-pill { width: 104px; gap: 10px; }
}
.cat-pill:active { transform: scale(.96); }

.cat-pill__img-wrap {
  position: relative;
  width: 84px;
  height: 84px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 4px 14px rgba(15, 10, 26, .06);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
@media (min-width: 720px) {
  .cat-pill__img-wrap { width: 100px; height: 100px; }
}
@media (hover:hover) {
  .cat-pill:hover .cat-pill__img-wrap {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(255, 61, 138, .18);
    border-color: var(--pink-light, #FF3D8A);
  }
}

.cat-pill__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cat-pill__img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 32px;
  color: #fff;
  background: linear-gradient(135deg, #FF3D8A, #8B3CFF);
  text-transform: uppercase;
}

.cat-pill__name {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink, #2A1A35);
  letter-spacing: -.005em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 720px) {
  .cat-pill__name { font-size: 13px; }
}

.cats-arrow {
  position: absolute;
  top: calc(50% - 26px); /* centro vertical do círculo (84/2 + 4 padding) — ajuste fino abaixo */
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink, #2A1A35);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(15, 10, 26, .1);
  transition: transform .2s var(--ease), background .2s var(--ease);
  z-index: 2;
}
.cats-arrow:hover { background: var(--pink-light, #FF3D8A); color: #fff; border-color: var(--pink-light, #FF3D8A); }
.cats-arrow:active { transform: scale(.94); }
.cats-arrow[hidden] { display: none; }
.cats-arrow--prev { left: -12px; }
.cats-arrow--next { right: -12px; }
@media (min-width: 720px) {
  .cats-arrow { display: flex; top: calc(50% - 18px); width: 40px; height: 40px; }
  .cats-arrow--prev { left: -20px; }
  .cats-arrow--next { right: -20px; }
}
/* Mobile: setas escondidas — swipe é mais natural */
@media (max-width: 719px) {
  .cats-arrow { display: none !important; }
}

/* ============================================
   BANNERS DUPLOS
   ============================================ */
.banners { padding: 24px 0; }
.banners__grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 880px) {
  .banners { padding: 40px 0; }
  .banners__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
}
.banner {
  position: relative;
  padding: 28px;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: center;
  isolation: isolate;
}
@media (min-width: 720px) {
  .banner { padding: 44px; min-height: 260px; }
}
.banner--gold {
  background: linear-gradient(135deg, #FFD485 0%, #FF8E53 100%);
  color: #2A1A0A;
}
.banner--pink {
  background: linear-gradient(135deg, #FF3D8A 0%, #8B3CFF 100%);
  color: white;
}
.banner__bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  opacity: .85;
  z-index: 0;
}
.banner--pink .banner__bg-img { mix-blend-mode: luminosity; opacity: .55; }
.banner__tag {
  display: inline-block;
  background: rgba(0, 0, 0, .15);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.banner h3 {
  font-weight: 800;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -.025em;
  margin: 10px 0 6px;
}
@media (min-width: 720px) { .banner h3 { font-size: 32px; } }
.banner p { font-size: 13px; opacity: .9; margin-bottom: 18px; max-width: 280px; }
@media (min-width: 720px) { .banner p { font-size: 14px; } }
.banner__body { max-width: 80%; position: relative; z-index: 1; }
.banner__shape { position: absolute; inset: 0; z-index: 0; }
.bshape { position: absolute; border-radius: 50%; }
.bshape--gold {
  right: -40px; top: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle at 30% 30%, #FFFFFF 0%, #FFD485 60%);
  opacity: .35;
}
.bshape--pink {
  right: -60px; bottom: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle at 30% 30%, #FFFFFF 0%, transparent 60%);
  opacity: .25;
}

/* ============================================
   PRODUCTS GRID (mobile: 2 cols firm, desktop: 4)
   ============================================ */
.prods { padding: 24px 0; }
@media (min-width: 720px) { .prods { padding: 56px 0; } }

.filters {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  margin: 0 -20px;
  padding: 0 20px;
}
.filters::-webkit-scrollbar { display: none; }
@media (min-width: 720px) {
  .filters { flex-wrap: wrap; overflow: visible; margin: 0; padding: 0; }
}
.pill {
  padding: 9px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--text-2);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.pill--on { background: var(--text); color: var(--bg); border-color: var(--text); }

.prods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 720px) {
  .prods-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}
@media (min-width: 980px) {
  .prods-grid { grid-template-columns: repeat(4, 1fr); gap: 22px; }
}

/* Densidade compacta: +1 coluna em cada breakpoint (cap em 5) */
.prods-grid--compact { grid-template-columns: repeat(3, 1fr); gap: 8px; }
@media (min-width: 720px) {
  .prods-grid--compact { grid-template-columns: repeat(4, 1fr); gap: 12px; }
}
@media (min-width: 980px) {
  .prods-grid--compact { grid-template-columns: repeat(5, 1fr); gap: 16px; }
}
.prods-grid--compact .pcard__body { padding: 10px 10px 12px; }
.prods-grid--compact .pcard__name { font-size: 12px; }
.prods-grid--compact .pcard__price { font-size: 13px; }
.prods-grid--compact .pcard__rating,
.prods-grid--compact .pcard__variations { display: none; }

.pcard {
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  position: relative;
  /* Container query: o foot se adapta ao tamanho REAL do card,
     não ao viewport. Cobre sidebar de wishlist, grid 5-col, etc. */
  container-type: inline-size;
  container-name: pcard;
}
.pcard:active { transform: scale(.98); }
@media (hover:hover) {
  .pcard:hover {
    transform: translateY(-4px);
    border-color: var(--pink);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .35);
  }
}
.pcard__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--surface-2);
  overflow: hidden;
}
.pcard__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
@media (hover:hover) {
  .pcard:hover .pcard__img { transform: scale(1.08); }
}
.pcard__badges {
  position: absolute;
  top: 8px; left: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (min-width: 720px) {
  .pcard__badges { top: 12px; left: 12px; gap: 6px; }
}
.badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
}
@media (min-width: 720px) { .badge { font-size: 10px; padding: 6px 10px; } }
.badge--sale { background: var(--pink); color: white; }
.badge--top { background: white; color: #2A1A35; }
.badge--brand { background: var(--grad-gold); color: #2A1A0A; }

.pcard__fav {
  position: absolute;
  top: 8px; right: 8px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(15, 10, 26, .7);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
@media (min-width: 720px) {
  .pcard__fav { top: 12px; right: 12px; width: 36px; height: 36px; }
}

.pcard__body { padding: 12px 14px 14px; }
@media (min-width: 720px) { .pcard__body { padding: 16px 18px 18px; } }
.pcard__cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pink-light);
  margin-bottom: 6px;
}
@media (min-width: 720px) { .pcard__cat { font-size: 10px; margin-bottom: 8px; } }

/* Pill de "Em oferta relâmpago" no pcard — discreto, acima do nome. */
.pcard__flash {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 61, 138, .12), rgba(139, 60, 255, .12));
  color: var(--pink-light, #FF3D8A);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .01em;
  margin-bottom: 8px;
  line-height: 1;
  white-space: nowrap;
  max-width: 100%;
}
.pcard__flash svg { flex: 0 0 auto; }
.pcard__flash-label { text-transform: uppercase; letter-spacing: .04em; }
/* Mobile: card é estreito (~150px) — esconde label, mantém só ⚡ + countdown. */
@media (max-width: 719px) {
  .pcard__flash-label { display: none; }
  .pcard__flash-cd { border-left: 0; padding-left: 0; margin-left: 0; }
}
.pcard__flash-cd {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  font-variant-numeric: tabular-nums;
  color: var(--text);
  font-weight: 700;
  padding-left: 6px;
  margin-left: 2px;
  border-left: 1px solid rgba(255, 61, 138, .45);
}
.pcard__flash-cd strong { font-weight: 700; min-width: 1.4em; text-align: center; }
@media (min-width: 720px) {
  .pcard__flash { font-size: 11px; padding: 4px 10px; gap: 6px; margin-bottom: 10px; }
}

.pcard__name {
  font-weight: 600;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: -.005em;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}
@media (min-width: 720px) {
  .pcard__name { font-size: 13px; margin-bottom: 14px; }
}
.pcard__foot {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.pcard__foot > div { min-width: 0; }
@media (min-width: 720px) {
  .pcard__foot {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
  }
}
/* Container query: se o card real for estreito (sidebar/wishlist/5-col),
   força layout mobile-like (preço em cima, "Adicionar" full-width embaixo).
   Threshold 260px cobre: wishlist com sidebar 240px, modo compact 5-col,
   qualquer reuso em coluna estreita. Vence o media query do desktop. */
@container pcard (max-width: 260px) {
  .pcard__foot {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .pcard__add {
    width: 100% !important;
    padding: 9px 14px !important;
  }
  /* Preço-alt e PIX tag se ajustam pra não vazar */
  .pcard__price-alt { font-size: 10px; }
}
.pcard__price {
  font-weight: 800;
  font-size: 15px;
  color: var(--text);
  letter-spacing: -.01em;
  line-height: 1.1;
  white-space: nowrap;
}
@media (min-width: 720px) { .pcard__price { font-size: 17px; } }
.pcard__price-old {
  display: block;
  font-size: 11px;
  text-decoration: line-through;
  color: var(--text-3);
  font-weight: 500;
}
.pcard__add {
  background: var(--grad-primary);
  color: white;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(255, 61, 138, .35);
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 720px) {
  .pcard__add { width: auto; padding: 8px 14px; font-size: 12px; }
}
.pcard__add-text { display: inline; }

/* Galeria mini (hover desktop · tap mobile) */
.pcard__gallery {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  padding: 4px 6px;
  border-radius: 999px;
  background: rgba(15, 10, 26, .55);
  backdrop-filter: blur(6px);
  z-index: 2;
  opacity: 0;
  transition: opacity .25s var(--ease);
  pointer-events: none;
}
.pcard--has-gallery:hover .pcard__gallery,
.pcard__gallery:focus-within,
.pcard__media:active .pcard__gallery {
  opacity: 1;
  pointer-events: auto;
}
/* Mobile: sempre visível */
@media (hover: none) {
  .pcard__gallery {
    opacity: 1;
    pointer-events: auto;
    bottom: 6px;
    padding: 3px 5px;
    gap: 5px;
  }
}
.pcard__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  transition: background .2s var(--ease), transform .2s var(--ease);
  flex-shrink: 0;
  /* Tap target invisível de ~24px ao redor pra mobile */
  position: relative;
}
.pcard__dot::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
}
.pcard__dot:hover { background: rgba(255,255,255,.8); }
.pcard__dot--on {
  background: white;
  transform: scale(1.3);
  box-shadow: 0 0 0 1.5px rgba(255,61,138,.55);
}
/* Counter "1/4" mobile pra deixar claro que tem mais imagens */
.pcard__count {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(15, 10, 26, .65);
  backdrop-filter: blur(6px);
  color: white;
  display: none;
}
@media (hover: none) {
  .pcard--has-gallery .pcard__count { display: inline-flex; }
}
/* Setas prev/next (visíveis on hover desktop, sempre visíveis no mobile) */
.pcard__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 10, 26, .7);
  color: white;
  backdrop-filter: blur(6px);
  cursor: pointer;
  z-index: 2;
  opacity: 0;
  transition: opacity .25s var(--ease), background .2s var(--ease), transform .2s var(--ease);
  pointer-events: none;
}
.pcard__nav--prev { left: 8px; }
.pcard__nav--next { right: 8px; }
.pcard__nav:hover { background: rgba(255, 61, 138, .9); }
.pcard__nav:active { transform: translateY(-50%) scale(.92); }
.pcard--has-gallery:hover .pcard__nav,
.pcard__nav:focus-visible {
  opacity: 1;
  pointer-events: auto;
}
@media (hover: none) {
  .pcard__nav { width: 28px; height: 28px; background: rgba(15, 10, 26, .55); }
  .pcard--has-gallery .pcard__nav { opacity: .9; pointer-events: auto; }
}

/* Imagem principal — transição suave ao trocar src via JS + drag cursor */
.pcard--has-gallery .pcard__img { transition: opacity .25s var(--ease), transform .5s var(--ease); }
.pcard--has-gallery .pcard__img.is-swapping { opacity: .4; }
.pcard--has-gallery .pcard__media { cursor: grab; touch-action: pan-y; }
.pcard--has-gallery .pcard__media.is-dragging { cursor: grabbing; }

/* Selo "Receba hoje" — entrega expressa */
.pcard__express {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: -6px 0 8px;
  padding: 3px 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 196, 140, .18), rgba(0, 196, 140, .10));
  border: 1px solid rgba(0, 196, 140, .35);
  font-size: 10px;
  line-height: 1.4;
  width: fit-content;
  max-width: 100%;
}
.pcard__express svg {
  color: #00C48C;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(0, 196, 140, .5));
  animation: ifody-express-pulse 2s ease-in-out infinite;
}
.pcard__express strong {
  color: #00C48C;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: 9px;
  white-space: nowrap;
}
.pcard__express span {
  color: var(--text-2);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
@keyframes ifody-express-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.15); }
}
/* Esconde em cards muito estreitos (modo compact 5-col) */
@container pcard (max-width: 200px) {
  .pcard__express span { display: none; }
}
.prods-grid--compact .pcard__express { display: none; }

/* Rating no card */
.pcard__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: -4px 0 8px;
  font-size: 11px;
  color: var(--text-2);
  line-height: 1;
}
.pcard__stars {
  --star-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/></svg>");
  display: inline-block;
  position: relative;
  width: 64px;
  height: 12px;
  background: rgba(255, 255, 255, .15);
  -webkit-mask: var(--star-mask) repeat-x;
  -webkit-mask-size: 12px 12px;
  mask: var(--star-mask) repeat-x;
  mask-size: 12px 12px;
  overflow: hidden;
}
.pcard__stars-fill {
  display: block;
  height: 100%;
  background: #FFB930;
}
.pcard__rating-num { font-weight: 700; color: var(--text); }
.pcard__rating-count { color: var(--text-3); }

/* Swatches de variação */
.pcard__variations {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: -2px 0 8px;
}
.pcard__sw {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.18);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.2);
  display: inline-block;
}
.pcard__sw-more {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: .02em;
  margin-left: 2px;
}

/* Pricing — PIX é o preço primário (grande, verde); cartão fica como linha alt */
.pcard__pricing { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.pcard__price--pix {
  color: #00C48C;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pcard__price-tag {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #00C48C;
  padding: 2px 7px;
  background: rgba(0, 196, 140, .14);
  border-radius: 999px;
  white-space: nowrap;
  line-height: 1.4;
}
.pcard__price-alt {
  font-size: 11px;
  color: var(--text-3);
  line-height: 1.2;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.prods__more { text-align: center; margin-top: 28px; }
@media (min-width: 720px) { .prods__more { margin-top: 44px; } }

/* ============================================
   MARCA iFODY
   ============================================ */
.brand {
  padding: 60px 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 212, 133, .08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 61, 138, .08) 0%, transparent 40%),
    var(--bg);
}
@media (min-width: 880px) { .brand { padding: 110px 0; } }

.brand__grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 880px) {
  .brand__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
}
.brand__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 380px;
  margin: 0 auto;
  width: 100%;
}
.brand__bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 26vw;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -.05em;
  line-height: 1;
  opacity: .14;
  z-index: 1;
}
@media (min-width: 720px) { .brand__bg-text { font-size: 130px; } }
.brand__circle {
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, .3) 0%, transparent 35%),
    var(--grad-gold);
  box-shadow:
    0 24px 60px rgba(255, 142, 83, .35),
    inset 0 0 50px rgba(0, 0, 0, .25);
  animation: spin 40s linear infinite;
  z-index: 2;
}
.brand__circle-img {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  z-index: 2;
  object-fit: cover;
  box-shadow:
    0 24px 60px rgba(255, 142, 83, .35),
    inset 0 0 50px rgba(0, 0, 0, .25);
}
@keyframes spin { to { transform: rotate(360deg); } }
.brand__stack {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  z-index: 3;
  pointer-events: none;
}
.brand__chip {
  background: white;
  color: #2A1A35;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .3);
  transform: rotate(-3deg);
}
@media (min-width: 720px) { .brand__chip { padding: 10px 18px; font-size: 13px; } }
.brand__chip:nth-child(1) { align-self: flex-start; transform: rotate(-6deg); margin-left: -10px; }
.brand__chip:nth-child(2) { align-self: flex-end; transform: rotate(4deg); margin-right: -10px; }
.brand__chip:nth-child(3) { align-self: flex-start; transform: rotate(-2deg); margin-left: 20%; }

.brand__copy > p {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
  margin: 18px 0 22px;
}
@media (min-width: 720px) { .brand__copy > p { font-size: 16px; max-width: 480px; margin: 22px 0 28px; } }
.brand__list { list-style: none; margin-bottom: 28px; }
.brand__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--text);
}
.check {
  width: 22px; height: 22px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

/* ============================================
   SALE / COUNTDOWN
   ============================================ */
.sale { padding: 24px 0 40px; }
@media (min-width: 720px) { .sale { padding: 60px 0; } }

.countdown {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  background: var(--surface);
  border-radius: var(--r);
  border: 1px solid var(--line);
}
.countdown > span {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 600;
}
@media (min-width: 720px) { .countdown > span { font-size: 11px; } }
.countdown__nums { display: flex; align-items: center; gap: 4px; }
.countdown__nums > div { display: inline-flex; align-items: baseline; gap: 2px; }
.countdown__nums strong {
  font-weight: 800;
  font-size: 18px;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -.02em;
}
.countdown__nums span { font-size: 11px; color: var(--text-3); }
.countdown .sep { color: var(--text-3); font-weight: 800; }

/* ============================================
   DELIVERY
   ============================================ */
.delivery { padding: 40px 0; }
@media (min-width: 720px) { .delivery { padding: 80px 0; } }

.delivery__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  border: 1px solid var(--line);
}
@media (min-width: 880px) {
  .delivery__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    padding: 56px;
    align-items: center;
  }
}
.delivery__copy p {
  color: var(--text-2);
  font-size: 15px;
  margin: 14px 0 22px;
}
.delivery__sub {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin: 22px 0 12px;
  letter-spacing: 0.2px;
}
.delivery__sub--cities { margin-top: 20px; }
.delivery__chips {
  list-style: none;
  padding: 0;
  margin: 0 0 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.delivery__chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--text-2);
  line-height: 1.2;
  transition: border-color .15s, color .15s;
}
.delivery__chip:hover { border-color: var(--pink); color: var(--text); }
.delivery__chip--link { padding: 0; }
.delivery__chip--link a {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  color: inherit;
  text-decoration: none;
  border-radius: 999px;
}
.delivery__chip--city {
  background: linear-gradient(135deg, rgba(255, 0, 122, 0.08), rgba(255, 0, 122, 0.02));
  border-color: rgba(255, 0, 122, 0.25);
  color: var(--text);
  font-weight: 500;
  padding: 0;
}
.delivery__chip--city a {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  color: inherit;
  text-decoration: none;
  border-radius: 999px;
}
.delivery__chip--city > :not(a) { padding: 6px 12px; }
.delivery__cta { margin-top: 24px; display: inline-flex; }

.delivery__map {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 380px;
  margin: 0 auto;
  width: 100%;
}
.map {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, var(--surface-2) 0%, var(--bg-2) 70%);
  border-radius: 50%;
  border: 1px solid var(--line);
  overflow: hidden;
}
.map::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 28px 28px;
  border-radius: 50%;
}
.map__pulse {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
}
.map__pulse::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  animation: ring 2s infinite;
}
@keyframes ring {
  0% { transform: scale(.4); opacity: 1; }
  100% { transform: scale(3); opacity: 0; }
}
.map__pulse--1 { top: 40%; left: 45%; background: var(--pink); box-shadow: 0 0 18px var(--pink); }
.map__pulse--1::before { background: var(--pink); }
.map__pulse--2 { top: 28%; left: 65%; background: var(--violet); box-shadow: 0 0 18px var(--violet); }
.map__pulse--2::before { background: var(--violet); }
.map__pulse--3 { top: 62%; left: 30%; background: var(--yellow); box-shadow: 0 0 18px var(--yellow); }
.map__pulse--3::before { background: var(--yellow); }
.map__label {
  position: absolute;
  background: white;
  color: #2A1A35;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .3);
}
.map__label--1 { top: 35%; left: 50%; }
.map__label--2 { top: 22%; left: 70%; }
.map__label--3 { top: 57%; left: 35%; }
.map__moto {
  position: absolute;
  top: 50%; left: 30%;
  font-size: 28px;
  animation: moto 8s infinite ease-in-out;
}
@keyframes moto {
  0% { top: 50%; left: 30%; transform: scaleX(1); }
  25% { top: 35%; left: 50%; transform: scaleX(1); }
  50% { top: 22%; left: 70%; transform: scaleX(1); }
  51% { transform: scaleX(-1); }
  75% { top: 40%; left: 45%; transform: scaleX(-1); }
  100% { top: 50%; left: 30%; transform: scaleX(-1); }
}

/* ============================================
   NEWSLETTER
   ============================================ */
.news { padding: 24px 0 40px; }
@media (min-width: 720px) { .news { padding: 48px 0; } }
.news__box {
  background: var(--grad-primary);
  border-radius: var(--r-xl);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  color: white;
  position: relative;
  overflow: hidden;
}
@media (min-width: 880px) {
  .news__box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 48px 56px;
    align-items: center;
  }
}
.news__box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 80%, rgba(255, 255, 255, .15), transparent 40%);
}
.news__box > div { position: relative; z-index: 1; }
.news__box .kicker {
  background: rgba(255, 255, 255, .2);
  border-color: rgba(255, 255, 255, .3);
  color: white;
}
.news__box .title em { color: white; -webkit-text-fill-color: white; background: none; }
.news__box p { opacity: .9; margin-top: 12px; max-width: 380px; font-size: 14px; }
.news__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}
@media (min-width: 480px) {
  .news__form { flex-direction: row; }
}
.news__form input {
  flex: 1;
  min-width: 0;
  padding: 16px 22px;
  background: white;
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  color: #2A1A35;
  outline: none;
}
.news__form input::placeholder { color: var(--text-3); }
.news__form.done { opacity: .6; pointer-events: none; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 48px 0 24px;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
@media (min-width: 720px) { .footer { padding: 64px 0 24px; } }
.footer__grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 720px) {
  .footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
}
.footer__brand p { color: var(--text-2); font-size: 14px; line-height: 1.6; max-width: 380px; margin: 18px 0; }
.footer__grid h4 { font-weight: 700; font-size: 14px; margin-bottom: 12px; color: var(--text); }
.footer__grid a {
  display: block;
  font-size: 14px;
  color: var(--text-2);
  padding: 6px 0;
}
.footer__base {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: .04em;
}
@media (min-width: 720px) {
  .footer__base { flex-direction: row; justify-content: space-between; font-size: 12px; }
}
.footer__pay { font-weight: 600; }

/* ============================================
   MOBILE BOTTOM BAR (sticky nav inferior)
   ============================================ */
.bottombar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(15, 10, 26, .96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--line);
  z-index: 90;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding-bottom: var(--safe-bottom);
}
.bottombar__item--wa { color: #25D366; }
.bottombar__item--wa.bottombar__item--active { color: #25D366; }
@media (min-width: 980px) { .bottombar { display: none; } }
.bottombar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 4px;
  color: var(--text-3);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .02em;
  text-decoration: none;
  position: relative;
  min-height: var(--bottombar-h);
}
.bottombar__item .i3d { width: 28px; height: 28px; }
.bottombar__item--active { color: var(--text); }
.bottombar__item--active::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 2px;
  background: var(--grad-primary);
  border-radius: 999px;
}
.bottombar__item--cart {
  position: relative;
}
.bottombar__cart-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -18px;
  margin-bottom: 2px;
  color: white;
  box-shadow: 0 6px 18px rgba(255, 61, 138, .4);
}
.bottombar__count {
  position: absolute;
  top: -10px; right: calc(50% - 28px);
  background: var(--yellow);
  color: #2A1A0A;
  font-size: 10px;
  font-weight: 800;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg);
  z-index: 1;
}

/* ============================================
   SEARCH DRAWER (mobile)
   ============================================ */
.search-drawer {
  position: fixed;
  inset: 0;
  background: rgba(15, 10, 26, .98);
  backdrop-filter: blur(20px);
  z-index: 200;
  transform: translateY(100%);
  transition: transform .35s var(--ease);
  display: flex;
  flex-direction: column;
}
.search-drawer.is-open { transform: translateY(0); }
.search-drawer__head {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line);
}
.search-drawer__input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  outline: none;
}
.search-drawer__close {
  font-size: 14px;
  color: var(--pink-light);
  padding: 8px 12px;
  font-weight: 600;
}
.search-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 16px;
}
.search-drawer__title {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 12px;
  margin-top: 18px;
}
.search-drawer__title:first-child { margin-top: 0; }
.search-tag {
  display: inline-block;
  padding: 8px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  margin: 0 6px 8px 0;
}

/* ============================================
   UTILS
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}
