*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100%; }

:root {
  --orange:   #FF6600;
  --orange2:  #cc5200;
  --bg-light: #f0f0f0;
  --card-bg:  #ffffff;
  --dark-card:#1a1816;
  --text:     #1a1816;
  --muted:    #888;
  --radius:   14px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg-light);
  color: var(--text);
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  min-height: 100vh;
  padding-bottom: calc(70px + env(safe-area-inset-bottom, 12px));
}

/* ── HERO CAROUSEL ──────────────────────────────────────────────── */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 58vh;
  min-height: 320px;
  max-height: 560px;
  overflow: hidden;
  background: #111;
}

.hero-slides-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
}
.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-slide video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-slide-default {
  background: linear-gradient(145deg, #1a0e00 0%, #2d1a0a 50%, #3d2010 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 8rem; opacity: .15;
}

.hero-gradient {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.45) 0%,
    rgba(0,0,0,.05) 40%,
    rgba(0,0,0,.55) 100%
  );
}

/* Top bar con logo y menú */
.hero-top-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px 20px;
  pointer-events: none;
}
.hero-logo-wrap {
  display: flex;
  align-items: flex-start;
  pointer-events: auto;
}
.hero-logo-wrap img {
  height: 122px;
  max-width: 85vw;
  object-fit: contain;
  filter: drop-shadow(0 2px 14px rgba(0,0,0,.7));
}
.hero-menu-btn {
  position: absolute;
  top: 16px; right: 20px;
  color: #fff;
  font-size: 1.8rem;
  text-decoration: none;
  display: flex; align-items: center;
  background: rgba(0,0,0,.3);
  border-radius: 8px;
  padding: 6px 10px;
  pointer-events: auto;
  backdrop-filter: blur(4px);
}

/* Texto del hero */
.hero-text-wrap {
  position: absolute;
  bottom: 52px; left: 20px; right: 20px;
  z-index: 5;
}
.hero-title {
  font-size: clamp(2.2rem, 10vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -.01em;
  margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}
.hero-title .orange-word { color: var(--orange); }
.hero-subtitle {
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
  max-width: 280px;
  text-shadow: 0 1px 6px rgba(0,0,0,.6);
  margin-top: 6px;
}

/* Dots del carousel */
.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.hero-dot {
  height: 7px;
  width: 7px;
  border-radius: 4px;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: width .25s, background .25s;
  border: none;
}
.hero-dot.active {
  width: 22px;
  background: #fff;
}

/* ── PRODUCTS SECTION ───────────────────────────────────────────── */
.products-section {
  background: var(--bg-light);
}

.cat-section {
  padding: 24px 16px 8px;
}

/* Título de sección con líneas naranjas */
.cat-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}
.cat-section-title::before,
.cat-section-title::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
}

/* Lista de productos */
.cat-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}

/* ── PRODUCT CARD (horizontal) ──────────────────────────────────── */
.prod-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  cursor: pointer;
  transition: box-shadow .18s, transform .18s;
  position: relative;
}
.prod-card:active { transform: scale(.98); }

.prod-img-wrap { position: relative; flex-shrink: 0; }
.prod-img {
  width: 90px; height: 90px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  background: #eee;
}
.prod-img-ph {
  width: 90px; height: 90px;
  border-radius: 10px;
  background: #f0eeeb;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem;
}
.prod-badge {
  position: absolute;
  top: 4px; left: 4px;
  background: var(--orange);
  color: #fff;
  font-size: .53rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 4px;
  white-space: nowrap;
}

