/* ╔══════════════════════════════════════════════════════════════╗
   ║  NEKO RAMEN — STYLE GOD-LEVEL v2.0                          ║
   ╚══════════════════════════════════════════════════════════════╝ */

/* ── TOKENS ─────────────────────────────────────────────────────── */
:root {
  --void:      #090807;
  --ink:       #171313;
  --ink-2:     #2a2424;
  --red:       #d92b1f;
  --red-2:     #f04a2f;
  --gold:      #d69a37;
  --gold-2:    #f6b446;
  --cream:     #fbf5eb;
  --paper:     #fffaf3;
  --muted:     #7b6d66;
  --line:      rgba(34,24,22,.09);
  --shadow:    0 20px 60px rgba(48,28,20,.14);
  --shadow-lg: 0 40px 100px rgba(20,10,8,.22);
  --r:         26px;
  --r-lg:      36px;
}

/* ── RESET & BASE ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  background: radial-gradient(circle at 10% 0%, rgba(214,154,55,.14) 0%, transparent 28%),
              linear-gradient(180deg, #fffaf3 0%, #f6eee4 70%, #f2e8de 100%);
  color: var(--ink);
  font-family: Manrope, system-ui, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}
/* Grain texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9001;
  pointer-events: none;
  opacity: .032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px;
}
button, a, input, textarea { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }
.is-hidden { opacity: 0 !important; pointer-events: none !important; }

/* ═══════════════════════════════════════════════════════════════
   SPLASH CINEMATOGRÁFICO
═══════════════════════════════════════════════════════════════ */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #060504;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity .7s ease, transform .7s ease;
}
.splash.exit {
  opacity: 0;
  transform: scale(1.035);
  pointer-events: none;
}

/* Barras cinemáticas */
.splash-bar {
  position: absolute;
  left: 0; right: 0;
  height: 64px;
  background: #000;
  z-index: 2;
  transition: transform 1s cubic-bezier(.77,0,.18,1);
}
.splash-bar--top { top: 0; }
.splash-bar--bot { bottom: 0; }
.splash.bars-open .splash-bar--top { transform: translateY(-100%); }
.splash.bars-open .splash-bar--bot { transform: translateY(100%); }

/* Canvas de partículas */
.splash-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Orbes de luz de fondo */
.splash-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.4s ease;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.splash-glow--red {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(217,43,31,.32), transparent 68%);
}
.splash-glow--gold {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(214,154,55,.22), transparent 68%);
  transition-delay: .4s;
}
.splash.glowing .splash-glow--red,
.splash.glowing .splash-glow--gold { opacity: 1; }

/* Kanji gigante de fondo */
.splash-kanji {
  position: absolute;
  font-size: min(62vw, 380px);
  color: rgba(255,255,255,.022);
  font-weight: 900;
  user-select: none;
  z-index: 1;
  top: 50%; left: 50%;
  transform: translate(-50%, -48%);
  line-height: 1;
  letter-spacing: -.05em;
  pointer-events: none;
}

/* Contenido central */
.splash-center {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

/* Frame del logo */
.splash-logo-frame {
  position: relative;
  width: min(62vw, 240px);
  height: min(62vw, 240px);
}
.splash-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
}
.splash-ring.r1 {
  width: 100%; height: 100%;
  border: 1.5px solid rgba(214,154,55,.5);
}
.splash-ring.r2 {
  width: 135%; height: 135%;
  border: 1px solid rgba(217,43,31,.3);
}
.splash-ring.r3 {
  width: 170%; height: 170%;
  border: 1px solid rgba(255,255,255,.08);
}
.splash-ring.expand {
  animation: ring-expand 1.4s cubic-bezier(.22,1,.36,1) forwards;
}
.splash-ring.r2.expand { animation-delay: .18s; }
.splash-ring.r3.expand { animation-delay: .36s; }
@keyframes ring-expand {
  0% { transform: translate(-50%,-50%) scale(0.3); opacity: .9; }
  100% { transform: translate(-50%,-50%) scale(1.8); opacity: 0; }
}

.splash-logo {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 36px;
  box-shadow: 0 50px 120px rgba(0,0,0,.6), 0 0 80px rgba(217,43,31,.18);
  opacity: 0;
  transform: scale(.55) translateY(24px);
  transition: opacity 1s cubic-bezier(.34,1.56,.64,1),
              transform 1s cubic-bezier(.34,1.56,.64,1);
}
.splash-logo.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Texto */
.splash-copy { text-align: center; }
.splash-title {
  display: flex;
  gap: .06em;
  justify-content: center;
  font-size: clamp(26px, 8vw, 50px);
  font-weight: 800;
  color: #fff;
  letter-spacing: .14em;
  text-transform: uppercase;
  overflow: hidden;
  line-height: 1.1;
}
.splash-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%);
  transition: opacity .45s ease,
              transform .55s cubic-bezier(.34,1.56,.64,1);
}
.splash-title span.on { opacity: 1; transform: translateY(0); }

.splash-sub {
  margin-top: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s ease .15s, transform .6s ease .15s;
}
.splash-sub.on { opacity: 1; transform: translateY(0); }

/* Barra de progreso */
.splash-loader-wrap {
  position: absolute;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px; height: 2px;
  background: rgba(255,255,255,.08);
  border-radius: 99px;
  overflow: hidden;
  z-index: 3;
}
.splash-loader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 99px;
  transition: width .12s linear;
}

/* Botón skip */
.splash-skip {
  position: absolute;
  bottom: 24px;
  right: 20px;
  z-index: 4;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.45);
  border-radius: 99px;
  padding: 7px 14px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease, color .2s;
}
.splash-skip.visible { opacity: 1; pointer-events: all; }
.splash-skip:hover { color: rgba(255,255,255,.8); }

/* ═══════════════════════════════════════════════════════════════
   APP SHELL
═══════════════════════════════════════════════════════════════ */
.app-shell {
  max-width: 560px;
  margin: auto;
  min-height: 100vh;
  padding: calc(12px + env(safe-area-inset-top)) 15px
           calc(108px + env(safe-area-inset-bottom));
  transition: opacity .45s ease;
  position: relative;
}

