/* =========================================================================
   CHIFA 99 — ESTILOS
   Paleta: rojo laca oscuro + negro + dorado + crema cálida
   Tipografía: Fraunces (display) + Manrope (interfaz / cuerpo)
   ========================================================================= */

@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  /* Color */
  --black: #100d0b;
  --charcoal: #1b1613;
  --charcoal-2: #241d19;
  --red: #7a1220;
  --red-bright: #a31d26;
  --red-deep: #4c0b14;
  --gold: #c9a24b;
  --gold-light: #e6cd8b;
  --cream: #f4ebda;
  --cream-dim: #d9c9ad;
  --cream-dimmer: #a99a80;

  /* Type */
  --font-display: "Fraunces", ui-serif, Georgia, serif;
  --font-body: "Manrope", ui-sans-serif, system-ui, sans-serif;

  /* Layout */
  --container: 1180px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --shadow-soft: 0 18px 40px -18px rgba(0, 0, 0, 0.55);
  --shadow-pop: 0 24px 60px -20px rgba(0, 0, 0, 0.65);
  --header-h: 68px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 14px); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Textura de fondo (papel oscuro sutil) ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  background-image: radial-gradient(circle at 1px 1px, rgba(244, 235, 218, 0.035) 1px, transparent 0);
  background-size: 26px 26px;
}

/* =========================================================================
   SELLO / MARCA — elemento firma (círculo laca con anillo dorado)
   ========================================================================= */
.seal {
  --seal-size: 44px;
  width: var(--seal-size);
  height: var(--seal-size);
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, var(--red-bright), var(--red) 55%, var(--red-deep) 100%);
  border: 1.5px solid var(--gold);
  display: grid;
  place-items: center;
  position: relative;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 3px rgba(201, 162, 75, 0.18), 0 6px 16px -6px rgba(0, 0, 0, 0.6);
}
.seal::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px solid rgba(230, 205, 139, 0.35);
}
.seal span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  transform: translateY(-0.5px);
}

/* =========================================================================
   BOTONES
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: linear-gradient(135deg, var(--red-bright), var(--red));
  color: var(--cream);
  box-shadow: 0 14px 30px -12px rgba(122, 18, 32, 0.7);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -12px rgba(163, 29, 38, 0.85); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #241407;
  box-shadow: 0 14px 30px -14px rgba(201, 162, 75, 0.6);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -14px rgba(230, 205, 139, 0.7); }
.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(244, 235, 218, 0.35);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn[disabled] { opacity: 0.45; pointer-events: none; }

.btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(244, 235, 218, 0.06);
  border: 1px solid rgba(244, 235, 218, 0.12);
  color: var(--cream);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn-icon:hover { background: rgba(201, 162, 75, 0.16); border-color: var(--gold); transform: translateY(-1px); }
.btn-icon svg { width: 19px; height: 19px; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 6vw, 42px);
  line-height: 1.12;
  color: var(--cream);
  margin-top: 10px;
}
.section-sub {
  color: var(--cream-dim);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 46ch;
  margin-top: 12px;
}
.section-head { margin-bottom: 34px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin-inline: auto; }

section { position: relative; z-index: 1; padding: 74px 0; }

/* Divisor oriental fino */
.divider-orient {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin: 0 auto 30px;
  width: fit-content;
}
.divider-orient::before,
.divider-orient::after {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.divider-orient::after { background: linear-gradient(90deg, var(--gold), transparent); }
.divider-orient i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: block;
}

