/* ============================================================
   PAGE — bebidas
   ============================================================ */

/* ── Hero overrides ── */
.page-hero {
  min-height: 46vh;
  background: linear-gradient(155deg, var(--blue-navy) 0%, var(--blue-deep) 55%, var(--blue-core) 100%);
}

.orb-a { width: 340px; height: 340px; top: -60px; right: -40px; background: rgba(132,197,248,.14); }
.orb-b { width: 200px; height: 200px; bottom: 0; left: -30px; background: rgba(87,127,205,.2); }

/* ── Category tabs ── */
.tab-bar {
  position: sticky;
  top: 57px;
  z-index: 50;
  background: var(--white);
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--mist);
  overflow-x: auto;
  scrollbar-width: none;
}
.tab-bar::-webkit-scrollbar { display: none; }

.tab-btn {
  flex-shrink: 0;
  padding: 16px 22px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--subtle);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
  font-family: var(--font-b);
}
.tab-btn.active { color: var(--ink); }

.tab-btn--creamy.active { color: #9c8cb9; border-bottom-color: #9c8cb9; }
.tab-btn--fruit.active  { color: #b90e0a; border-bottom-color: #b90e0a; }
.tab-btn--chill.active  { color: #dd9313; border-bottom-color: #dd9313; }

/* ── Category sections ── */
.cat-section { display: none; }
.cat-section.active { display: block; }

/* ── Category header ── */
.cat-header { position: relative; overflow: hidden; padding: 52px 24px 32px; }
.cat-header-inner { max-width: 860px; margin: 0 auto; position: relative; z-index: 1; }

.cat-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}

.cat-h2 {
  font-family: var(--font-d);
  font-size: clamp(2rem,6vw,3.2rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.cat-prices-label { display: flex; gap: 12px; margin-top: 16px; }

.size-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: 100px;
}

.cat-header--creamy { background: linear-gradient(135deg,#6b5f80,#9c8cb9); }
.cat-header--fruit  { background: linear-gradient(135deg,#8b0000,#b90e0a); }
.cat-header--chill  { background: linear-gradient(135deg,#a06a00,#dd9313); }

.cat-header-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  width: 280px;
  height: 280px;
  top: -60px;
  right: -40px;
  background: rgba(255,255,255,.08);
  filter: blur(60px);
}

/* ── Product list ── */
.prod-list { max-width: 860px; margin: 0 auto; padding: 8px 24px 64px; }

.prod-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(74,109,163,0.1);
}
.prod-row:last-of-type { border-bottom: none; }

.prod-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 5px;
}

.prod-dot--creamy { background: #9c8cb9; }
.prod-dot--fruit  { background: #b90e0a; }
.prod-dot--chill  { background: #dd9313; }

.prod-body { flex: 1; min-width: 0; }
.prod-name  { font-size: 0.98rem; font-weight: 600; color: var(--ink); display: block; margin-bottom: 4px; }
.prod-desc  { font-size: 0.83rem; font-weight: 300; color: var(--subtle); line-height: 1.5; display: block; margin-bottom: 6px; }
.prod-temps { font-size: 0.82rem; letter-spacing: 0.04em; }

.prod-prices {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.price-chip {
  font-family: var(--font-d);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue-deep);
  background: var(--off-white);
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

/* ── Note row ── */
.prod-note {
  padding: 16px 0 8px;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--subtle);
  display: flex;
  align-items: center;
  gap: 8px;
}
.prod-note::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--subtle);
  opacity: 0.4;
  flex-shrink: 0;
}

/* ── Adicionales ── */
.adicionales {
  margin-top: 8px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(74,109,163,0.12);
}

.adic-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 10px;
}

.adic-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(74,109,163,0.08);
}
.adic-row:last-child { border-bottom: none; padding-bottom: 0; }

.adic-name  { font-size: 0.85rem; font-weight: 500; color: var(--ink); }
.adic-price { font-family: var(--font-d); font-size: 0.85rem; font-weight: 700; color: var(--blue-deep); }

/* ── Sizes header row ── */
.sizes-header {
  display: flex;
  justify-content: flex-end;
  gap: 4px;
  padding: 20px 24px 4px;
  max-width: 860px;
  margin: 0 auto;
}
.sizes-header span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--subtle);
  width: 52px;
  text-align: center;
}
