/* ============================================================
   POINT DOS SABORES — Paleta Pastel Amarelo + Creme
   Inspirada na identidade amarelo/preto da loja física,
   suavizada para o ambiente digital.
   ============================================================ */
:root {
  /* Amarelo pastel (manteiga → mostarda suave) */
  --yellow-50:  #fffdf5;
  --yellow-100: #fff8e1;
  --yellow-200: #fff0c2;
  --yellow-300: #ffe89c;
  --yellow-400: #f5d76e;
  --yellow-500: #e8c14f;
  --yellow-600: #d4a83a;

  /* Creme / off-white */
  --cream-50:  #fffaf0;
  --cream-100: #fdf3df;
  --cream-200: #f7e8c8;
  --cream-300: #eed9a8;

  /* Grafite quente (substitui o preto puro) */
  --ink-900: #2d2a24;
  --ink-800: #3d3830;
  --ink-700: #5a5246;
  --ink-500: #8a8273;
  --ink-300: #c4bcaa;

  /* Acentos secundários (uso pontual) */
  --honey:   #d4a04b;
  --caramel: #b8884a;
  --peach:   #f5c4a0;
  --mint:    #c8e4d0;

  --white: #ffffff;
  --bg: var(--yellow-50);

  --shadow-sm: 0 2px 8px rgba(45, 42, 36, 0.08);
  --shadow-md: 0 8px 24px rgba(45, 42, 36, 0.12);
  --shadow-lg: 0 16px 40px rgba(45, 42, 36, 0.16);
  --shadow-yellow: 0 10px 30px rgba(232, 193, 79, 0.45);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 32px;

  --t-fast: 0.2s cubic-bezier(.4,.0,.2,1);
  --t-base: 0.35s cubic-bezier(.4,.0,.2,1);
  --t-slow: 0.6s cubic-bezier(.16,.84,.32,1);
}

/* ============ RESET ============ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Quicksand', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  color: var(--ink-900);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}
h1, h2, h3 {
  font-family: 'Fredoka', 'Quicksand', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink-900);
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   REVEAL ANIMATION (Fade-in de baixo p/ cima 0.6s)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(.16,.84,.32,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 245, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(247, 232, 200, 0.6);
  transition: box-shadow var(--t-base);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--cream-100);
}
.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.logo-text strong {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink-900);
  letter-spacing: -0.5px;
}
.logo-text em {
  font-style: normal;
  font-size: 0.75rem;
  color: var(--honey);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--ink-700);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--t-fast);
  position: relative;
}
.main-nav a:hover {
  background: var(--yellow-200);
  color: var(--ink-900);
  transform: translateY(-1px);
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--yellow-400), var(--yellow-500));
  color: var(--ink-900);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  box-shadow: var(--shadow-yellow);
  position: relative;
  overflow: hidden;
  transition: all var(--t-base);
}
.cart-button:hover { transform: translateY(-3px); filter: brightness(1.05); }
.cart-button:active { transform: translateY(0); }
.cart-count {
  background: var(--ink-900);
  color: var(--yellow-300);
  font-weight: 800;
  font-size: 0.78rem;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  transition: transform var(--t-fast);
}
.cart-count.bump { animation: bump 0.4s ease; }
@keyframes bump {
  0%, 100% { transform: scale(1); }
  35% { transform: scale(1.35); }
}

/* ===== PULSE (botão principal) — muda 2% sutil ===== */
.pulse {
  animation: pulseSubtle 2.4s ease-in-out infinite;
}
@keyframes pulseSubtle {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}
.pulse:hover { animation: none; }

/* ===== RIPPLE ===== */
.ripple-ink {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: rippleAnim 0.6s ease-out;
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, var(--yellow-200) 0%, transparent 50%),
    radial-gradient(circle at 85% 30%, var(--cream-100) 0%, transparent 50%),
    radial-gradient(circle at 60% 85%, var(--yellow-100) 0%, transparent 55%),
    var(--bg);
  z-index: -1;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.hero-tag {
  display: inline-block;
  background: white;
  color: var(--honey);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
  border: 1px solid var(--cream-200);
}
.hero-text h1 {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--ink-900) 0%, var(--caramel) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-text > p {
  font-size: 1.1rem;
  color: var(--ink-700);
  margin-bottom: 28px;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  background: linear-gradient(135deg, var(--yellow-400), var(--yellow-500));
  color: var(--ink-900);
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow-yellow);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-base), filter var(--t-base), box-shadow var(--t-base);
}
.btn-primary:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
  box-shadow: 0 14px 36px rgba(232, 193, 79, 0.55);
}
.btn-primary:active { transform: translateY(0); }
.btn-block { width: 100%; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  background: white;
  color: var(--ink-900);
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--cream-200);
  transition: all var(--t-base);
}
.btn-ghost:hover {
  background: var(--cream-50);
  border-color: var(--yellow-300);
  transform: translateY(-3px);
}

.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  font-size: 0.95rem;
  color: var(--ink-700);
  font-weight: 600;
}
.hero-bullets li { display: flex; align-items: center; gap: 8px; }
.hero-bullets span { font-size: 1.2rem; }