/* =========================================================================
   REVEAL AL SCROLL
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.02s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.09s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.23s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.3s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.37s; }
.reveal-stagger.in > *:nth-child(n+7) { transition-delay: 0.42s; }

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(16, 13, 11, 0.35);
  backdrop-filter: blur(0px);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(16, 13, 11, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  border-color: rgba(201, 162, 75, 0.16);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.7);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.brand { display: flex; align-items: center; gap: 11px; }
.brand-word { font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: 0.01em; line-height: 1; }
.brand-word small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 9.5px; letter-spacing: 0.24em; color: var(--gold-light); margin-top: 3px; }

.nav-desktop { display: none; align-items: center; gap: 30px; }
.nav-desktop a {
  font-size: 14px;
  font-weight: 600;
  color: var(--cream-dim);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s var(--ease);
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-desktop a:hover { color: var(--cream); }
.nav-desktop a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.cart-btn { position: relative; }
.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 19px;
  height: 19px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--gold);
  color: #241407;
  font-size: 10.5px;
  font-weight: 800;
  display: grid;
  place-items: center;
  border: 2px solid var(--black);
  transform: scale(0);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cart-count.show { transform: scale(1); }
.cart-count.bump { animation: bump 0.4s var(--ease); }
@keyframes bump { 0% { transform: scale(1); } 40% { transform: scale(1.35); } 100% { transform: scale(1); } }

.hamburger { display: grid; }
.hamburger span {
  display: block;
  width: 19px;
  height: 2px;
  background: var(--cream);
  margin: 2.5px 0;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 55;
  background: linear-gradient(180deg, rgba(16,13,11,0.99), rgba(16,13,11,0.97));
  backdrop-filter: blur(10px);
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  padding: 30px 24px;
}
.nav-mobile.open { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-mobile ul { display: flex; flex-direction: column; gap: 4px; }
.nav-mobile a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 4px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  border-bottom: 1px solid rgba(244, 235, 218, 0.09);
  color: var(--cream);
}
.nav-mobile a svg { width: 16px; height: 16px; opacity: 0.5; }
.nav-mobile .btn { margin-top: 26px; }

@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .hamburger, .nav-mobile { display: none; }
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: hero-zoom 16s var(--ease) forwards;
  filter: saturate(1.05) contrast(1.03);
}
@keyframes hero-zoom { to { transform: scale(1); } }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16,13,11,0.55) 0%, rgba(16,13,11,0.35) 30%, rgba(16,13,11,0.88) 82%, rgba(16,13,11,0.98) 100%),
    linear-gradient(90deg, rgba(16,13,11,0.65) 0%, rgba(16,13,11,0.1) 45%, rgba(16,13,11,0.1) 100%);
}

/* vapor sutil */
.steam { position: absolute; z-index: 1; bottom: 30%; pointer-events: none; opacity: 0.5; mix-blend-mode: screen; }
.steam.s1 { left: 12%; width: 120px; }
.steam.s2 { left: 68%; width: 160px; animation-delay: -3s; }
.steam path { fill: none; stroke: rgba(244,235,218,0.5); stroke-width: 8; stroke-linecap: round; }
.steam { animation: steam-rise 9s ease-in-out infinite; }
@keyframes steam-rise {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  20% { opacity: 0.45; }
  100% { transform: translateY(-160px) scale(1.15); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 64px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px 7px 7px;
  border-radius: 999px;
  background: rgba(16,13,11,0.45);
  border: 1px solid rgba(201,162,75,0.4);
  backdrop-filter: blur(6px);
  margin-bottom: 22px;
  animation: fade-up 0.9s var(--ease) 0.15s both;
}
.hero-badge .seal { --seal-size: 26px; }
.hero-badge span { font-size: 11.5px; font-weight: 700; letter-spacing: 0.2em; color: var(--gold-light); }

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(38px, 9vw, 74px);
  line-height: 1.04;
  max-width: 15ch;
  color: var(--cream);
  animation: fade-up 0.9s var(--ease) 0.3s both;
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(120deg, var(--gold-light), var(--gold) 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-text {
  margin-top: 20px;
  max-width: 46ch;
  color: var(--cream-dim);
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.65;
  animation: fade-up 0.9s var(--ease) 0.45s both;
}
.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fade-up 0.9s var(--ease) 0.6s both;
}
@keyframes fade-up { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

.hero-scroll {
  position: absolute;
  right: 24px;
  bottom: 28px;
  z-index: 2;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--cream-dimmer);
  animation: fade-up 0.9s var(--ease) 0.8s both;
}
.hero-scroll span { font-size: 10px; letter-spacing: 0.2em; writing-mode: vertical-rl; }
.hero-scroll svg { width: 14px; height: 22px; animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@media (min-width: 780px) { .hero-scroll { display: flex; } }

/* =========================================================================
   BARRA DE BENEFICIOS
   ========================================================================= */
.benefits {
  padding: 0;
  transform: translateY(-1px);
  position: relative;
  z-index: 3;
}
.benefits-inner {
  background: linear-gradient(135deg, var(--red-deep), var(--red) 55%, var(--red-deep));
  border-top: 1px solid rgba(230,205,139,0.25);
  border-bottom: 1px solid rgba(0,0,0,0.3);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 780px) { .benefits-grid { grid-template-columns: repeat(4, 1fr); } }
.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 20px;
  border-right: 1px solid rgba(230,205,139,0.14);
  border-bottom: 1px solid rgba(230,205,139,0.14);
}
.benefit-item:nth-child(2n) { border-right: none; }
@media (min-width: 780px) {
  .benefit-item { border-bottom: none; }
  .benefit-item:nth-child(2n) { border-right: 1px solid rgba(230,205,139,0.14); }
  .benefit-item:last-child { border-right: none; }
}
.benefit-item svg { width: 22px; height: 22px; color: var(--gold-light); flex-shrink: 0; }
.benefit-item span { font-size: 12.5px; font-weight: 700; letter-spacing: 0.03em; color: var(--cream); }

/* =========================================================================
   TARJETAS DE PRODUCTO
   ========================================================================= */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 620px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .product-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }

.product-card {
  background: linear-gradient(180deg, var(--charcoal), var(--charcoal-2));
  border: 1px solid rgba(244,235,218,0.07);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  position: relative;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-pop); border-color: rgba(201,162,75,0.35); }

.product-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--charcoal-2); }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.product-card:hover .product-media img { transform: scale(1.08); }
.product-media.no-image { display: grid; place-items: center; }
.product-media.no-image svg { width: 44px; height: 44px; color: rgba(201,162,75,0.5); }

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(16,13,11,0.72);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(201,162,75,0.4);
  color: var(--gold-light);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}

.product-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-name { font-family: var(--font-display); font-weight: 600; font-size: 18.5px; line-height: 1.25; color: var(--cream); }
.product-desc { font-size: 13.5px; line-height: 1.55; color: var(--cream-dim); flex: 1; }
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 4px; }
.product-price { font-family: var(--font-display); font-weight: 600; font-size: 19px; color: var(--gold-light); }

.add-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(201,162,75,0.12);
  border: 1px solid rgba(201,162,75,0.45);
  color: var(--gold-light);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), color 0.3s var(--ease);
}
.add-btn svg { width: 15px; height: 15px; }
.add-btn:hover { background: var(--gold); color: #241407; transform: translateY(-1px); }
.add-btn.added { background: var(--gold); color: #241407; }
.add-btn.pulse { animation: add-pulse 0.5s var(--ease); }
@keyframes add-pulse { 0% { transform: scale(1); } 45% { transform: scale(0.9); } 100% { transform: scale(1); } }

/* =========================================================================
   FAVORITOS (carrusel horizontal en móvil)
   ========================================================================= */
.favorites-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 6px 4px 22px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.favorites-scroll::-webkit-scrollbar { display: none; }
.favorites-scroll .product-card { min-width: 78vw; scroll-snap-align: start; }
@media (min-width: 620px) { .favorites-scroll .product-card { min-width: 320px; } }
@media (min-width: 1000px) {
  .favorites-scroll { overflow: visible; display: grid; grid-template-columns: repeat(4, 1fr); padding: 0; }
  .favorites-scroll .product-card { min-width: 0; }
}

/* =========================================================================
   MENÚ — FILTROS / CATEGORÍAS
   ========================================================================= */
.menu-filters {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 4px 26px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.menu-filters::-webkit-scrollbar { display: none; }
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(244,235,218,0.16);
  background: rgba(244,235,218,0.03);
  color: var(--cream-dim);
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
  flex-shrink: 0;
}
.filter-chip svg { width: 15px; height: 15px; }
.filter-chip:hover { border-color: rgba(201,162,75,0.5); color: var(--cream); }
.filter-chip.active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: var(--gold);
  color: #241407;
  transform: translateY(-1px);
}

.menu-panel { display: none; }
.menu-panel.active { display: block; animation: panel-in 0.45s var(--ease); }
@keyframes panel-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* =========================================================================
   PROMOCIONES
   ========================================================================= */
.promo-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 780px) { .promo-grid { grid-template-columns: repeat(3, 1fr); } }
.promo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  border: 1px solid rgba(201,162,75,0.2);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.promo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-pop); }
.promo-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 0.7s var(--ease); }
.promo-card:hover img { transform: scale(1.06); }
.promo-card::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(16,13,11,0.15) 0%, rgba(16,13,11,0.55) 55%, rgba(16,13,11,0.95) 100%);
}
.promo-content { position: relative; z-index: 2; }
.promo-tag { font-size: 11.5px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); }
.promo-name { font-family: var(--font-display); font-size: 25px; font-weight: 600; margin-top: 6px; color: var(--cream); }
.promo-desc { font-size: 13.5px; color: var(--cream-dim); margin-top: 8px; line-height: 1.5; }
.promo-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; }
.promo-price { font-family: var(--font-display); font-size: 21px; color: var(--gold-light); font-weight: 600; }