/* Cortina de transición entre vistas */
.page-veil {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.page-veil.active { opacity: 1; pointer-events: all; }

/* ── TOP BAR ─────────────────────────────────────────────────── */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 4px 0 20px;
}
.brand {
  border: 0;
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  color: var(--ink);
}
.brand img {
  width: 48px; height: 48px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 7px 20px rgba(40,24,20,.13);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.brand:hover img { transform: scale(1.1) rotate(-4deg); }
.brand strong { display: block; font-size: 15px; font-weight: 800; }
.brand small  { display: block; color: var(--muted); font-size: 10px; margin-top: 2px; }
.admin-mini {
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255,255,255,.72);
  color: #756861;
  font-size: 15px;
  transition: transform .35s ease, background .2s, color .2s;
}
.admin-mini:hover { background: var(--ink); color: #fff; transform: rotate(90deg) scale(1.05); }

/* ── VIEWS ──────────────────────────────────────────────────── */
.view { display: none; }
.view.active {
  display: block;
  animation: view-in .38s cubic-bezier(.22,1,.36,1);
}
@keyframes view-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── HERO CARD ──────────────────────────────────────────────── */
.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 365px;
  padding: 30px;
  border-radius: var(--r-lg);
  background:
    radial-gradient(ellipse at 85% 40%, rgba(217,43,31,.22), transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(214,154,55,.12), transparent 50%),
    linear-gradient(145deg, #0e0a0a 0%, #1c1008 60%, #160c08 100%);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(214,154,55,.1);
  color: #fff;
}
/* Trama sutil tipo papel japonés */
.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.016) 0px, transparent 1px, transparent 22px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.016) 0px, transparent 1px, transparent 22px);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 50%, rgba(217,43,31,.16), transparent 48%),
    radial-gradient(circle at 18% 78%, rgba(214,154,55,.1), transparent 45%);
  pointer-events: none;
}
/* Wisps de vapor */
.hero-steam {
  position: absolute;
  bottom: 28px; right: 10px;
  width: 200px; height: 200px;
  pointer-events: none;
  z-index: 1;
}
.hero-steam b {
  position: absolute;
  bottom: 0;
  border-radius: 99px;
  background: rgba(255,248,240,.11);
  filter: blur(5px);
  animation: steam-rise var(--d,3s) var(--dl,0s) ease-in-out infinite;
}
.hero-steam b:nth-child(1){width:5px;height:45px;left:28px; --d:2.9s;--dl:0.0s}
.hero-steam b:nth-child(2){width:7px;height:58px;left:60px; --d:3.4s;--dl:0.6s}
.hero-steam b:nth-child(3){width:5px;height:40px;left:92px; --d:2.7s;--dl:1.1s}
.hero-steam b:nth-child(4){width:6px;height:52px;left:124px;--d:3.1s;--dl:0.3s}
.hero-steam b:nth-child(5){width:4px;height:34px;left:156px;--d:3.8s;--dl:1.6s}
@keyframes steam-rise {
  0%   { transform: translateY(0) scaleX(.7); opacity: 0; }
  12%  { opacity: .7; }
  68%  { opacity: .25; }
  100% { transform: translateY(-95px) scaleX(3.2); opacity: 0; }
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 290px;
}
.eyebrow {
  font-size: 8.5px;
  letter-spacing: .18em;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
}
.hero-card h1 {
  font-size: clamp(27px, 7vw, 34px);
  line-height: 1.04;
  margin: 13px 0 12px;
  letter-spacing: -.04em;
  font-weight: 800;
}
.hero-card h1 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--gold-2);
  font-weight: 700;
}
.hero-card p {
  color: rgba(220,205,195,.78);
  font-size: 12.5px;
  line-height: 1.62;
}

.hero-logo-wrap {
  position: absolute;
  width: 172px; height: 172px;
  right: -8px; bottom: -14px;
  z-index: 2;
}
.hero-logo-ring {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1.5px dashed rgba(214,154,55,.22);
  animation: spin-slow 12s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
.hero-logo {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid rgba(255,255,255,.06);
  box-shadow: -14px -14px 45px rgba(0,0,0,.22), 0 0 35px rgba(214,154,55,.13);
  animation: hero-float 4.5s ease-in-out infinite;
}
@keyframes hero-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}

/* ── QUICK GRID ──────────────────────────────────────────────── */
.quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px 0 26px;
}
.quick-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(30,22,20,.07);
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 24px;
  min-height: 122px;
  padding: 16px;
  text-align: left;
  box-shadow: 0 8px 28px rgba(48,32,24,.06);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1),
              box-shadow .3s ease;
}
/* Capa shimmer */
.quick-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,transparent 30%,rgba(255,255,255,.5) 50%,transparent 70%);
  transform: translateX(-120%);
  pointer-events: none;
  border-radius: inherit;
  z-index: 1;
}
.quick-card:hover::before {
  animation: shimmer-sweep .5s ease forwards;
}
@keyframes shimmer-sweep { to { transform: translateX(200%); } }
.quick-card:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: 0 20px 50px rgba(48,32,24,.12);
}
.quick-card:active { transform: scale(.96); transition-duration: .1s; }

.qc-icon {
  font-size: 26px;
  line-height: 1;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
  position: relative;
  z-index: 2;
}
.quick-card:hover .qc-icon { transform: scale(1.22) rotate(-6deg); }
.qc-text { position: relative; z-index: 2; }
.qc-text b { display: block; font-size: 13.5px; font-weight: 700; }
.qc-text small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  margin-top: 4px;
  line-height: 1.35;
}
.qc-arrow {
  font-style: normal;
  color: #b09088;
  font-size: 16px;
  position: relative;
  z-index: 2;
  transition: transform .3s ease;
}
.quick-card:hover .qc-arrow { transform: translateX(5px); }

/* Onda ripple al click */
.ripple-wave {
  position: absolute;
  border-radius: 50%;
  background: rgba(217,43,31,.13);
  transform: scale(0);
  animation: ripple-out .6s ease-out forwards;
  pointer-events: none;
  z-index: 0;
}
@keyframes ripple-out { to { transform: scale(1); opacity: 0; } }