/* Hero art */
.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.hero-cup { animation: floatY 4s ease-in-out infinite; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Hero photo */
.hero-photo-wrap {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  position: relative;
  z-index: 1;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(.16,.84,.32,1);
}
.hero-photo-wrap:hover .hero-photo {
  transform: scale(1.03);
}

.float-bubble {
  position: absolute;
  background: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: var(--shadow-md);
  animation: floatBubble 5s ease-in-out infinite;
  border: 2px solid var(--cream-100);
}
.float-bubble.b1 { top: 5%; left: 10%; animation-delay: 0s; }
.float-bubble.b2 { top: 20%; right: 5%; width: 54px; height: 54px; animation-delay: 1.2s; }
.float-bubble.b3 { bottom: 20%; left: 0; width: 50px; height: 50px; animation-delay: 2.5s; }
.float-bubble.b4 { bottom: 5%; right: 15%; width: 48px; height: 48px; animation-delay: 0.8s; }
@keyframes floatBubble {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  50% { transform: translate(8px, -14px) rotate(8deg); }
}

/* ============================================================
   CARROSSÉIS
   ============================================================ */
.carousels {
  padding: 30px 0 50px;
}
.carousel {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 24px;
  height: 200px;
  box-shadow: var(--shadow-md);
  outline: none;
  touch-action: pan-y; /* permite scroll vertical mas captura horizontal */
}
.carousel:focus-visible {
  box-shadow: var(--shadow-md), 0 0 0 3px var(--yellow-400);
}

/* Setas de navegação */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transition: opacity var(--t-base), transform var(--t-base), background var(--t-fast);
  backdrop-filter: blur(4px);
}
.carousel-arrow.prev { left: 12px; }
.carousel-arrow.next { right: 12px; }
.carousel:hover .carousel-arrow,
.carousel:focus-within .carousel-arrow {
  opacity: 1;
}
.carousel-arrow:hover {
  background: white;
  transform: translateY(-50%) scale(1.08);
}
.carousel-arrow:active {
  transform: translateY(-50%) scale(0.94);
}

/* Feedback visual durante swipe */
.carousel.dragging .slide.active {
  transition: transform 0.05s linear;
}
.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 28px 36px;
  background: linear-gradient(135deg, var(--g1, var(--yellow-200)) 0%, var(--g2, var(--yellow-400)) 100%);
  color: var(--ink-900);
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.16,.84,.32,1);
  pointer-events: none;
}
.slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.slide-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.75);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink-800);
}
.slide h2 {
  font-size: clamp(1.05rem, 2.2vw, 1.55rem);
  margin-bottom: 8px;
  max-width: 560px;
}
.slide p {
  font-size: 0.95rem;
  color: var(--ink-800);
  max-width: 520px;
}
.slide-visual {
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
}
.slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: none;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.12));
  animation: floatY 3.5s ease-in-out infinite;
}
.slide-visual.has-img .slide-img { display: block; }
.slide-visual.has-img .slide-emoji { display: none; }
.slide-emoji {
  font-size: clamp(3rem, 7vw, 5.5rem);
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.12));
  animation: floatY 3.5s ease-in-out infinite;
}

/* ============================================================
   SLIDE COM IMAGEM DE FUNDO + GRADIENTE
   Usado em destaques com foto do produto (ex: Açaí Pote Ypy)
   ============================================================ */