/* =========================================================================
   NOSOTROS
   ========================================================================= */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 60px; } }
.about-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,13,11,0) 55%, rgba(16,13,11,0.65) 100%);
}
.about-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(19px, 3vw, 24px);
  line-height: 1.5;
  color: var(--cream);
  margin: 20px 0 22px;
}
.about-quote::before { content: "“"; color: var(--gold); }
.about-quote::after { content: "”"; color: var(--gold); }
.about-stats { display: flex; gap: 28px; margin-top: 26px; flex-wrap: wrap; }
.about-stat b { display: block; font-family: var(--font-display); font-size: 26px; color: var(--gold-light); font-weight: 600; }
.about-stat span { font-size: 12px; color: var(--cream-dim); }

/* =========================================================================
   GALERÍA
   ========================================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 700px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.gallery-item:nth-child(4n+1) { aspect-ratio: 1/1.25; }
@media (min-width: 700px) { .gallery-item:nth-child(4n+1) { grid-row: span 2; aspect-ratio: 1/2.15; } }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(16,13,11,0.85));
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-cap {
  position: absolute;
  left: 12px;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  font-size: 12px;
  font-weight: 700;
  color: var(--cream);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.gallery-item:hover .gallery-cap { opacity: 1; transform: translateY(0); }

/* =========================================================================
   UBICACIÓN
   ========================================================================= */
.location-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
@media (min-width: 900px) { .location-grid { grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: stretch; } }
.location-map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
  background:
    radial-gradient(circle at 30% 30%, rgba(201,162,75,0.18), transparent 55%),
    repeating-linear-gradient(0deg, rgba(244,235,218,0.05) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(90deg, rgba(244,235,218,0.05) 0 1px, transparent 1px 42px),
    var(--charcoal);
  border: 1px solid rgba(201,162,75,0.2);
  display: grid;
  place-items: center;
}
.location-pin { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.location-pin svg { width: 40px; height: 40px; color: var(--red-bright); filter: drop-shadow(0 8px 16px rgba(122,18,32,0.6)); animation: pin-float 2.6s ease-in-out infinite; }
@keyframes pin-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.location-pin span { font-size: 13px; font-weight: 700; color: var(--cream); background: rgba(16,13,11,0.6); padding: 6px 14px; border-radius: 999px; border: 1px solid rgba(201,162,75,0.3); }

.info-card {
  background: linear-gradient(180deg, var(--charcoal), var(--charcoal-2));
  border: 1px solid rgba(244,235,218,0.08);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}
.info-row { display: flex; gap: 14px; align-items: flex-start; }
.info-row svg { width: 20px; height: 20px; color: var(--gold-light); flex-shrink: 0; margin-top: 2px; }
.info-row b { display: block; font-size: 14px; color: var(--cream); }
.info-row p { font-size: 13.5px; color: var(--cream-dim); margin-top: 2px; line-height: 1.5; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { background: var(--charcoal); border-top: 1px solid rgba(201,162,75,0.16); padding: 56px 0 26px; }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 34px; }
@media (min-width: 780px) { .footer-top { grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; } }
.footer-brand p { color: var(--cream-dim); font-size: 13.5px; line-height: 1.6; margin-top: 14px; max-width: 34ch; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-col b { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); }
.footer-col ul { margin-top: 14px; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 13.5px; color: var(--cream-dim); transition: color 0.25s var(--ease); }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(244,235,218,0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--cream-dimmer);
}