/* ── FEATURED ────────────────────────────────────────────────── */
.featured { margin-top: 4px; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 13px;
}
.section-head h2, .section-title h2 {
  margin: 5px 0 0;
  font-size: 23px;
  letter-spacing: -.03em;
  font-weight: 800;
}
.price-chip {
  background: var(--ink);
  color: #fff;
  border-radius: 99px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
  animation: chip-pulse 2.8s ease-in-out infinite;
}
@keyframes chip-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(217,43,31,.4); }
  50%      { box-shadow: 0 0 0 9px rgba(217,43,31,0); }
}
.featured-media {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
  cursor: pointer;
}
.featured-media:hover { transform: scale(1.018); }
.featured-media img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  transition: transform .6s ease;
}
.featured-media:hover img { transform: scale(1.06); }
.featured-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,6,4,.52) 0%, transparent 55%);
  pointer-events: none;
}
.floating-badge {
  position: absolute;
  left: 14px; bottom: 14px;
  background: rgba(255,250,243,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 99px;
  padding: 9px 15px;
  font-size: 10px;
  font-weight: 800;
  box-shadow: 0 5px 18px rgba(0,0,0,.14);
  animation: badge-bob 3.5s ease-in-out infinite;
}
@keyframes badge-bob {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* ── SECTION TITLE ───────────────────────────────────────────── */
.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0 20px;
}
.back {
  flex-shrink: 0;
  border: 0;
  width: 45px; height: 45px;
  border-radius: 15px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 8px 25px rgba(44,27,19,.08);
  font-size: 18px;
  color: var(--ink);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1),
              background .2s, color .2s;
}
.back:hover {
  transform: scale(1.1) translateX(-3px);
  background: var(--ink);
  color: #fff;
}

/* ── CATALOG GRID ────────────────────────────────────────────── */
.catalog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
  box-shadow: 0 10px 32px rgba(50,32,22,.07);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(50,32,22,.14);
}
.product-card img {
  height: 148px;
  width: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.product-card:hover img { transform: scale(1.09); }
.product-info { padding: 13px; }
.product-info h3 { font-size: 12.5px; margin: 0 0 5px; font-weight: 700; }
.product-info p {
  font-size: 9px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0 0 10px;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-footer b { font-size: 14px; color: var(--red); font-weight: 800; }
.product-footer button {
  border: 0;
  background: var(--ink);
  color: white;
  border-radius: 10px;
  width: 29px; height: 29px;
  font-size: 18px;
  display: grid;
  place-items: center;
  line-height: 1;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), background .2s;
}
.product-footer button:hover {
  transform: scale(1.22) rotate(90deg);
  background: var(--red);
}

/* ── DARK CARDS (Paquetes / Extras) ─────────────────────────── */
.dark-card {
  margin-top: 14px;
  border-radius: 27px;
  padding: 22px;
  box-shadow: var(--shadow);
  background: linear-gradient(150deg, #140e0c 0%, #201410 100%);
  border: 1px solid rgba(214,154,55,.1);
}
.dark-card-head { margin-bottom: 16px; }
.dark-card-head .eyebrow { color: var(--gold); }
.dark-card-head h3 { margin: 5px 0 0; color: #fff; font-size: 18px; font-weight: 800; }

.paquete-list { display: grid; gap: 9px; }
.paquete-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  padding: 11px 14px;
  font-size: 11px;
  color: rgba(220,205,195,.88);
  transition: background .2s;
}
.paquete-item:hover { background: rgba(255,255,255,.09); }
.paquete-item b { color: var(--gold-2); font-size: 14px; font-weight: 800; margin-left: 12px; flex-shrink: 0; }

.extras-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.extras-list span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 11px;
  padding: 9px 11px;
  font-size: 10px;
  color: rgba(220,205,195,.82);
}
.extras-list b { color: var(--gold-2); font-weight: 800; }

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact-hero {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}
.contact-hero img { width: 100%; height: 255px; object-fit: cover; }
.contact-overlay {
  position: absolute;
  inset: auto 12px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  background: rgba(18,13,12,.84);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 13px 16px;
  border-radius: 17px;
  border: 1px solid rgba(255,255,255,.06);
}
.contact-overlay strong { font-size: 11.5px; font-weight: 700; }
.contact-overlay span { font-size: 10.5px; color: var(--gold-2); }

.contact-list { display: grid; gap: 9px; }
.contact-row {
  text-decoration: none;
  color: var(--ink);
  background: rgba(255,255,255,.84);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 13px;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 10px;
  transition: transform .28s ease, box-shadow .28s ease, background .2s;
}
a.contact-row:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(44,27,19,.11);
  background: rgba(255,255,255,.97);
}
.contact-row.no-link { cursor: default; }
.contact-row small { display: block; color: var(--muted); font-size: 9px; }
.contact-row b { font-size: 11.5px; display: block; font-weight: 700; }
.row-arrow {
  font-style: normal;
  color: #a09080;
  font-size: 15px;
  transition: transform .28s ease;
}
a.contact-row:hover .row-arrow { transform: translateX(5px); }