.slide.slide-bg {
  grid-template-columns: 1fr;
  background:
    linear-gradient(
      100deg,
      color-mix(in srgb, var(--g2, #6b3a8a) 78%, transparent) 0%,
      color-mix(in srgb, var(--g2, #6b3a8a) 55%, transparent) 38%,
      color-mix(in srgb, var(--g1, #a47cbf) 18%, transparent) 70%,
      transparent 100%
    ),
    var(--bg-img) var(--bg-pos, center)/cover no-repeat,
    linear-gradient(135deg, var(--g1, #e8d0f5) 0%, var(--g2, #a47cbf) 100%);
  color: #fff;
}
.slide.slide-bg .slide-content {
  max-width: 60%;
  position: relative;
  z-index: 2;
}
.slide.slide-bg .slide-tag {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink-900);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.slide.slide-bg h2 {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45), 0 1px 3px rgba(0,0,0,0.4);
}
.slide.slide-bg p {
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
@media (max-width: 640px) {
  .slide.slide-bg .slide-content {
    max-width: 100%;
  }
  .slide.slide-bg {
    background:
      linear-gradient(
        180deg,
        color-mix(in srgb, var(--g2, #6b3a8a) 70%, transparent) 0%,
        color-mix(in srgb, var(--g2, #6b3a8a) 45%, transparent) 100%
      ),
      var(--bg-img) var(--bg-pos, center)/cover no-repeat,
      linear-gradient(135deg, var(--g1, #e8d0f5) 0%, var(--g2, #a47cbf) 100%);
  }
}

.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(45, 42, 36, 0.25);
  transition: all var(--t-fast);
}
.carousel-dots button.active {
  background: var(--ink-900);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   CATÁLOGO
   ============================================================ */
.catalog {
  padding: 50px 0 70px;
}
.catalog-header {
  text-align: center;
  margin-bottom: 30px;
}
.section-eyebrow {
  display: inline-block;
  color: var(--honey);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.catalog-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 10px;
}
.catalog-header p {
  color: var(--ink-700);
  max-width: 560px;
  margin: 0 auto;
}

/* Grupos de filtros (Categoria + Marca) */
.filters-group {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.filters-group:last-of-type { margin-bottom: 30px; }
.filters-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--honey);
  white-space: nowrap;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.filter {
  padding: 10px 20px;
  background: white;
  color: var(--ink-700);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--cream-100);
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}
.filter:hover {
  border-color: var(--yellow-400);
  color: var(--ink-900);
  transform: translateY(-2px);
}
.filter.active {
  background: linear-gradient(135deg, var(--yellow-400), var(--yellow-500));
  color: var(--ink-900);
  border-color: transparent;
  box-shadow: var(--shadow-yellow);
}

/* Cores específicas dos filtros de marca (quando ativo) */
.filter.brand-mp.active { background: linear-gradient(135deg, #f5b8d3, #e8a5c5); color: #5a2a45; box-shadow: 0 8px 20px rgba(232, 165, 197, 0.4); }
.filter.brand-di.active { background: linear-gradient(135deg, #b8def5, #9ed0f0); color: #1f4a6e; box-shadow: 0 8px 20px rgba(158, 208, 240, 0.4); }
.filter.brand-pv.active { background: linear-gradient(135deg, #f5b8aa, #f5a89c); color: #7a2e1f; box-shadow: 0 8px 20px rgba(245, 168, 156, 0.4); }
.filter.brand-yp.active { background: linear-gradient(135deg, #cdedc0, #bde5b0); color: #2e5a1f; box-shadow: 0 8px 20px rgba(189, 229, 176, 0.4); }
.filter.brand-ib.active { background: linear-gradient(135deg, #b8e8ed, #9ed8e0); color: #15555e; box-shadow: 0 8px 20px rgba(158, 216, 224, 0.4); }

/* Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}
.product-card {
  position: relative;
  background:
    linear-gradient(180deg,
      color-mix(in srgb, var(--g1, #ffe0b2) 75%, #fff) 0%,
      #ffffff 62%);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(45, 42, 36, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  opacity: 0;
  animation: fadeInUp 0.5s ease-out forwards;
  border: 1px solid rgba(255, 255, 255, 0.55);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.product-card.removing {
  opacity: 0;
  transform: translateY(-12px) scale(0.96);
  pointer-events: none;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(45, 42, 36, 0.14);
}
.product-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  position: relative;
  padding: 14px 14px 0;
}
.product-card:hover .product-image-inner { transform: scale(1.06) rotate(-1.5deg); }
.product-image-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(.16,.84,.32,1);
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.55) 100%),
    linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
}
/* Foto real do produto (sobreposta ao gradiente; fallback = emoji) */
.product-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-emoji {
  position: relative;
  z-index: 1;
  font-size: 4.5rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}
.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #fff2b8;
  color: #8a5d00;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.4px;
  box-shadow: 0 4px 10px rgba(138, 93, 0, 0.18);
  z-index: 3;
}
/* Selo de marca — canto superior direito */
.product-brand-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-sm);
  z-index: 2;
  white-space: nowrap;
  font-family: 'Fredoka', sans-serif;
}
/* Subcategoria — pequena etiqueta acima do nome */
.product-subcat {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 4px;
}
/* Estado vazio */
.empty-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-500);
}
.empty-products .empty-icon {
  font-size: 4rem;
  margin-bottom: 12px;
}
.product-info {
  padding: 20px 20px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-name {
  font-weight: 700;
  font-size: 1.08rem;
  line-height: 1.25;
  margin-bottom: 6px;
  color: var(--ink-900);
  font-family: 'Fredoka', sans-serif;
}
.product-desc {
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--ink-500);
  margin-bottom: 16px;
  flex: 1;
}
.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.product-price {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--caramel);
  font-family: 'Fredoka', sans-serif;
}
.btn-add {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 18px;
  background: #f2c94c;
  color: #2f241c;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 6px 16px rgba(242, 201, 76, 0.42);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  position: relative;
  overflow: hidden;
  border: none;
}
.btn-add:hover { transform: scale(1.05); background: #ffd75e; box-shadow: 0 8px 22px rgba(242, 201, 76, 0.55); }
.btn-add:active { transform: scale(0.96); }

/* ============================================================
   LOCALIZAÇÃO
   ============================================================ */
.location {
  padding: 50px 0 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--yellow-100) 100%);
}
.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  padding-bottom: 50px;
}
.location-info h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin-bottom: 12px;
}
.location-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
  color: var(--ink-900);
}
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ink-300);
}
.status-dot.open {
  background: #6ec97e;
  box-shadow: 0 0 0 0 rgba(110, 201, 126, 0.5);
  animation: pulseDot 2s ease-in-out infinite;
}
.status-dot.closed { background: #c47878; }
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(110, 201, 126, 0.45); }
  70% { box-shadow: 0 0 0 12px rgba(110, 201, 126, 0); }
  100% { box-shadow: 0 0 0 0 rgba(110, 201, 126, 0); }
}

.location-list {
  list-style: none;
  display: grid;
  gap: 18px;
}
.location-list li {
  background: white;
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  font-size: 0.95rem;
  color: var(--ink-700);
  border: 1px solid var(--cream-100);
}
.location-list strong {
  display: block;
  color: var(--ink-900);
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 0.92rem;
}
.location-list a { color: var(--honey); font-weight: 700; }

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  box-shadow: var(--shadow-md);
  background: var(--cream-100);
}


/* ============================================================
   MAPA DA LOJA (Leaflet)
   ============================================================ */
.location-map {
  position: relative;
  height: 100%;
  min-height: 380px;
}
#storeMap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: var(--radius-lg);
  cursor: grab;
  background: #eef0f3;
  z-index: 1;
}
#storeMap:active { cursor: grabbing; }
.leaflet-container { background: #eef0f3 !important; }
#storeMap .leaflet-tile-pane { filter: saturate(1.15) contrast(1.03); }

/* Pin custom da loja */
.store-marker {
  background: transparent !important;
  border: none !important;
}
.store-marker-pin {
  position: relative;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #f5b942 0%, #e08a1e 100%);
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: store-pin-pop 0.45s cubic-bezier(.34,1.56,.64,1) both;
}
.store-marker-pin span {
  transform: rotate(45deg);
  font-size: 1.25rem;
  line-height: 1;
}
.store-marker-label {
  position: absolute;
  left: 50%;
  top: 48px;
  transform: translateX(-50%);
  background: #fff;
  color: var(--ink-900);
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 12px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  border: 2px solid var(--yellow-300);
}
@keyframes store-pin-pop {
  from { transform: rotate(-45deg) scale(0.4); opacity: 0; }
  to   { transform: rotate(-45deg) scale(1); opacity: 1; }
}


/* Pin de pontos de referência (menor e mais discreto que o da loja) */
.ref-marker {
  background: transparent !important;
  border: none !important;
}
.ref-marker-pin {
  position: relative;
  width: 34px;
  height: 34px;
  background: #fff;
  border: 2px solid var(--ink-700);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ref-marker-pin span {
  transform: rotate(45deg);
  font-size: 0.95rem;
  line-height: 1;
}
.ref-marker-label {
  position: absolute;
  left: 50%;
  top: 38px;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.95);
  color: var(--ink-800);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  padding: 2px 7px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}

/* Botão "abrir rota no google maps" */
.map-directions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 500;
  background: #fff;
  color: var(--ink-900);
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  border: 2px solid var(--yellow-300);
  transition: all var(--t-fast);
}
.map-directions:hover {
  background: var(--yellow-300);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.22);
}

/* Controles do leaflet menos invasivos */
.leaflet-control-zoom a {
  background: #fff !important;
  border: 2px solid var(--ink-200) !important;
  color: var(--ink-900) !important;
  border-radius: 8px !important;
}

/* Footer */
.site-footer {
  background: var(--ink-900);
  color: var(--cream-100);
  padding: 22px 0;
}
.footer-inner {
  text-align: center;
  font-size: 0.9rem;
}
.footer-inner .small { font-size: 0.82rem; margin-top: 4px; color: var(--ink-300); }

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
  z-index: 90;
  transition: transform var(--t-base);
  animation: pulseWA 2.2s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulseWA {
  0%, 100% { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5), 0 0 0 14px rgba(37, 211, 102, 0); }
}
.wa-tooltip {
  position: absolute;
  right: 70px;
  background: var(--ink-900);
  color: white;
  padding: 6px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-fast), transform var(--t-fast);
  transform: translateX(8px);
}
.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}
.cart-drawer.open { pointer-events: auto; }
.cart-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 42, 36, 0.45);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity var(--t-base);
}
.cart-drawer.open .cart-overlay { opacity: 1; }

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  background: var(--yellow-50);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.16,.84,.32,1);
  box-shadow: -10px 0 40px rgba(45, 42, 36, 0.15);
}
.cart-drawer.open .cart-panel { transform: translateX(0); }