.prod-info { flex: 1; min-width: 0; }
.prod-name {
  font-size: .88rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--text);
  margin-bottom: 3px;
  line-height: 1.2;
}
.prod-desc {
  font-size: .73rem;
  color: var(--muted);
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.prod-price {
  font-size: .98rem;
  font-weight: 900;
  color: var(--orange);
}

/* Botón + y counter en la card */
.prod-action {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.prod-add-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  transition: background .12s, transform .1s;
  box-shadow: 0 4px 12px rgba(255,102,0,.35);
}
.prod-add-btn:active { transform: scale(.92); background: var(--orange2); }

.prod-counter-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.prod-qty-display {
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  width: 38px; height: 38px;
  font-size: .95rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(255,102,0,.35);
}
.prod-counter-btns {
  display: flex;
  gap: 2px;
}
.prod-counter-btns button {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: none;
  background: #f0eeeb;
  color: var(--text);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.prod-counter-btns button:active { background: var(--orange); color: #fff; }

/* ── PROMO CARD (oscura) ────────────────────────────────────────── */
@keyframes promoShine {
  0%   { transform: translateX(-160%); }
  100% { transform: translateX(320%); }
}
@keyframes promoScale {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.04); }
  100% { transform: scale(1); }
}
.promo-card {
  background: var(--dark-card);
  border-radius: var(--radius);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.promo-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 20%, rgba(255,110,30,.32) 50%, transparent 80%);
  transform: translateX(-160%);
  pointer-events: none;
}
.promo-card.promo-visible {
  animation: promoScale 2s ease-in-out infinite alternate;
  will-change: transform;
}
.promo-card.promo-visible::after {
  animation: promoShine 2s ease-in-out infinite alternate;
}
.promo-card:active { filter: brightness(.82); }
@media (prefers-reduced-motion: reduce) {
  .promo-card.promo-visible,
  .promo-card.promo-visible::after { animation: none; }
}

.promo-info { flex: 1; min-width: 0; }
.promo-label {
  font-size: .6rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}
.promo-name {
  font-size: .92rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 3px;
}
.promo-desc {
  font-size: .73rem;
  color: #666;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.promo-price {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--orange);
}
.promo-img {
  width: 90px; height: 90px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.promo-img-ph {
  width: 90px; height: 90px;
  border-radius: 10px;
  background: #252220;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem; flex-shrink: 0;
}
.promo-arrow {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .9rem; flex-shrink: 0;
}
.promo-action {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.promo-add-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .12s;
}
.promo-add-btn:active { background: var(--orange2); }

/* ── MODAL DETALLE ──────────────────────────────────────────────── */
.det-backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.75);
  z-index: 400;
  align-items: flex-end;
  justify-content: center;
}
.det-backdrop.open { display: flex; }