/* =========================================================================
   ETIQUETA DEMO
   ========================================================================= */
.demo-flag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(201,162,75,0.1);
  border: 1px dashed rgba(201,162,75,0.5);
  padding: 6px 12px;
  border-radius: 999px;
}
.demo-flag svg { width: 13px; height: 13px; }

/* =========================================================================
   CARRITO (panel lateral)
   ========================================================================= */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16,13,11,0.6);
  backdrop-filter: blur(2px);
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.cart-overlay.open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100%);
  z-index: 81;
  background: var(--charcoal);
  border-left: 1px solid rgba(201,162,75,0.22);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  box-shadow: -30px 0 60px -20px rgba(0,0,0,0.6);
}
.cart-drawer.open { transform: translateX(0); }

.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid rgba(244,235,218,0.08); }
.cart-head h3 { font-family: var(--font-display); font-size: 21px; font-weight: 600; }
.cart-head .demo-flag { margin-top: 4px; }

.cart-items { flex: 1; overflow-y: auto; padding: 14px 18px; display: flex; flex-direction: column; gap: 14px; }
.cart-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 16px; padding: 30px; }
.cart-empty svg { width: 62px; height: 62px; color: rgba(201,162,75,0.4); }
.cart-empty p { color: var(--cream-dim); font-size: 14px; max-width: 24ch; }

.cart-item {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 12px;
  padding: 12px;
  background: rgba(244,235,218,0.03);
  border: 1px solid rgba(244,235,218,0.06);
  border-radius: var(--radius-sm);
  animation: item-in 0.35s var(--ease);
}
@keyframes item-in { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: translateX(0); } }
.cart-item.removing { animation: item-out 0.3s var(--ease) forwards; }
@keyframes item-out { to { opacity: 0; transform: translateX(30px) scale(0.9); height: 0; margin: 0; padding: 0; } }