.cart-header {
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--cream-200);
  background: white;
}
.cart-header h3 {
  font-size: 1.25rem;
}
.cart-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.clear-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: var(--cream-50);
  color: var(--ink-700);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.82rem;
  border: 1px solid var(--cream-200);
  transition: all var(--t-fast);
}
.clear-cart-btn:hover {
  background: #fde5e0;
  color: #b85050;
  border-color: #f0c4b8;
}
.clear-cart-btn:active { transform: scale(0.96); }
.clear-cart-btn.hidden { display: none; }
.clear-cart-btn.confirming {
  background: #fde5e0;
  color: #b85050;
  border-color: #e89880;
  animation: confirmShake 0.5s ease;
}
@keyframes confirmShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-3px); }
  40%, 80% { transform: translateX(3px); }
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cream-100);
  color: var(--ink-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
}
.icon-btn:hover { background: var(--yellow-200); color: var(--ink-900); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-100);
  animation: slideIn 0.3s ease;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.cart-item.removing {
  animation: slideOut 0.3s ease forwards;
}
@keyframes slideOut {
  to { opacity: 0; transform: translateX(40px); height: 0; padding: 0; margin: 0; }
}
.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--g1, var(--yellow-100)), var(--g2, var(--cream-200)));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  overflow: hidden;
  flex-shrink: 0;
}
.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.cart-item-info { min-width: 0; }
.cart-item-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink-900);
}
.cart-item-meta {
  font-size: 0.78rem;
  color: var(--ink-500);
  margin: 2px 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-price {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--caramel);
}
.cart-item-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.qty-control {
  display: inline-flex;
  align-items: center;
  background: var(--cream-50);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--cream-200);
}
.qty-btn {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-900);
  font-weight: 700;
  font-size: 1.05rem;
  transition: background var(--t-fast);
}
.qty-btn:hover { background: var(--yellow-200); }
.qty-value {
  min-width: 26px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.remove-btn {
  font-size: 0.75rem;
  color: var(--ink-500);
  text-decoration: underline;
  transition: color var(--t-fast);
}
.remove-btn:hover { color: #b85050; }

.cart-empty {
  flex: 1;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
  gap: 16px;
}
.cart-empty.show { display: flex; }
.cart-empty p { color: var(--ink-500); font-size: 1rem; }
.empty-icon {
  font-size: 4rem;
  animation: floatY 3s ease-in-out infinite;
}

.cart-footer {
  padding: 18px 22px;
  border-top: 1px solid var(--cream-200);
  background: white;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-footer.hidden { display: none; }
.cart-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.cart-total span { color: var(--ink-700); font-weight: 600; }
.cart-total strong {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.5rem;
  color: var(--ink-900);
}
.cart-hint {
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-500);
}

/* ============================================================
   MODAL TOPPINGS
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.open { display: flex; }
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 42, 36, 0.5);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.25s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-panel {
  position: relative;
  background: white;
  border-radius: var(--radius-xl);
  width: min(520px, 100%);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: modalIn 0.35s cubic-bezier(.16,.84,.32,1);
  box-shadow: var(--shadow-lg);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-header {
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--cream-200);
}
.modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 22px;
}
.modal-hint {
  color: var(--ink-500);
  font-size: 0.88rem;
  margin-bottom: 16px;
  text-align: center;
}
.topping-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
}
.topping-card {
  background: var(--cream-50);
  padding: 14px 10px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t-fast);
  position: relative;
  user-select: none;
}
.topping-card:hover {
  background: var(--yellow-100);
  transform: translateY(-2px);
}
.topping-card.selected {
  border-color: var(--yellow-500);
  background: var(--yellow-100);
  box-shadow: var(--shadow-sm);
}
.topping-card.selected::after {
  content: '✓';
  position: absolute;
  top: 6px;
  right: 8px;
  width: 20px;
  height: 20px;
  background: var(--ink-900);
  color: var(--yellow-300);
  border-radius: 50%;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.topping-emoji {
  font-size: 1.8rem;
  margin-bottom: 4px;
}
.topping-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-700);
}

.modal-footer {
  padding: 16px 22px;
  border-top: 1px solid var(--cream-200);
  background: var(--cream-50);
  display: flex;
  gap: 10px;
}
.modal-footer .btn-primary,
.modal-footer .btn-ghost {
  flex: 1;
  padding: 12px 16px;
}

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(40px);
  background: var(--ink-900);
  color: var(--yellow-300);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s cubic-bezier(.16,.84,.32,1);
  z-index: 300;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================================
   FLY TO CART
   ============================================================ */
.fly-target {
  position: fixed;
  z-index: 95;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow-400), var(--yellow-500));
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--ink-900);
  pointer-events: none;
  box-shadow: var(--shadow-yellow);
}
.fly-target.flying {
  display: flex;
  animation: flyToCart 0.85s cubic-bezier(.5,.0,.7,.4) forwards;
}
@keyframes flyToCart {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(var(--dx, 0), var(--dy, 0)) scale(0.2);
    opacity: 0;
  }
}