.contact-icon {
  width: 42px; height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 16px;
  color: white;
}
.whatsapp  { background: #25d366; }
.facebook  { background: #1877f2; }
.instagram { background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7); }
.location  { background: var(--red); }
.didi      { background: #ff4f13; }

.reference-card {
  margin-top: 15px;
  border-radius: 20px;
  border: 1px solid var(--line);
  width: 100%;
}

/* ── PROMOS & ADS ────────────────────────────────────────────── */
.promo-grid, .ads-grid { display: grid; gap: 16px; }
.promo-card-lg, .ad-card {
  overflow: hidden;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 14px 42px rgba(48,30,22,.08);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
}
.promo-card-lg:hover, .ad-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(48,30,22,.14);
}
.promo-card-lg img, .ad-card img, .ad-card video {
  width: 100%; max-height: 420px;
  object-fit: cover;
  transition: transform .5s ease;
}
.promo-card-lg:hover img, .ad-card:hover img { transform: scale(1.04); }
.promo-copy, .ad-copy { padding: 18px 20px 20px; }
.promo-copy h3, .ad-copy h3 { margin: 0 0 8px; font-size: 18px; font-weight: 800; }
.promo-copy p, .ad-copy p {
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.6;
  margin: 0 0 15px;
}
.promo-label {
  display: inline-flex;
  background: #fff0e8;
  color: var(--red);
  border-radius: 99px;
  padding: 7px 12px;
  font-size: 9px;
  font-weight: 800;
  margin-bottom: 11px;
  letter-spacing: .06em;
}

/* ── BOTTOM NAV ──────────────────────────────────────────────── */
.bottom-nav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: max(12px, env(safe-area-inset-bottom));
  width: min(calc(100% - 24px), 530px);
  z-index: 9000;
  background: rgba(12,8,7,.95);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 26px;
  padding: 7px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: 0 22px 65px rgba(0,0,0,.45);
  gap: 3px;
  align-items: center;
}
/* Blob animado */
.nav-blob {
  position: absolute;
  height: calc(100% - 14px);
  background: #fff;
  border-radius: 19px;
  top: 7px; left: 7px;
  pointer-events: none;
  transition: transform .48s cubic-bezier(.34,1.56,.64,1),
              width   .48s cubic-bezier(.34,1.56,.64,1);
  z-index: 0;
  will-change: transform, width;
}
.bottom-nav button {
  position: relative;
  z-index: 1;
  border: 0;
  background: transparent;
  color: rgba(175,158,148,.65);
  padding: 8px 4px;
  border-radius: 19px;
  font-size: 17px;
  transition: color .32s ease, transform .25s cubic-bezier(.34,1.56,.64,1);
  line-height: 1;
}
.bottom-nav button span {
  display: block;
  font-size: 7.5px;
  margin-top: 3px;
  font-weight: 700;
  letter-spacing: .03em;
}
.bottom-nav button.active { color: var(--ink); }
.bottom-nav button:active { transform: scale(.84); }

/* ── DIALOGS ─────────────────────────────────────────────────── */
dialog {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: none;
}
dialog::backdrop {
  background: rgba(8,6,5,.76);
  backdrop-filter: blur(10px);
}
.admin-login, .admin-panel {
  width: min(92vw, 510px);
  background: var(--paper);
  border-radius: 30px;
  padding: 26px;
  box-shadow: 0 50px 130px rgba(0,0,0,.32);
  position: relative;
}
/* ── Admin Login Card ─────────────────────────────── */
.admin-login {
  text-align: center;
  width: min(90vw, 380px);
  padding: 0;
  overflow: hidden;
  border-radius: 28px;
  background: var(--paper);
}

/* Branding hero section */
.admin-brand-hero {
  background: linear-gradient(160deg, var(--void) 0%, #1e0f0a 60%, #2a1208 100%);
  padding: 34px 24px 24px;
  position: relative;
  overflow: hidden;
}
.admin-brand-hero::before {
  content: '猫';
  position: absolute;
  bottom: -14px; right: 12px;
  font-size: 90px;
  opacity: .04;
  color: var(--gold);
  line-height: 1;
  pointer-events: none;
}
.admin-brand-logo {
  width: 88px; height: 88px;
  object-fit: contain;
  filter: drop-shadow(0 6px 22px rgba(214,154,55,.45));
  margin-bottom: 12px;
  animation: hero-float 4.5s ease-in-out infinite;
}
.admin-app-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  letter-spacing: .03em;
  margin: 0 0 4px;
}
.admin-app-meta {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0;
  opacity: .85;
}

/* Separator */
.admin-sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214,154,55,.25), transparent);
  margin: 0;
}