.det-modal {
  background: #1a1816;
  border-radius: 20px 20px 0 0;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.det-close {
  position: absolute; top: 12px; right: 12px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none; color: #fff;
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.det-img {
  width: 100%; max-height: 280px;
  object-fit: cover; display: block;
  border-radius: 20px 20px 0 0;
}
.det-img-ph {
  width: 100%; height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; background: #222;
  border-radius: 20px 20px 0 0;
}
.det-body { padding: 20px 20px 28px; }
.det-name {
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
}
.det-price {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 14px;
}
.det-section-lbl {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #555;
  margin-top: 12px;
  margin-bottom: 5px;
}
.det-desc { font-size: .88rem; color: #ccc; line-height: 1.55; }
.det-ing  { font-size: .83rem; color: #888; line-height: 1.6; }

.det-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.det-counter {
  display: flex;
  align-items: center;
  background: #252220;
  border: 1px solid #333;
  border-radius: 30px;
  padding: 4px;
}
.det-counter button {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.det-counter button:hover { background: var(--orange); }
.det-counter .qty {
  font-size: 1.1rem; font-weight: 900;
  min-width: 30px; text-align: center; color: #fff;
}
.det-agregar {
  flex: 1;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: .88rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .12s;
}
.det-agregar:hover { background: var(--orange2); }

/* ── PANEL PEDIDO ───────────────────────────────────────────────── */
.pedido-backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 500;
  align-items: flex-end;
  justify-content: center;
}
.pedido-backdrop.open { display: flex; }

.pedido-panel {
  background: #fff;
  border-radius: 20px 20px 0 0;
  width: 100%;
  max-width: 520px;
  max-height: 88vh;
  overflow-y: auto;
  padding: 22px 18px calc(20px + env(safe-area-inset-bottom, 0px));
}
.pedido-panel-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.pedido-panel-title {
  font-size: .95rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .07em; color: #111;
}
.pedido-panel-close {
  margin-left: auto;
  background: none; border: none;
  color: #999; font-size: 1.3rem; cursor: pointer;
}

.pedido-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}
.pedido-item-img { width: 50px; height: 50px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.pedido-item-img-ph {
  width: 50px; height: 50px; border-radius: 8px;
  background: #f5f5f5; display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem; flex-shrink: 0;
}
.pedido-item-info { flex: 1; min-width: 0; }
.pedido-item-name { font-size: .85rem; font-weight: 800; text-transform: uppercase; color: #111; }
.pedido-item-price { font-size: .78rem; color: var(--orange); font-weight: 700; margin-top: 2px; }

.pedido-item-counter {
  display: flex; align-items: center;
  background: #f5f5f5; border: 1px solid #e5e5e5; border-radius: 22px; padding: 2px;
}
.pedido-item-counter button {
  width: 28px; height: 28px; border-radius: 50%;
  border: none; background: transparent; color: #555;
  font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.pedido-item-counter button:active { background: var(--orange); color: #fff; }
.pedido-item-counter .qty {
  font-size: .9rem; font-weight: 900;
  min-width: 22px; text-align: center; color: #111;
}

.pedido-total-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0 6px;
  font-size: .9rem; font-weight: 900;
  text-transform: uppercase; color: #111;
  border-top: 1px solid #f0f0f0;
}
.pedido-total-row span:last-child { color: var(--orange); font-size: 1.15rem; }

/* Retiro / Delivery toggle */
.pedido-tipo-row {
  display: flex; gap: 8px; margin: 12px 0 4px;
}
.pedido-tipo-btn {
  flex: 1; padding: 10px 8px; border-radius: 10px;
  border: 2px solid #e5e5e5; background: #f8f8f8;
  font-size: .82rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .04em; color: #888; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: border-color .15s, color .15s, background .15s;
}
.pedido-tipo-btn.active {
  border-color: var(--orange); background: rgba(255,102,0,.07); color: var(--orange);
}

.pedido-field-label {
  font-size: .68rem; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: #888; margin: 10px 0 5px;
}
.pedido-field-input {
  width: 100%; background: #f8f8f8; border: 1px solid #e5e5e5;
  border-radius: 8px; padding: 10px 12px; color: #111;
  font-size: .86rem; resize: none; outline: none; line-height: 1.4;
  font-family: inherit;
}
.pedido-field-input:focus { border-color: var(--orange); }

.pedido-wa-btn {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; width: 100%; margin-top: 14px; padding: 16px;
  background: #25d366; color: #fff; border: none; border-radius: 12px;
  font-size: .9rem; font-weight: 900; letter-spacing: .05em;
  text-transform: uppercase; cursor: pointer; text-decoration: none;
  transition: background .12s;
}
.pedido-wa-btn:hover { background: #1da851; }
.pedido-wa-svg { width: 24px; height: 24px; flex-shrink: 0; }

.pedido-vacio { text-align: center; padding: 32px 0; color: #aaa; font-size: .88rem; }

/* ── BARRA FIJA HACER PEDIDO ────────────────────────────────────── */
.hacer-pedido-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--orange);
  color: #fff;
  z-index: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0 20px;
  min-height: 58px;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  user-select: none;
}

.hp-badge {
  background: rgba(0,0,0,.2);
  color: #fff;
  border-radius: 50%;
  min-width: 26px; height: 26px;
  font-size: .78rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  padding: 0 4px;
}
.hp-badge:empty { display: none; }

.hp-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.hp-wa-icon {
  width: 24px; height: 24px; flex-shrink: 0;
}
.hp-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hp-main-text {
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
  line-height: 1.1;
}
.hp-sub-text {
  font-size: .68rem;
  font-weight: 600;
  opacity: .85;
}

.hp-total {
  font-size: .92rem;
  font-weight: 900;
  min-width: 60px;
  text-align: right;
  flex-shrink: 0;
}
.hp-total:empty { display: none; }

/* ── EMPTY STATE ────────────────────────────────────────────────── */
.empty-state {
  text-align: center; padding: 48px 20px; color: var(--muted);
  font-size: .9rem;
}

/* ── DESKTOP ────────────────────────────────────────────────────── */
@media (min-width: 700px) {
  .hero-carousel { height: 60vh; max-height: 640px; }
  .hero-title { font-size: 3rem; }
  .cat-section { padding: 32px 32px 10px; max-width: 800px; margin: 0 auto; }
  .hacer-pedido-bar { max-width: 480px; left: 50%; transform: translateX(-50%); border-radius: 14px 14px 0 0; }
  .det-modal, .pedido-panel { max-width: 540px; }
}

/* ── MODAL ENCUESTA ──────────────────────────────────────────────── */
.enc-backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.78);
  z-index: 700;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.enc-backdrop.open { display: flex; }

.enc-modal {
  background: #1a1816;
  border-radius: 24px;
  padding: 38px 28px 30px;
  width: 100%;
  max-width: 320px;
  text-align: center;
  animation: encIn .32s cubic-bezier(.22,.68,0,1.18) both;
}
.enc-modal.enc-out { animation: encOut .26s ease-in both; }

@keyframes encIn {
  from { opacity: 0; transform: scale(.82) translateY(18px); }
  to   { opacity: 1; transform: scale(1)  translateY(0); }
}
@keyframes encOut {
  from { opacity: 1; transform: scale(1); }
  to   { opacity: 0; transform: scale(.88); }
}

.enc-titulo {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ccc;
  line-height: 1.5;
  margin-bottom: 28px;
}
.enc-titulo strong { color: var(--orange); }

.enc-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 22px;
}
.enc-star {
  font-size: 2.8rem;
  color: #333;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 6px 4px;
  min-width: 48px; min-height: 52px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .1s;
}
.enc-star:active { transform: scale(1.22); }

.enc-primera-btn {
  background: transparent;
  border: 1px solid #333;
  color: #777;
  border-radius: 30px;
  padding: 11px 22px;
  font-size: .82rem;
  cursor: pointer;
  font-family: inherit;
  transition: border-color .15s, color .15s;
  width: 100%;
}
.enc-primera-btn:hover { border-color: #666; color: #bbb; }

/* ── MODAL RECOMENDADA DEL DÍA ──────────────────────────────────── */
.rec-backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.78);
  z-index: 700;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.rec-backdrop.open { display: flex; }

.rec-modal {
  background: #1a1816;
  border-radius: 22px;
  width: 100%;
  max-width: 340px;
  overflow: hidden;
  position: relative;
  animation: encIn .32s cubic-bezier(.22,.68,0,1.18) both;
}
.rec-modal.rec-out { animation: encOut .26s ease-in both; }

.rec-modal-close {
  position: absolute; top: 12px; right: 12px;
  background: rgba(0,0,0,.45);
  border: none; color: #fff;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}

.rec-img {
  width: 100%; height: 210px;
  object-fit: cover; display: block;
}
.rec-img-ph {
  width: 100%; height: 160px;
  background: #252220;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.rec-body { padding: 18px 20px 22px; }
.rec-badge {
  display: inline-block;
  background: var(--orange); color: #fff;
  font-size: .58rem; font-weight: 900;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
  margin-bottom: 10px;
}
.rec-nombre {
  font-size: 1.18rem; font-weight: 900;
  text-transform: uppercase; color: #fff;
  margin-bottom: 6px; line-height: 1.2;
}
.rec-desc {
  font-size: .8rem; color: #888; line-height: 1.5;
  margin-bottom: 10px;
}
.rec-precio {
  font-size: 1.3rem; font-weight: 900;
  color: var(--orange); margin-bottom: 18px;
}
.rec-actions { display: flex; flex-direction: column; gap: 8px; }
.rec-agregar-btn {
  width: 100%; padding: 14px;
  background: var(--orange); color: #fff;
  border: none; border-radius: 12px;
  font-size: .88rem; font-weight: 900;
  letter-spacing: .05em; text-transform: uppercase;
  cursor: pointer; transition: background .12s;
}
.rec-agregar-btn:hover { background: var(--orange2); }
.rec-cerrar-btn {
  width: 100%; padding: 11px;
  background: transparent; color: #666;
  border: 1px solid #333; border-radius: 12px;
  font-size: .82rem; cursor: pointer; font-family: inherit;
  transition: color .15s, border-color .15s;
}
.rec-cerrar-btn:hover { color: #aaa; border-color: #555; }