/* ============================================================
   RESPONSIVO — MOBILE FIRST FOCUS
   ============================================================ */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .hero-text > p, .hero-bullets { margin-left: auto; margin-right: auto; }
  .hero-bullets { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-art { min-height: 260px; }
  .location-inner { grid-template-columns: 1fr; }
  .location-map { min-height: 320px; }
}
@media (max-width: 640px) {
  .header-inner { padding: 12px 14px; }
  .cart-label { display: none; }
  .cart-button { padding: 10px 12px; }
  .logo-text em { display: none; }
  .hero { padding: 30px 0 50px; }
  .hero-text h1 { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .carousel { height: 180px; border-radius: var(--radius-lg); }
  .carousel-arrow { opacity: 0.85; width: 36px; height: 36px; }
  .carousel-arrow.prev { left: 8px; }
  .carousel-arrow.next { right: 8px; }
  .slide { padding: 20px 20px; gap: 12px; }
  .slide-visual { width: 100px; height: 100px; }
  .slide-emoji { font-size: 3rem; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
  .product-name { font-size: 0.95rem; }
  .product-desc { font-size: 0.78rem; }
  .product-price { font-size: 1rem; }
  .btn-add { font-size: 0.78rem; padding: 7px 10px; }
  .filter { padding: 8px 14px; font-size: 0.85rem; }
  .filters-group { gap: 8px; }
  .filters-label { width: 100%; text-align: center; font-size: 0.72rem; }
  .product-brand-badge { font-size: 0.62rem; padding: 3px 8px; top: 8px; right: 8px; }
  .product-badge { font-size: 0.62rem; padding: 3px 8px; top: 8px; left: 8px; }
  .product-subcat { font-size: 0.62rem; }
  .product-emoji { font-size: 3.5rem; }
  .whatsapp-float { width: 54px; height: 54px; bottom: 16px; right: 16px; }
  .wa-tooltip { display: none; }
  .cart-panel { width: 100%; }
}
@media (max-width: 380px) {
  .hero-actions .btn-primary, .hero-actions .btn-ghost { width: 100%; }
  .product-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   ACESSIBILIDADE — Reduced Motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   MODAL BUFFET (Paviloche Pote)
   ============================================================ */
.buffet-panel {
  width: min(620px, 100%);
}

.buffet-step-label {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-500);
  letter-spacing: 0.02em;
}

.buffet-notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: linear-gradient(135deg, #fff8d9 0%, #ffe9a8 100%);
  border: 2px solid #f5c14f;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 18px;
}
.buffet-notice-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
}
.buffet-notice strong {
  display: block;
  color: #6b4a18;
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.buffet-notice p {
  font-size: 0.82rem;
  color: #8a6a30;
  line-height: 1.35;
  margin: 0;
}

.buffet-step.hidden {
  display: none;
}

.buffet-step-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink-900);
  margin: 0 0 6px 0;
  text-align: center;
}