/* Credits section */
.admin-credits {
  padding: 14px 24px;
  background: linear-gradient(135deg, #faf7f2, #f5ede0);
}
.admin-credits-label {
  display: block;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.admin-credits-name {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: .01em;
}

/* Form section */
.admin-form {
  padding: 18px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.admin-form input {
  width: 100%;
  border: 1.5px solid rgba(214,154,55,.25);
  background: #fff;
  border-radius: 13px;
  padding: 13px 16px;
  text-align: center;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  letter-spacing: .05em;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
}
.admin-form input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(214,154,55,.12);
}
.admin-form input[id="adminPin"] {
  letter-spacing: .35em;
  font-size: 18px;
}
.admin-submit-btn {
  border: 0;
  background: linear-gradient(135deg, var(--red) 0%, #b02215 50%, #6b1409 100%);
  color: white;
  padding: 14px 18px;
  border-radius: 13px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  width: 100%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s;
  box-shadow: 0 8px 28px rgba(217,43,31,.35);
}
.admin-submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  opacity: 0;
  transition: opacity .3s;
}
.admin-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(217,43,31,.45); }
.admin-submit-btn:hover::before { opacity: .18; }
.admin-submit-btn:active { transform: translateY(1px); box-shadow: 0 4px 14px rgba(217,43,31,.3); }

.dialog-close {
  position: absolute;
  right: 15px; top: 12px;
  border: 0;
  background: transparent;
  font-size: 26px;
  color: rgba(255,255,255,.5);
  transition: transform .3s ease, color .2s;
  z-index: 2;
}
.dialog-close:hover { transform: rotate(90deg); color: var(--gold); }

.primary-btn {
  border: 0;
  background: linear-gradient(135deg, #181414, #3d2822);
  color: white;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 800;
  width: 100%;
  letter-spacing: .02em;
  transition: transform .28s ease, opacity .2s;
  box-shadow: 0 8px 25px rgba(20,10,8,.25);
}
.primary-btn:hover { transform: translateY(-2px); opacity: .92; }
.primary-btn:active { transform: translateY(1px); }

.panel-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 2px; }
.panel-head h3 { margin: 5px 0 0; font-weight: 800; }

.admin-tabs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 7px;
  margin: 18px 0;
}
.admin-tabs button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 9px;
  font-size: 10px;
  font-weight: 700;
  transition: background .2s, color .2s;
}
.admin-tabs button.active { background: var(--ink); color: #fff; }

.content-form { display: grid; gap: 10px; }
.content-form label { font-size: 9px; font-weight: 800; color: #77665e; }
.content-form input,
.content-form textarea {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 11px;
  margin-top: 5px;
  color: var(--ink);
  transition: border-color .2s;
}
.content-form input:focus,
.content-form textarea:focus { outline: none; border-color: var(--gold); }

.admin-list {
  max-height: 215px;
  overflow: auto;
  margin-top: 14px;
  display: grid;
  gap: 7px;
}
.admin-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f4ece4;
  border-radius: 12px;
  padding: 9px 12px;
  font-size: 10px;
  font-weight: 600;
}
.admin-item button {
  border: 0;
  background: var(--red);
  color: white;
  border-radius: 9px;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 700;
  transition: transform .2s;
}
.admin-item button:hover { transform: scale(1.05); }

/* ── TOAST ───────────────────────────────────────────────────── */
.toast {
  position: fixed;
  z-index: 9500;
  left: 50%;
  bottom: 110px;
  transform: translate(-50%, 22px);
  opacity: 0;
  background: var(--ink);
  color: #fff;
  padding: 11px 20px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  transition: opacity .3s ease, transform .4s cubic-bezier(.34,1.56,.64,1);
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 10px 35px rgba(0,0,0,.28);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast-inner {}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 400px) {
  .hero-card { min-height: 330px; padding: 22px; }
  .hero-card h1 { font-size: 26px; }
  .quick-grid { grid-template-columns: 1fr; }
  .quick-card { min-height: 80px; }
  .catalog-grid { grid-template-columns: 1fr 1fr; }
  .product-card img { height: 120px; }
  .extras-list { grid-template-columns: 1fr; }
}
@media (min-width: 800px) {
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(rgba(80,50,30,.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(80,50,30,.025) 1px, transparent 1px);
    background-size: 34px 34px;
    pointer-events: none;
    z-index: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ══════════════════════════════════════════════════════════════
   SISTEMA DE PEDIDOS — ESTILOS GOD LEVEL
══════════════════════════════════════════════════════════════ */

/* ── SUPER BOTÓN PEDIDO ──────────────────────────────────── */
.super-order-wrap {
  padding: 20px 0 8px;
}
.super-order-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  background: linear-gradient(135deg, var(--red) 0%, #b82117 40%, #7c1209 100%);
  border: 0;
  border-radius: 22px;
  padding: 20px 22px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(217,43,31,.42), 0 4px 12px rgba(0,0,0,.2);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
}
.super-order-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  opacity: 0; transition: opacity .4s;
}
.super-order-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  animation: sob-shimmer 2.8s ease-in-out infinite;
}
@keyframes sob-shimmer {
  0%   { left: -120%; }
  60%  { left: 140%;  }
  100% { left: 140%;  }
}
.super-order-btn:hover  { transform: translateY(-4px) scale(1.012); box-shadow: 0 20px 50px rgba(217,43,31,.52); }
.super-order-btn:hover::before { opacity: .15; }
.super-order-btn:active { transform: translateY(1px) scale(.99); }
.sob-icon {
  font-size: 30px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.3));
  position: relative; z-index: 1;
  flex-shrink: 0;
}
.sob-text {
  flex: 1; text-align: left; position: relative; z-index: 1;
}
.sob-text b {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px; font-weight: 900;
  color: #fff; letter-spacing: .01em;
}
.sob-text small {
  font-size: 11px; color: rgba(255,255,255,.72);
  letter-spacing: .05em; text-transform: uppercase;
}
.sob-arrow {
  font-size: 22px; color: rgba(255,255,255,.8);
  position: relative; z-index: 1;
  transition: transform .3s; flex-shrink: 0;
}
.super-order-btn:hover .sob-arrow { transform: translateX(5px); }

/* ── OVERLAY DATOS DEL CLIENTE ───────────────────────────── */
.client-overlay {
  position: fixed; inset: 0;
  background: rgba(9,8,7,.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 900;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
.client-overlay.active {
  opacity: 1; pointer-events: all;
}
.client-form-card {
  position: relative;
  background: var(--paper);
  border-radius: 28px;
  padding: 30px 24px;
  width: min(94vw, 400px);
  text-align: center;
  box-shadow: 0 40px 100px rgba(0,0,0,.5);
  transform: translateY(30px) scale(.96);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.client-overlay.active .client-form-card {
  transform: translateY(0) scale(1);
}
.cfo-logo {
  width: 72px; height: 72px;
  object-fit: contain;
  margin-bottom: 10px;
  filter: drop-shadow(0 4px 14px rgba(214,154,55,.4));
}
.cfo-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px; font-weight: 900;
  color: var(--ink); margin: 0 0 6px;
}
.cfo-sub {
  font-size: 12px; color: var(--muted);
  margin: 0 0 18px; line-height: 1.5;
}
#clientDataForm {
  display: flex; flex-direction: column; gap: 10px;
}
.cfo-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
#clientDataForm input {
  width: 100%; box-sizing: border-box;
  border: 1.5px solid rgba(214,154,55,.22);
  background: #fff;
  border-radius: 13px;
  padding: 13px 15px;
  font-family: 'Inter', sans-serif;
  font-size: 13px; color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
#clientDataForm input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(214,154,55,.12);
}
.cfo-btn {
  border: 0;
  background: linear-gradient(135deg, var(--red) 0%, #8c1509 100%);
  color: #fff;
  border-radius: 14px;
  padding: 15px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 900;
  letter-spacing: .06em;
  cursor: pointer;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
  box-shadow: 0 8px 24px rgba(217,43,31,.35);
  margin-top: 4px;
}
.cfo-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(217,43,31,.45); }
.cfo-btn:active { transform: translateY(1px); }

/* ── CART FAB ─────────────────────────────────────────────── */
.cart-fab {
  position: fixed;
  bottom: 88px; right: 18px;
  background: linear-gradient(135deg, var(--red), #8c1509);
  color: #fff;
  border: 0;
  border-radius: 50px;
  padding: 13px 20px;
  font-size: 17px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 28px rgba(217,43,31,.45);
  cursor: pointer;
  z-index: 800;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
}
.cart-fab:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 14px 36px rgba(217,43,31,.55); }
.cart-fab-count {
  background: var(--gold);
  color: var(--ink);
  font-size: 12px; font-weight: 900;
  border-radius: 50px;
  padding: 2px 7px;
  min-width: 20px;
  text-align: center;
}