.cart-thumb { width: 58px; height: 58px; border-radius: 8px; overflow: hidden; background: var(--charcoal-2); }
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-thumb.no-image { display: grid; place-items: center; }
.cart-thumb.no-image svg { width: 22px; height: 22px; color: rgba(201,162,75,0.5); }
.cart-info b { font-size: 13.5px; font-weight: 700; color: var(--cream); display: block; }
.cart-info .cart-item-price { font-size: 12.5px; color: var(--gold-light); margin-top: 3px; display: block; }
.cart-qty { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.qty-btn {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(244,235,218,0.07); border: 1px solid rgba(244,235,218,0.15);
  color: var(--cream); display: grid; place-items: center; font-size: 14px; font-weight: 700;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.qty-btn:hover { background: var(--gold); color: #241407; border-color: var(--gold); }
.qty-val { font-size: 13px; font-weight: 700; min-width: 16px; text-align: center; }
.cart-item-end { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
.remove-btn { color: var(--cream-dimmer); transition: color 0.2s var(--ease); }
.remove-btn:hover { color: var(--red-bright); }
.remove-btn svg { width: 16px; height: 16px; }
.line-total { font-size: 13px; font-weight: 700; color: var(--cream); }

.cart-summary { padding: 18px 22px 22px; border-top: 1px solid rgba(244,235,218,0.08); background: var(--charcoal); }
.summary-row { display: flex; justify-content: space-between; font-size: 13.5px; color: var(--cream-dim); padding: 5px 0; }
.summary-row.total { font-size: 17px; font-weight: 700; color: var(--cream); padding-top: 12px; margin-top: 6px; border-top: 1px dashed rgba(244,235,218,0.15); }
.summary-row.total span:last-child { color: var(--gold-light); font-family: var(--font-display); font-size: 20px; }

/* =========================================================================
   MODALES
   ========================================================================= */
.modal-overlay {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(16,13,11,0.72);
  backdrop-filter: blur(3px);
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
  padding: 0;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
@media (min-width: 700px) { .modal-overlay { align-items: center; padding: 24px; } }

.modal-box {
  background: var(--charcoal);
  border: 1px solid rgba(201,162,75,0.22);
  width: 100%;
  max-width: 520px;
  max-height: 92svh;
  overflow-y: auto;
  border-radius: 22px 22px 0 0;
  transform: translateY(40px);
  transition: transform 0.4s var(--ease);
  box-shadow: var(--shadow-pop);
}
.modal-overlay.open .modal-box { transform: translateY(0); }
@media (min-width: 700px) { .modal-box { border-radius: var(--radius-lg); transform: translateY(20px) scale(0.97); } }

.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 5;
}
.modal-head-img { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.modal-head-img img { width: 100%; height: 100%; object-fit: cover; }
.modal-head-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,13,11,0) 60%, var(--charcoal)); }
.modal-body { padding: 24px 26px 28px; }
.modal-title { font-family: var(--font-display); font-size: 24px; font-weight: 600; }
.modal-desc { color: var(--cream-dim); font-size: 14px; line-height: 1.6; margin-top: 10px; }
.modal-list { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.modal-list li { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--cream-dim); }
.modal-list svg { width: 15px; height: 15px; color: var(--gold-light); flex-shrink: 0; }
.modal-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 22px; gap: 14px; }

/* Formularios dentro de modales (checkout) */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12.5px; font-weight: 700; color: var(--cream-dim); margin-bottom: 7px; letter-spacing: 0.02em; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(244,235,218,0.04);
  border: 1px solid rgba(244,235,218,0.15);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--cream-dimmer); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); background: rgba(244,235,218,0.07); outline: none; }