/* Grid de seleção de sabores (Etapa 1) */
.flavor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(115px, 1fr));
  gap: 10px;
  margin-top: 10px;
}
.flavor-card {
  background: var(--cream-50);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  padding: 12px 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all var(--t-fast);
  position: relative;
  user-select: none;
  text-align: center;
}
.flavor-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.flavor-card.selected {
  border-color: var(--yellow-500);
  background: var(--yellow-100);
  box-shadow: var(--shadow-sm);
}
.flavor-card.selected::after {
  content: '✓';
  position: absolute;
  top: 6px;
  right: 6px;
  width: 20px;
  height: 20px;
  background: var(--ink-900);
  color: var(--yellow-300);
  border-radius: 50%;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.flavor-emoji-wrap {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: var(--shadow-sm);
}
.flavor-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-700);
  line-height: 1.2;
  min-height: 2.4em;
  display: flex;
  align-items: center;
}


/* ============================================================
   Seletor de bolas por sabor (Etapa 2)
   ============================================================ */
.scoops-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}
.scoop-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--cream-50);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  padding: 10px 14px;
  transition: all var(--t-fast);
}
.scoop-row:hover {
  border-color: var(--yellow-300);
}
.scoop-flavor {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1;
}
.scoop-emoji-wrap {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  overflow: hidden;
}
.scoop-emoji-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.scoop-flavor-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-800);
  line-height: 1.2;
  word-break: break-word;
}
.scoop-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.scoop-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--ink-900);
  background: white;
  color: var(--ink-900);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all var(--t-fast);
  user-select: none;
}
.scoop-btn:hover {
  background: var(--yellow-300);
  transform: scale(1.05);
}
.scoop-btn:active {
  transform: scale(0.95);
}
.scoop-value {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink-900);
  min-width: 22px;
  text-align: center;
}
.scoop-label {
  font-size: 0.8rem;
  color: var(--ink-500);
  font-weight: 600;
  margin-left: 2px;
}

@media (max-width: 480px) {
  .scoop-row {
    flex-wrap: wrap;
    padding: 10px 12px;
  }
  .scoop-flavor { flex: 1 1 100%; }
  .scoop-counter {
    flex: 1 1 100%;
    justify-content: flex-end;
  }
}

/* Topping-card sem emoji: ajusta padding e centralização */
.topping-card .topping-name {
  text-align: center;
  width: 100%;
}

/* Resumo (Etapa 4) */
.buffet-summary {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.summary-block {
  background: var(--cream-50);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}
.summary-block h5 {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-900);
  margin: 0 0 10px;
}
.summary-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.summary-chip {
  background: white;
  border: 1px solid var(--cream-200);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 0.85rem;
  color: var(--ink-700);
  font-weight: 500;
  white-space: nowrap;
}
.summary-empty {
  font-size: 0.85rem;
  color: var(--ink-500);
  font-style: italic;
}

/* Botões da etapa do buffet */
.modal-footer .btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  filter: grayscale(0.3);
}

#buffetBackBtn { flex: 0 0 auto; padding: 12px 16px; }

@media (max-width: 480px) {
  .flavor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .buffet-notice {
    padding: 12px 14px;
  }
  .buffet-notice-icon { font-size: 1.5rem; }
  .modal-footer {
    flex-wrap: wrap;
  }
  #buffetBackBtn { width: 100%; order: -1; }
}

/* Item do carrinho — info adicional do Buffet */
.cart-item-buffet {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-500);
  background: #fff8d9;
  border-left: 3px solid #f5c14f;
  padding: 5px 8px;
  margin: 4px 0;
  border-radius: 0 4px 4px 0;
  line-height: 1.3;
}
.cart-item-price-bypeso {
  font-size: 0.78rem;
  font-weight: 600;
  color: #8a6a30;
  font-style: italic;
}

/* Filtro Buffet — destaque sutil para indicar "monte do seu jeito" */
.filter[data-filter="buffet"].active {
  background: linear-gradient(135deg, #fff8d9 0%, #f5c14f 100%);
  color: #5a3a0a;
}

/* Garantir que o atributo [hidden] funcione mesmo quando o elemento tem display explícito */
[hidden] { display: none !important; }

/* Card de produto do Buffet — sem preço, botão centralizado, aviso "por peso" */
.product-bottom-buffet {
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.product-bottom-buffet .product-price-bypeso {
  display: block;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: #8a6a30;
  background: linear-gradient(135deg, #fff8d9 0%, #ffe9a8 100%);
  border: 1.5px solid #f5c14f;
  border-radius: 999px;
  padding: 4px 10px;
  letter-spacing: 0.01em;
}
.product-bottom-buffet .btn-add {
  width: 100%;
  justify-content: center;
}

/* Carrossel single-slide — sem setas, sem dots */
.carousel.single-slide .carousel-arrow,
.carousel.single-slide .carousel-dots {
  display: none;
}
.carousel.single-slide .slide {
  cursor: default;
}

/* ============================================================
   BANNER DE DESTAQUE — Especial da Casa
   ============================================================ */
.featured-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 24px;
  padding: 32px 36px;
  margin: 0 0 36px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform var(--t-base), box-shadow var(--t-base);
  isolation: isolate;
  min-height: 200px;
}
.featured-banner:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.featured-banner-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 85% 30%, rgba(255, 217, 61, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 15% 80%, rgba(212, 160, 75, 0.22) 0%, transparent 55%),
    linear-gradient(135deg, #3a2347 0%, #5a3565 45%, #2d1a3a 100%);
}
.featured-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at 80% 50%, rgba(245, 215, 110, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.featured-banner-content {
  position: relative;
  z-index: 1;
}
.featured-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow-400);
  color: var(--ink-900);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(245, 215, 110, 0.35);
}
.featured-tag svg {
  color: var(--ink-900);
}
.featured-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 10px;
  color: var(--white);
  letter-spacing: -0.5px;
}
.featured-sub {
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 20px;
  max-width: 360px;
}
.featured-cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.featured-price {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--yellow-400);
}
.featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow-400);
  color: var(--ink-900);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 11px 22px;
  border-radius: 999px;
  transition: transform var(--t-fast), background var(--t-fast);
  box-shadow: 0 6px 18px rgba(245, 215, 110, 0.4);
}
.featured-banner:hover .featured-cta {
  background: var(--yellow-300);
  transform: scale(1.04);
}
.featured-banner-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.featured-emoji {
  font-size: clamp(5rem, 12vw, 8.5rem);
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.4));
  transform: rotate(-8deg);
  transition: transform var(--t-base);
}
.featured-banner:hover .featured-emoji {
  transform: rotate(-4deg) scale(1.05);
}