/* ── CART DIALOG ──────────────────────────────────────────── */
#cartDialog::backdrop { background: rgba(9,8,7,.72); backdrop-filter: blur(8px); }
.cart-panel {
  width: min(96vw, 430px);
  background: var(--paper);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.4);
}
.cart-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 20px 22px 14px;
  background: linear-gradient(135deg, var(--void), #1a0a08);
}
.cart-head h3 {
  color: #fff; margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 17px; font-weight: 900;
}
.cart-eyebrow {
  font-size: 9px; color: var(--gold);
  letter-spacing: .14em; margin: 0 0 2px;
  display: block;
}
.cart-head .dialog-close { color: rgba(255,255,255,.5); top: auto; right: auto; position: relative; }
.cart-head .dialog-close:hover { color: var(--gold); }
.cart-items-list {
  max-height: 38vh;
  overflow-y: auto;
  padding: 12px 18px;
}
.cart-empty-msg {
  text-align: center; color: var(--muted);
  padding: 24px 0; font-size: 14px;
}
.cart-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(214,154,55,.12);
}
.cart-item:last-child { border-bottom: 0; }
.ci-name  { flex: 1; font-size: 13px; font-weight: 600; color: var(--ink); }
.ci-controls {
  display: flex; align-items: center; gap: 6px;
  background: rgba(214,154,55,.1); border-radius: 10px; padding: 2px 6px;
}
.ci-btn {
  border: 0; background: transparent;
  font-size: 16px; font-weight: 700;
  color: var(--red); cursor: pointer;
  width: 24px; height: 24px;
  display: grid; place-items: center;
  border-radius: 6px;
  transition: background .2s;
}
.ci-btn:hover { background: rgba(217,43,31,.12); }
.ci-qty { font-size: 13px; font-weight: 800; min-width: 20px; text-align: center; }
.ci-price { font-size: 13px; font-weight: 800; color: var(--red); min-width: 44px; text-align: right; }

.cart-nota-wrap { padding: 10px 18px; }
.cart-nota-label {
  display: block; font-size: 11px; font-weight: 700;
  color: var(--muted); margin-bottom: 6px; letter-spacing: .04em;
}
#cartNota {
  width: 100%; box-sizing: border-box;
  border: 1.5px solid rgba(214,154,55,.22);
  border-radius: 13px; padding: 11px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 13px; color: var(--ink);
  resize: none; height: 72px;
  background: #fff; transition: border-color .2s;
}
#cartNota:focus { outline: none; border-color: var(--gold); }

.cart-footer-panel {
  padding: 14px 18px 20px;
  border-top: 1px solid rgba(214,154,55,.15);
}
.cart-total-row {
  font-size: 13px; color: var(--muted);
  margin-bottom: 12px;
}
.cart-total-row b { font-size: 18px; color: var(--ink); margin-left: 6px; }
.send-order-btn {
  width: 100%; border: 0;
  background: linear-gradient(135deg, var(--red) 0%, #8c1509 100%);
  color: #fff;
  padding: 15px;
  border-radius: 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 900;
  letter-spacing: .06em; cursor: pointer;
  box-shadow: 0 8px 24px rgba(217,43,31,.35);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
}
.send-order-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(217,43,31,.45); }
.send-order-btn:active { transform: translateY(1px); }

/* ── ADMIN — TAB PEDIDOS BADGE ───────────────────────────── */
.orders-badge {
  background: var(--red);
  color: #fff;
  font-size: 9px; font-weight: 900;
  border-radius: 50px;
  padding: 1px 5px;
  min-width: 16px;
  text-align: center;
  vertical-align: middle;
  margin-left: 3px;
}

/* ── ADMIN — LISTA DE PEDIDOS ────────────────────────────── */
.orders-empty {
  text-align: center; color: var(--muted);
  padding: 28px 0; font-size: 14px;
}
.order-item {
  border: 1.5px solid rgba(214,154,55,.18);
  border-radius: 18px;
  padding: 16px;
  margin-bottom: 12px;
  background: #fff;
  transition: opacity .3s;
}
.order-item.oi-done { opacity: .6; }
.oi-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 10px;
}
.oi-client b  { display: block; font-size: 14px; font-weight: 800; color: var(--ink); }
.oi-time      { font-size: 10px; color: var(--muted); }
.oi-badge-status {
  font-size: 9px; font-weight: 900;
  border-radius: 50px; padding: 3px 10px;
  letter-spacing: .06em; text-transform: uppercase;
}
.oi-badge-status.nuevo      { background: rgba(217,43,31,.12); color: var(--red); }
.oi-badge-status.completado { background: rgba(50,150,80,.12);  color: #2a7a3a; }
.oi-meta {
  display: flex; flex-direction: column; gap: 4px;
  margin-bottom: 10px;
}
.oi-wa  { font-size: 12px; color: #1a7a3a; font-weight: 700; text-decoration: none; }
.oi-wa:hover { text-decoration: underline; }
.oi-dir { font-size: 12px; color: var(--muted); }
.oi-items {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 10px;
}
.oi-tag {
  background: rgba(214,154,55,.12);
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 11px; font-weight: 600; color: var(--ink);
}
.oi-nota {
  font-size: 12px; color: var(--muted);
  background: rgba(0,0,0,.03);
  border-radius: 10px; padding: 8px 12px;
  margin-bottom: 10px; font-style: italic;
}
.oi-footer {
  display: flex; justify-content: space-between; align-items: center;
}
.oi-total { font-size: 15px; color: var(--ink); }
.oi-actions { display: flex; gap: 8px; }
.oi-btn-done, .oi-btn-del {
  border: 0; border-radius: 10px;
  padding: 7px 13px;
  font-size: 12px; font-weight: 700;
  cursor: pointer; transition: transform .2s, opacity .2s;
}
.oi-btn-done { background: rgba(50,150,80,.1); color: #2a7a3a; }
.oi-btn-del  { background: rgba(217,43,31,.1);  color: var(--red); }
.oi-btn-done:hover, .oi-btn-del:hover { transform: scale(1.06); opacity: .85; }

/* ── Botón cerrar overlay de datos del cliente ── */
.cfo-close {
  position: absolute;
  top: 14px; right: 16px;
  border: 0; background: transparent;
  font-size: 26px; line-height: 1;
  color: var(--muted);
  cursor: pointer;
  transition: color .2s, transform .3s ease;
  z-index: 2;
}
.cfo-close:hover { color: var(--red); transform: rotate(90deg); }

/* ══════════════════════════════════════════════════════════════
   CONTACTO & HORARIO — ESTILOS
══════════════════════════════════════════════════════════════ */

/* Banner "cerrado hoy" */
.contact-closed-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #1a0a08, #2e1410);
  border: 1.5px solid rgba(217,43,31,.3);
  border-radius: 18px;
  padding: 16px 18px;
  margin: 12px 0 4px;
  color: #fff;
}
.ccb-icon { font-size: 26px; flex-shrink: 0; }
.contact-closed-banner b {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 900;
  color: #fff; margin-bottom: 3px;
}
.contact-closed-banner small {
  font-size: 11px;
  color: rgba(255,255,255,.6);
  letter-spacing: .03em;
}

/* ── Admin: Sección Contacto & Horario ─────────────────────── */
.ch-section {
  padding: 4px 0 8px;
}
.ch-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 900;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
  margin: 16px 0 8px;
}
.ch-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214,154,55,.2), transparent);
  margin: 18px 0;
}