.form-input.error { border-color: var(--red-bright); }
.form-error { font-size: 11.5px; color: #e08a8a; margin-top: 6px; display: none; }
.form-error.show { display: block; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.option-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.option-tab {
  padding: 13px; text-align: center; border-radius: 12px;
  border: 1px solid rgba(244,235,218,0.15); background: rgba(244,235,218,0.03);
  font-size: 13px; font-weight: 700; color: var(--cream-dim);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  transition: all 0.25s var(--ease);
}
.option-tab svg { width: 18px; height: 18px; }
.option-tab.active { border-color: var(--gold); background: rgba(201,162,75,0.14); color: var(--gold-light); }

.payment-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 6px; }
.payment-option {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 14px; border-radius: 12px;
  border: 1px solid rgba(244,235,218,0.15); background: rgba(244,235,218,0.03);
  transition: all 0.25s var(--ease);
}
.payment-option svg { width: 20px; height: 20px; color: var(--cream-dim); }
.payment-option span { font-size: 13.5px; font-weight: 600; flex: 1; }
.payment-option input { accent-color: var(--gold); width: 17px; height: 17px; }
.payment-option.active { border-color: var(--gold); background: rgba(201,162,75,0.1); }
.payment-option.active svg { color: var(--gold-light); }

.step-progress { display: flex; align-items: center; gap: 6px; padding: 20px 26px 0; }
.step-dot { flex: 1; height: 3px; border-radius: 3px; background: rgba(244,235,218,0.1); overflow: hidden; }
.step-dot i { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transition: width 0.4s var(--ease); }
.step-dot.done i { width: 100%; }
.step-dot.active i { width: 100%; }

.checkout-summary-mini { background: rgba(244,235,218,0.04); border: 1px solid rgba(244,235,218,0.1); border-radius: 12px; padding: 14px 16px; margin: 18px 0; }
.checkout-summary-mini .summary-row { padding: 4px 0; font-size: 13px; }

/* Pantalla de confirmación */
.confirm-wrap { text-align: center; padding: 10px 4px 4px; }
.confirm-icon {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 20px;
  background: radial-gradient(circle at 32% 28%, var(--red-bright), var(--red-deep));
  border: 2px solid var(--gold);
  display: grid; place-items: center;
  animation: confirm-pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes confirm-pop { from { transform: scale(0.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.confirm-icon svg { width: 38px; height: 38px; color: var(--gold-light); }
.confirm-order-num {
  display: inline-block; margin: 14px 0 4px;
  font-family: var(--font-display); font-size: 30px; font-weight: 700;
  letter-spacing: 0.03em; color: var(--gold-light);
}
.confirm-list { text-align: left; margin: 22px 0; background: rgba(244,235,218,0.04); border: 1px solid rgba(244,235,218,0.1); border-radius: 12px; padding: 16px; }
.confirm-list .summary-row { font-size: 13px; }

/* =========================================================================
   TOAST
   ========================================================================= */
.toast-wrap { position: fixed; top: calc(var(--header-h) + 12px); left: 50%; transform: translateX(-50%); z-index: 95; display: flex; flex-direction: column; gap: 8px; align-items: center; pointer-events: none; }
.toast {
  display: flex; align-items: center; gap: 10px;
  background: rgba(27,22,19,0.96);
  border: 1px solid rgba(201,162,75,0.4);
  color: var(--cream);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  animation: toast-in 0.4s var(--ease), toast-out 0.4s var(--ease) 2.1s forwards;
}
.toast svg { width: 17px; height: 17px; color: var(--gold-light); flex-shrink: 0; }
@keyframes toast-in { from { opacity: 0; transform: translateY(-12px) scale(0.92); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes toast-out { to { opacity: 0; transform: translateY(-10px) scale(0.95); } }

/* =========================================================================
   BOTÓN FLOTANTE CARRITO (móvil)
   ========================================================================= */
.fab-cart {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 20px 14px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red-bright), var(--red));
  color: var(--cream);
  box-shadow: 0 16px 34px -12px rgba(122,18,32,0.75);
  font-size: 13.5px;
  font-weight: 800;
  transform: translateY(120%);
  transition: transform 0.45s var(--ease);
}
.fab-cart.show { transform: translateY(0); }
.fab-cart svg { width: 18px; height: 18px; }
.fab-cart b { background: rgba(16,13,11,0.35); border-radius: 999px; padding: 2px 8px; font-size: 12px; }
@media (min-width: 900px) { .fab-cart { display: none; } }

/* Lazy fade para imágenes */
img.lazy-img { opacity: 0; transition: opacity 0.5s var(--ease); }
img.lazy-img.loaded { opacity: 1; }

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

.footer-admin-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: var(--cream-dimmer);
  transition: color 0.25s var(--ease);
}
.footer-admin-link svg { width: 14px; height: 14px; }
.footer-admin-link:hover { color: var(--gold-light); }

/* =========================================================================
   PANEL DEL DUEÑO (admin.html)
   ========================================================================= */
.admin-body { background: var(--black); }

.admin-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(16,13,11,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,162,75,0.18);
  padding: 14px 0;
}
.admin-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.admin-header-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--cream-dim);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(244,235,218,0.14);
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #6fbf73;
  box-shadow: 0 0 0 0 rgba(111,191,115,0.6);
  animation: live-pulse 2s ease-in-out infinite;
}
.live-dot.ping { animation: live-flash 0.9s var(--ease); }
@keyframes live-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(111,191,115,0.5); } 50% { box-shadow: 0 0 0 6px rgba(111,191,115,0); } }
@keyframes live-flash { 0% { transform: scale(1); background: #6fbf73; } 35% { transform: scale(1.8); background: var(--gold-light); } 100% { transform: scale(1); background: #6fbf73; } }

#soundToggle { display: inline-flex; align-items: center; gap: 8px; }
#soundToggle svg { width: 16px; height: 16px; }
#soundToggle.muted { border-color: rgba(244,235,218,0.15); color: var(--cream-dimmer); }

.admin-main { padding: 34px 20px 90px; max-width: 980px; }
.admin-intro { max-width: 62ch; }
.admin-intro p a { font-weight: 700; }

.admin-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 28px 0 26px;
}
@media (min-width: 720px) { .admin-stats { grid-template-columns: repeat(5, 1fr); } }
.admin-stat {
  background: linear-gradient(180deg, var(--charcoal), var(--charcoal-2));
  border: 1px solid rgba(244,235,218,0.08);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  text-align: center;
}
.admin-stat b { display: block; font-family: var(--font-display); font-size: 26px; font-weight: 600; color: var(--cream); }
.admin-stat span { font-size: 11.5px; color: var(--cream-dim); letter-spacing: 0.02em; }
.admin-stat.gold b { color: var(--gold-light); }

.admin-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.admin-toolbar b { font-family: var(--font-display); font-size: 19px; font-weight: 600; }

.orders-board { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 720px) { .orders-board { grid-template-columns: repeat(2, 1fr); } }

.admin-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 24px;
  border: 1px dashed rgba(244,235,218,0.16);
  border-radius: var(--radius-lg);
}
.admin-empty svg { width: 50px; height: 50px; color: rgba(201,162,75,0.5); margin-bottom: 14px; }
.admin-empty p { color: var(--cream-dim); font-size: 14px; margin-top: 6px; }
.admin-empty-sub { font-size: 12.5px !important; max-width: 44ch; margin: 8px auto 0 !important; }