@media (max-width: 720px) {
  .featured-banner {
    grid-template-columns: 1fr;
    padding: 26px 22px;
    text-align: center;
    min-height: auto;
  }
  .featured-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .featured-cta-row {
    justify-content: center;
  }
  .featured-banner-art {
    order: -1;
    margin-bottom: 4px;
  }
  .featured-emoji {
    font-size: 5.5rem;
  }
}


/* ============================================================
   BANNER ESPECIAL DA CASA — modo Açaí Premium
   (animação floating no emoji + visual gourmet)
   ============================================================ */
@keyframes floating {
  0%   { transform: rotate(-8deg) translateY(0px); }
  50%  { transform: rotate(-6deg) translateY(-12px); }
  100% { transform: rotate(-8deg) translateY(0px); }
}
.featured-banner .featured-emoji {
  animation: floating 4s ease-in-out infinite;
}
.featured-banner:hover .featured-emoji {
  transform: rotate(-4deg) scale(1.08);
  animation-play-state: paused;
}
.featured-banner-bg {
  background:
    radial-gradient(circle at 85% 25%, rgba(255, 224, 138, 0.22) 0%, transparent 55%),
    radial-gradient(circle at 15% 85%, rgba(212, 160, 75, 0.20) 0%, transparent 55%),
    linear-gradient(135deg, #3a154f 0%, #5a2670 45%, #12001d 100%) !important;
}
.featured-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to right, rgba(0,0,0,0.35), rgba(0,0,0,0.05));
  pointer-events: none;
}
.featured-title {
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}
.featured-tag {
  background: #ffe08a !important;
  color: #4f3400 !important;
  box-shadow: 0 4px 14px rgba(255, 224, 138, 0.35);
}

/* ============================================================
   VITRINE PREMIUM — Overrides modernos (delivery gourmet style)
   - Cards menores, mais por linha, espaçamento premium
   - Hover suave, animações refinadas
   - Banner promocional dentro da grid, full-width
   Mantém intacto: header, hero, footer, mapa, filtros, carrinho,
   identidade visual e toda a lógica do JS.
   ============================================================ */

/* ---------- Container da seção ---------- */
.catalog {
  padding: 64px 0 96px;
  background:
    radial-gradient(1200px 600px at 50% -220px, rgba(255, 232, 168, 0.45), transparent 60%),
    linear-gradient(180deg, #fffaf2 0%, #fff8ee 100%);
}
.catalog-header { margin-bottom: 38px; }

/* ---------- Grid premium: mais cards por linha ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(225px, 1fr));
  gap: 22px;
  position: relative;
}

/* ---------- Card premium ---------- */
.product-card {
  position: relative;
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(45, 42, 36, 0.04),
    0 10px 26px rgba(45, 42, 36, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.045);
  display: flex;
  flex-direction: column;
  opacity: 0;
  animation: pcFadeUp 0.55s cubic-bezier(.2,.8,.25,1) forwards;
  transition:
    transform 0.45s cubic-bezier(.16,.84,.32,1),
    box-shadow 0.45s cubic-bezier(.16,.84,.32,1),
    border-color 0.3s ease,
    opacity 0.4s ease;
}
@keyframes pcFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.product-card.removing {
  opacity: 0;
  transform: translateY(-12px) scale(0.96);
  pointer-events: none;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 1px 3px rgba(45, 42, 36, 0.06),
    0 26px 52px rgba(45, 42, 36, 0.17);
  border-color: rgba(245, 200, 100, 0.45);
}

/* Brilho diagonal sutil ao passar o mouse (efeito premium) */
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 100%);
  transform: skewX(-18deg);
  transition: left 0.85s cubic-bezier(.16,.84,.32,1);
  pointer-events: none;
  z-index: 4;
}
.product-card:hover::before { left: 130%; }

/* ---------- Área da imagem (mais quadrada, clean) ---------- */
.product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 14px;
  position: relative;
  overflow: hidden;
}
.product-image-inner {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255,255,255,0.92), rgba(255,255,255,0.55) 70%),
    linear-gradient(180deg,
      color-mix(in srgb, var(--g1, #ffe0b2) 22%, #fff8ee) 0%,
      #ffffff 72%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.03);
  transition: transform 0.55s cubic-bezier(.16,.84,.32,1);
}
.product-card:hover .product-image-inner {
  transform: scale(1.03) rotate(-0.6deg);
}
.product-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(.16,.84,.32,1);
}
.product-card:hover .product-photo {
  transform: scale(1.07);
}
.product-emoji {
  font-size: 3.8rem;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.15));
}