/* Checklist de días */
.dias-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}
.dia-check {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid rgba(214,154,55,.2);
  border-radius: 12px;
  padding: 10px 13px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  font-size: 13px; font-weight: 600;
  color: var(--ink);
}
.dia-check:has(input:checked) {
  background: rgba(217,43,31,.07);
  border-color: var(--red);
  color: var(--red);
}
.dia-check input[type="checkbox"] {
  accent-color: var(--red);
  width: 16px; height: 16px;
  flex-shrink: 0;
}

/* Horario input */
.ch-horario-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px; font-weight: 700;
  color: var(--muted);
  letter-spacing: .06em; text-transform: uppercase;
}
.ch-horario-input {
  width: 100%; box-sizing: border-box;
  border: 1.5px solid rgba(214,154,55,.22);
  border-radius: 12px;
  padding: 12px 15px;
  font-family: 'Inter', sans-serif;
  font-size: 14px; color: var(--ink);
  transition: border-color .2s;
}
.ch-horario-input:focus { outline: none; border-color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   QUICK-CARDS: texto 50% más grande + colores pastel
══════════════════════════════════════════════════════════════ */
.qc-text b    { font-size: 20px; font-weight: 800; }
.qc-text small { font-size: 11px; margin-top: 5px; }

/* Color pastel por card — logo palette a 8-12% */
.quick-card:nth-child(1) {
  background: rgba(217, 43,  31, 0.09);
  border-color: rgba(217, 43, 31, 0.18);
}
.quick-card:nth-child(2) {
  background: rgba(214, 154, 55, 0.10);
  border-color: rgba(214,154, 55, 0.22);
}
.quick-card:nth-child(3) {
  background: rgba(46,  180, 130, 0.09);
  border-color: rgba(46, 180,130, 0.18);
}
.quick-card:nth-child(4) {
  background: rgba(79,  100, 200, 0.08);
  border-color: rgba(79, 100,200, 0.16);
}
/* Flechas y texto muted con el tono del card */
.quick-card:nth-child(1) .qc-arrow { color: rgba(217, 43, 31,.45); }
.quick-card:nth-child(2) .qc-arrow { color: rgba(180,120, 20,.45); }
.quick-card:nth-child(3) .qc-arrow { color: rgba(30, 150, 90,.45); }
.quick-card:nth-child(4) .qc-arrow { color: rgba(60,  80,180,.45); }

/* ══════════════════════════════════════════════════════════════
   PAQUETES Y EXTRAS — BOTONES + ADD
══════════════════════════════════════════════════════════════ */
.paquete-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.extra-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.extra-row:last-child { border-bottom: 0; }
.pi-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.pi-add {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 0;
  background: var(--gold);
  color: var(--void);
  font-size: 20px; font-weight: 700;
  display: grid; place-items: center;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .2s;
  box-shadow: 0 3px 10px rgba(214,154,55,.35);
  line-height: 1;
}
.pi-add:hover  { transform: scale(1.18); box-shadow: 0 6px 16px rgba(214,154,55,.5); }
.pi-add:active { transform: scale(.9); }

/* ══════════════════════════════════════════════════════════════
   PROMOS EN MENÚ
══════════════════════════════════════════════════════════════ */
.menu-promo-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 8px;
}
.menu-promo-card {
  border-radius: 22px;
  background: linear-gradient(135deg, #2a1f00, #1a1200);
  border: 1.5px solid rgba(214,154,55,.35);
  overflow: hidden;
  display: grid;
  grid-template-columns: 130px 1fr;
  position: relative;
  box-shadow: 0 8px 30px rgba(214,154,55,.18);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.menu-promo-card:hover { transform: scale(1.012); }
.menu-promo-card img {
  width: 130px; height: 130px;
  object-fit: cover;
}
.mp-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--gold);
  color: var(--void);
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 900;
  letter-spacing: .1em;
  border-radius: 50px;
  padding: 3px 9px;
  z-index: 2;
}
.mp-body {
  padding: 14px 14px 14px 12px;
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
}
.mp-body h3 {
  font-size: 14px; font-weight: 800;
  color: var(--gold); margin: 0;
}
.mp-body p {
  font-size: 11px; color: rgba(255,255,255,.65); margin: 0;
  line-height: 1.4;
}
.mp-add-btn {
  align-self: flex-start;
  border: 0;
  background: var(--gold);
  color: var(--void);
  border-radius: 10px;
  padding: 7px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 900;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(214,154,55,.4);
}
.mp-add-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(214,154,55,.5); }
.mp-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214,154,55,.2), transparent);
  margin: 20px 0 14px;
}

/* ══════════════════════════════════════════════════════════════
   ADMIN — CLIENTES
══════════════════════════════════════════════════════════════ */
.clients-count {
  font-size: 10px; letter-spacing: .08em;
  color: var(--muted); text-transform: uppercase;
  margin: 0 0 10px; padding: 0;
}
.client-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  border: 1.5px solid rgba(214,154,55,.15);
  border-radius: 16px;
  padding: 14px;
  background: #fff;
  margin-bottom: 8px;
}
.ci-info { display: flex; flex-direction: column; gap: 3px; }
.ci-info b { font-size: 13px; font-weight: 800; color: var(--ink); }
.ci-fecha { font-size: 10px; color: var(--muted); flex-shrink: 0; white-space: nowrap; }