.order-card {
  background: linear-gradient(180deg, var(--charcoal), var(--charcoal-2));
  border: 1px solid rgba(244,235,218,0.08);
  border-left: 3px solid rgba(244,235,218,0.15);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.order-card.status-nuevo { border-left-color: var(--red-bright); }
.order-card.status-preparando { border-left-color: var(--gold); }
.order-card.status-listo { border-left-color: #6fbf73; }
.order-card.status-entregado { border-left-color: rgba(244,235,218,0.15); opacity: 0.65; }
.order-card.is-new { animation: order-in 0.6s var(--ease); box-shadow: 0 0 0 2px rgba(201,162,75,0.5), var(--shadow-pop); }
@keyframes order-in { from { opacity: 0; transform: translateY(-14px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }

.order-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.order-number { display: block; font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--cream); }
.order-time { display: block; font-size: 11.5px; color: var(--cream-dimmer); margin-top: 2px; }

.status-badge {
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px; white-space: nowrap;
}
.status-badge.status-nuevo { background: rgba(163,29,38,0.18); color: #f1a3a3; border: 1px solid rgba(163,29,38,0.5); }
.status-badge.status-preparando { background: rgba(201,162,75,0.16); color: var(--gold-light); border: 1px solid rgba(201,162,75,0.5); }
.status-badge.status-listo { background: rgba(111,191,115,0.16); color: #a7dba9; border: 1px solid rgba(111,191,115,0.5); }
.status-badge.status-entregado { background: rgba(244,235,218,0.06); color: var(--cream-dimmer); border: 1px solid rgba(244,235,218,0.15); }

.order-meta { display: flex; flex-wrap: wrap; gap: 12px; }
.order-meta span { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--cream-dim); }
.order-meta svg { width: 14px; height: 14px; color: var(--gold-light); }

.order-customer { font-size: 12.5px; color: var(--cream-dim); background: rgba(244,235,218,0.03); border-radius: 10px; padding: 10px 12px; display: flex; flex-direction: column; gap: 2px; }
.order-customer b { color: var(--cream); font-size: 13px; }

.order-items { display: flex; flex-direction: column; gap: 4px; border-top: 1px dashed rgba(244,235,218,0.12); border-bottom: 1px dashed rgba(244,235,218,0.12); padding: 10px 0; }
.order-line { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--cream-dim); }

.order-total-row { display: flex; justify-content: space-between; font-weight: 700; font-size: 14.5px; color: var(--cream); }
.order-total-row span:last-child { color: var(--gold-light); font-family: var(--font-display); font-size: 17px; }

.order-actions { display: flex; }
.order-done { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 700; color: #a7dba9; }
.order-done svg { width: 16px; height: 16px; }