/* ---------- Badges (mais discretos e elegantes) ---------- */
.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, #ffd560 0%, #f5b800 100%);
  color: #4a3000;
  font-size: 0.66rem;
  font-weight: 800;
  padding: 5px 11px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 6px 14px rgba(245, 184, 0, 0.32);
  z-index: 3;
}
.product-brand-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.64rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  z-index: 3;
  backdrop-filter: blur(4px);
}

/* ---------- Conteúdo do card ---------- */
.product-info {
  padding: 6px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-subcat {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 4px;
  opacity: 0.9;
}
.product-name {
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.25;
  margin-bottom: 5px;
  color: var(--ink-900);
  font-family: 'Fredoka', sans-serif;
  letter-spacing: -0.01em;
}
.product-desc {
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--ink-500);
  margin-bottom: 14px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}
.product-price {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--caramel);
  font-family: 'Fredoka', sans-serif;
  letter-spacing: -0.02em;
}

/* ---------- Botão Adicionar (mais compacto e refinado) ---------- */
.btn-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 9px 14px;
  background: linear-gradient(135deg, #f5d24a 0%, #f2c11f 100%);
  color: #2f241c;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 6px 14px rgba(242, 193, 31, 0.34);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  position: relative;
  overflow: hidden;
  border: none;
  white-space: nowrap;
}
.btn-add:hover {
  transform: translateY(-2px) scale(1.03);
  background: linear-gradient(135deg, #ffde5e 0%, #f7c92a 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 12px 24px rgba(242, 193, 31, 0.5);
}
.btn-add:active { transform: translateY(0) scale(0.97); }

/* ---------- Destaque visual em alguns produtos (1º, 6º, 11º...) ---------- */
.product-card:nth-child(5n+1) {
  background:
    linear-gradient(180deg,
      color-mix(in srgb, var(--g1, #ffe0b2) 38%, #fff) 0%,
      #ffffff 70%);
}
.product-card:nth-child(7n+3) .product-image-inner {
  background:
    radial-gradient(circle at 50% 28%, rgba(255,255,255,0.85), rgba(255,255,255,0.45) 70%),
    linear-gradient(180deg,
      color-mix(in srgb, var(--g2, #c98d4a) 12%, #fffaf2) 0%,
      #ffffff 72%);
}

/* ============================================================
   BANNER PROMOCIONAL DENTRO DA GRID (full-width)
   Quando JS adiciona .featured-banner--in-grid, ele vira um
   item da grid que ocupa todas as colunas — visual "delivery premium".
   ============================================================ */
.featured-banner.featured-banner--in-grid {
  grid-column: 1 / -1;
  margin: 6px 0;
  padding: 36px 44px;
  border-radius: 26px;
  min-height: 230px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: center;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  box-shadow:
    0 1px 3px rgba(45, 30, 80, 0.10),
    0 24px 56px rgba(45, 30, 80, 0.24);
  transition:
    transform 0.45s cubic-bezier(.16,.84,.32,1),
    box-shadow 0.45s cubic-bezier(.16,.84,.32,1);
  isolation: isolate;
}
.featured-banner.featured-banner--in-grid:hover {
  transform: translateY(-6px);
  box-shadow:
    0 1px 3px rgba(45, 30, 80, 0.12),
    0 32px 70px rgba(45, 30, 80, 0.34);
}
.featured-banner.featured-banner--in-grid .featured-title {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
}
.featured-banner.featured-banner--in-grid .featured-emoji {
  font-size: clamp(5rem, 11vw, 8rem);
}

/* ============================================================
   RESPONSIVO PREMIUM
   ============================================================ */
@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 20px;
  }
}
@media (max-width: 960px) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
    gap: 16px;
  }
  .featured-banner.featured-banner--in-grid {
    padding: 30px 30px;
    min-height: auto;
  }
}
@media (max-width: 720px) {
  .featured-banner.featured-banner--in-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 22px;
  }
  .featured-banner.featured-banner--in-grid .featured-banner-art {
    order: -1;
    height: auto;
  }
  .featured-banner.featured-banner--in-grid .featured-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .featured-banner.featured-banner--in-grid .featured-cta-row {
    justify-content: center;
  }
}
@media (max-width: 640px) {
  .catalog { padding: 40px 0 64px; }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .product-card { border-radius: 18px; }
  .product-image { padding: 10px; }
  .product-image-inner { border-radius: 14px; }
  .product-info { padding: 4px 13px 14px; }
  .product-name { font-size: 0.9rem; }
  .product-desc {
    font-size: 0.74rem;
    margin-bottom: 10px;
    -webkit-line-clamp: 2;
  }
  .product-price { font-size: 0.98rem; }
  .btn-add { padding: 7px 11px; font-size: 0.72rem; gap: 4px; }
  .btn-add svg { width: 11px; height: 11px; }
  .product-brand-badge {
    font-size: 0.55rem;
    padding: 3px 8px;
    top: 10px; right: 10px;
  }
  .product-badge {
    font-size: 0.56rem;
    padding: 3px 9px;
    top: 10px; left: 10px;
  }
  .product-subcat { font-size: 0.56rem; }
  .product-emoji { font-size: 2.8rem; }
  .featured-banner.featured-banner--in-grid {
    padding: 22px 18px;
    border-radius: 20px;
    min-height: auto;
  }
  .featured-banner.featured-banner--in-grid .featured-emoji { font-size: 4.5rem; }
}
@media (max-width: 380px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .product-name { font-size: 0.85rem; }
}