/* ══════════════════════════════════════════════════════════════
   PUBLICIDAD — AD-CARDS CON COLORES PASTEL
══════════════════════════════════════════════════════════════ */
.ad-card {
  background: var(--ad-bg, var(--paper));
}
.ad-video-card {
  border-radius: 20px;
  overflow: hidden;
}
.ad-video-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  min-height: 160px;
  background: linear-gradient(135deg, rgba(0,0,0,.06), rgba(0,0,0,.12));
  text-decoration: none;
  color: var(--ink);
  transition: background .3s;
}
.ad-video-link:hover { background: linear-gradient(135deg, rgba(0,0,0,.10), rgba(0,0,0,.18)); }
.av-icon { font-size: 32px; }
.av-play {
  font-size: 36px;
  color: rgba(0,0,0,.55);
  line-height: 1;
}
.av-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(0,0,0,.5);
}

/* ══════════════════════════════════════════════════════════════
   ADMIN FORM — AD TYPE TOGGLE
══════════════════════════════════════════════════════════════ */
.content-form-label {
  display: block;
  font-size: 11px; font-weight: 700;
  color: var(--muted); letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 8px;
}
.ad-type-toggle {
  display: flex; gap: 10px;
  margin-bottom: 14px;
}
.at-opt {
  display: flex; align-items: center; gap: 7px;
  background: #fff;
  border: 1.5px solid rgba(214,154,55,.2);
  border-radius: 12px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 13px; font-weight: 600;
  color: var(--ink);
  transition: border-color .2s, background .2s;
  flex: 1;
}
.at-opt:has(input:checked) {
  border-color: var(--red);
  background: rgba(217,43,31,.05);
  color: var(--red);
}
.at-opt input { accent-color: var(--red); }

/* ══════════════════════════════════════════════════════════════
   TICKET DE PEDIDO — ESTILOS GOD LEVEL
══════════════════════════════════════════════════════════════ */
#ticketDialog::backdrop { background: rgba(9,8,7,.82); backdrop-filter: blur(12px); }

.ticket-panel {
  width: min(96vw, 480px);
  background: var(--paper);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.45);
  max-height: 92vh;
  display: flex; flex-direction: column;
}

/* Header */
.ticket-header {
  display: flex; align-items: center; gap: 14px;
  background: linear-gradient(135deg, #0d0908, #1e1009);
  padding: 18px 20px;
  position: relative;
  flex-shrink: 0;
}
.tkt-logo {
  width: 60px; height: 60px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 10px rgba(214,154,55,.45));
}
.tkt-brand { flex: 1; }
.tkt-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px; font-weight: 900;
  color: #fff; margin: 0 0 3px;
  letter-spacing: .04em;
}
.tkt-city { font-size: 11px; color: var(--gold); margin: 0; letter-spacing: .05em; }
.tkt-close {
  position: absolute; top: 12px; right: 14px;
  color: rgba(255,255,255,.45);
}
.tkt-close:hover { color: var(--gold); }

/* Body scroll */
.ticket-body {
  overflow-y: auto; flex: 1;
  padding: 18px 20px 4px;
  -webkit-overflow-scrolling: touch;
}

/* Secciones internas */
.tkt-sep {
  height: 1px;
  background: repeating-linear-gradient(
    90deg, rgba(201,135,58,.3) 0px, rgba(201,135,58,.3) 5px,
    transparent 5px, transparent 10px);
  margin: 14px 0;
}
.tkt-section { margin-bottom: 4px; }
.tkt-id-row {
  display: flex; justify-content: space-between; align-items: center;
}
.tkt-label {
  display: block;
  font-size: 9px; font-weight: 900;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--red); margin-bottom: 8px;
}
.tkt-id { font-size: 9px; color: var(--muted); font-family: monospace; }
.tkt-date { font-size: 11px; color: var(--muted); margin-top: -4px; margin-bottom: 2px; }
.tkt-client-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px; font-weight: 800;
  color: var(--ink); margin: 2px 0 4px;
}
.tkt-client-meta { font-size: 12px; color: var(--muted); margin: 3px 0; line-height: 1.4; }

/* Items */
.tkt-item {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 7px 0;
  border-bottom: 1px solid rgba(214,154,55,.1);
  font-size: 13px; color: var(--ink);
}
.tkt-item:last-child { border-bottom: 0; }
.tkt-item b { font-weight: 600; }

/* Total */
.tkt-total-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1.5px solid var(--gold);
}
.tkt-total-row span {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 900;
  letter-spacing: .08em; color: var(--red);
}
.tkt-total-row b {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px; font-weight: 900; color: var(--ink);
}

/* Nota */
.tkt-nota {
  background: rgba(214,154,55,.07);
  border: 1px solid rgba(214,154,55,.2);
  border-radius: 14px; padding: 12px 14px;
  margin: 8px 0 4px;
}
.tkt-nota span { font-size: 10px; font-weight: 700; color: var(--muted); letter-spacing: .07em; display: block; margin-bottom: 4px; }
.tkt-nota p { font-size: 13px; color: var(--ink); margin: 0; line-height: 1.5; }

/* Footer msg */
.tkt-footer-msg { text-align: center; padding: 8px 0 4px; }
.tkt-footer-msg p { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 800; color: var(--ink); margin: 0 0 4px; }
.tkt-footer-msg small { font-size: 11px; color: var(--muted); }

/* Botones acción */
.ticket-actions {
  display: flex; gap: 10px;
  padding: 14px 20px 6px;
  flex-shrink: 0;
}
.tkt-dl-btn, .tkt-share-btn {
  flex: 1; border: 0; border-radius: 13px;
  padding: 13px 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 800;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .2s;
}
.tkt-dl-btn {
  background: linear-gradient(135deg, var(--red), #8c1509);
  color: #fff;
  box-shadow: 0 6px 20px rgba(217,43,31,.35);
}
.tkt-share-btn {
  background: linear-gradient(135deg, #1e1009, #2e1a0a);
  color: var(--gold);
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
}
.tkt-dl-btn:hover,
.tkt-share-btn:hover { transform: translateY(-3px); }
.tkt-dl-btn:active,
.tkt-share-btn:active { transform: translateY(1px); }

.tkt-hint {
  text-align: center; font-size: 11px; color: var(--muted);
  padding: 4px 20px 14px; margin: 0;
}
