/* ==========================================================================
   Calle Fuego — Latin Street Grill — styles.css
   ========================================================================== */

:root {
  --black: #0A0A0A;
  --black2: #161412;
  --orange: #FF6A00;
  --orange-light: #FF8C1A;
  --orange-dark: #CC5500;
  --flame: #E63900;
  --gold: #FFC72C;
  --white: #FFFFFF;
  --gray: #C7C0B8;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Poppins', sans-serif;
  /* Fuente para el título del hero y la marca — más parecida al
     estilo bold/poster del logo real que Bebas Neue. */
  --font-logo: 'Bangers', cursive;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
  --shadow-md: 0 6px 22px rgba(0,0,0,0.5);
  --shadow-lg: 0 14px 36px rgba(0,0,0,0.6);
}

* { box-sizing: border-box; }

html {
  overflow-x: hidden;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  width: 100%;
  background:
    radial-gradient(ellipse at top, #1a1512 0%, var(--black) 55%),
    var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
}

h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.5px;
  margin: 0;
}

p, a, button, input, textarea, select, label {
  font-family: var(--font-body);
}

span { font-family: inherit; }

a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font-body); }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

/* iOS Safari: evita el zoom automatico al enfocar inputs/selects */
input, select, textarea { font-size: 16px; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 70px 0;
}

.section--alt {
  background: linear-gradient(180deg, var(--black2), var(--black));
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 4.6vw, 3rem);
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: 1rem;
}

.section-title .accent { color: var(--orange); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 1px;
  font-size: 1.1rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn--orange {
  background: linear-gradient(135deg, var(--orange), var(--flame));
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn--orange:hover { background: linear-gradient(135deg, var(--orange-light), var(--orange)); }

.btn--outline {
  background: rgba(255,255,255,0.06);
  border: 2px solid var(--orange);
  color: var(--white);
}
.btn--outline:hover { background: rgba(255,106,0,0.16); }

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn--whatsapp:hover { background: #1DAE54; }

.btn--small { padding: 9px 18px; font-size: 0.95rem; }
.btn--block { width: 100%; }

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.96);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  border-bottom: 1px solid #262019;
  transition: box-shadow .25s ease, padding .25s ease;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  padding: 5px 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.nav-brand img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-brand span {
  font-family: var(--font-logo);
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: var(--orange);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--white);
  font-size: 0.92rem;
  position: relative;
}

.nav-links a:hover { color: var(--orange); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-pill {
  display: flex;
  border: 2px solid var(--orange);
  border-radius: 50px;
  overflow: hidden;
}

.lang-pill button {
  border: none;
  background: transparent;
  padding: 5px 12px;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--white);
}

.lang-pill button.active {
  background: var(--orange);
  color: var(--black);
}

.nav-call {
  background: linear-gradient(135deg, var(--orange), var(--flame));
  color: var(--white);
  padding: 9px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.nav-call:hover { filter: brightness(1.1); }
.nav-call .call-text { white-space: nowrap; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  width: 24px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.mobile-nav {
  position: fixed;
  top: 60px;
  left: 0; right: 0;
  background: var(--black2);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  padding: 16px 24px;
  gap: 14px;
  transform: translateY(-120%);
  transition: transform .3s ease;
  z-index: 999;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  font-weight: 600;
  font-size: 1.05rem;
  padding: 6px 0;
  border-bottom: 1px solid #2a2a2a;
  color: var(--white);
}

/* ==========================================================================
   Hero + fuego (bolas de fuego subiendo)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('img/hero.png') center/cover no-repeat;
  overflow: hidden;
  padding: 120px 20px 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.35), rgba(10,10,10,0.6));
  z-index: 1;
  pointer-events: none;
}

.hero-fire {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 34%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(230,57,0,0.55) 0%, rgba(255,106,0,0.28) 45%, rgba(255,106,0,0) 100%);
  filter: blur(2px);
  animation: fireFlicker 2.6s ease-in-out infinite;
}

@keyframes fireFlicker {
  0%, 100% { opacity: 0.85; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.08); }
}

.hero-embers {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-embers span {
  position: absolute;
  bottom: -10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold) 0%, var(--orange) 45%, rgba(230,57,0,0) 75%);
  box-shadow: 0 0 8px 2px rgba(255,140,26,0.6);
  animation: emberRise 5s ease-in infinite;
}

@keyframes emberRise {
  0% { transform: translateY(0) scale(0.6); opacity: 0; }
  15% { opacity: 1; }
  100% { transform: translateY(-85vh) scale(1.1); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 740px;
}

.hero-logo {
  /* Pedido del cliente: el doble del tamaño original (230px -> 460px)
     y con efecto de latido de corazón. */
  width: 460px;
  height: 460px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.6));
  animation: heartbeat 1.2s ease-in-out infinite;
}

@keyframes heartbeat {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.hero-title {
  color: var(--white);
  font-family: var(--font-logo);
  font-size: clamp(2.6rem, 8.5vw, 4.6rem);
  line-height: 1.1;
  letter-spacing: 1.5px;
  text-shadow: 0 4px 18px rgba(230,57,0,0.5), 0 2px 6px rgba(0,0,0,0.7);
}

.hero-title .accent { color: var(--orange); font-family: inherit; }

.hero-tagline {
  color: var(--white);
  font-size: clamp(1rem, 2.6vw, 1.2rem);
  opacity: 0.95;
  max-width: 560px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}

.hero-actions .btn { font-size: clamp(1rem, 2.4vw, 1.15rem); padding: 16px 30px; }

.hero-call-btn {
  /* Pedido del cliente: el botón de teléfono del hero más grande que
     el resto de los botones. */
  font-size: clamp(1.15rem, 3vw, 1.4rem) !important;
  padding: 20px 40px !important;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(255,106,0,0.45);
}

.hero-delivery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.hero-delivery-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  transition: transform .2s ease, filter .2s ease;
}
.hero-delivery-badge:hover { transform: translateY(-2px); filter: brightness(1.1); }

.hero-delivery-badge--ubereats { background: #06C167; }
.hero-delivery-badge--doordash { background: #EB1700; }

.hero-delivery-badge-icon { font-size: 1.1rem; }

@media (max-width: 600px) {
  .hero-logo { width: 320px; height: 320px; }
}

@media (max-width: 380px) {
  /* En pantallas muy angostas 320px ya es casi todo el ancho
     disponible, se reduce un poco más para no verse apretado. */
  .hero-logo { width: 250px; height: 250px; }
}

/* ==========================================================================
   Bestsellers slider (nombre + precio)
   ========================================================================== */
.bestsellers {
  padding: 60px 0 40px;
  background: var(--black);
}

.bestsellers-viewport {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.bestsellers-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: bsScroll 30s linear infinite;
}

.bestsellers-track:hover { animation-play-state: paused; }

@keyframes bsScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.bs-card {
  width: 200px;
  flex-shrink: 0;
  background: var(--black2);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--orange);
}

.bs-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.bs-card-body {
  padding: 12px 14px 16px;
  text-align: center;
}

.bs-card-body h4 {
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 4px;
}

.bs-card-body .bs-price {
  color: var(--gold);
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.5px;
  font-size: 1.05rem;
}

/* ==========================================================================
   Menu tabs + grid
   ========================================================================== */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.menu-tab {
  padding: 9px 20px;
  border-radius: 50px;
  border: 2px solid var(--orange);
  background: transparent;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--white);
  transition: background .2s ease, color .2s ease;
}

.menu-tab.active,
.menu-tab:hover {
  background: var(--orange);
  color: var(--black);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width: 900px) {
  .menu-grid { grid-template-columns: repeat(4, 1fr); }
}

.menu-card {
  background: var(--black2);
  border: 1px solid #33291d;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md), 0 0 0 2px var(--orange);
}

.menu-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--flame);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 20px;
  text-transform: uppercase;
  z-index: 2;
}

.menu-card-body {
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.menu-card-body h4 {
  font-size: 0.98rem;
  line-height: 1.25;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
}

.menu-card-desc {
  font-size: 0.76rem;
  color: var(--gray);
  min-height: 0;
}

.menu-card-note {
  font-size: 0.7rem;
  font-style: italic;
  color: var(--gold);
}

/* Precio con "pop" al hover/tap (mismo patron de La Barranquillera) */
.menu-card-price {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--gold);
  font-size: 1.15rem;
  display: inline-block;
  padding: 3px 10px;
  border-radius: 8px;
  transition: transform .18s ease, background .18s ease, color .18s ease;
  width: fit-content;
}

.menu-card-price:hover,
.menu-card-price:active {
  transform: scale(1.12);
  background: var(--orange);
  color: var(--black);
}

.menu-card select {
  padding: 9px 10px;
  border-radius: 10px;
  border: 1px solid #3a3a3a;
  background: #101010;
  color: var(--white);
}

.add-to-cart-btn {
  margin-top: auto;
  background: linear-gradient(135deg, var(--orange), var(--flame));
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 10px 14px;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.6px;
  font-size: 0.9rem;
  transition: filter .2s ease;
}
.add-to-cart-btn:hover { filter: brightness(1.1); }

/* ==========================================================================
   Cart drawer + floating cart button (bottom-left)
   ========================================================================== */
.cart-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--orange), var(--flame));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 1500;
  border: none;
  font-size: 1.5rem;
  color: var(--white);
  transition: transform .2s ease;
}
.cart-float:hover { transform: scale(1.08); }
.cart-float.bounce { animation: cartBounce .5s ease; }
@keyframes cartBounce {
  0%,100% { transform: scale(1); }
  30% { transform: scale(1.3); }
  55% { transform: scale(0.9); }
  75% { transform: scale(1.15); }
}

.cart-float-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 50%;
  min-width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--black);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-panel {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: min(400px, 92vw);
  background: var(--black2);
  z-index: 1999;
  box-shadow: 8px 0 30px rgba(0,0,0,0.6);
  transform: translateX(-100%);
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #33291d;
}
.cart-panel.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #33291d;
}

.cart-header h3 { font-size: 1.3rem; color: var(--orange); letter-spacing: 0.5px; }

.cart-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--white);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-empty {
  text-align: center;
  color: #999;
  margin-top: 40px;
}

.cart-item {
  display: flex;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid #2a2a2a;
  padding-bottom: 12px;
}

.cart-item img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-info h5 {
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--white);
}

.cart-item-info .cart-item-price {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.82rem;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-control button {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #3a3a3a;
  background: #101010;
  color: var(--white);
  font-weight: 700;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #777;
  font-size: 1.1rem;
}
.cart-item-remove:hover { color: var(--flame); }

.cart-footer {
  padding: 16px 20px 22px;
  border-top: 1px solid #33291d;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-totals {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gold);
}

/* ==========================================================================
   Catering
   ========================================================================== */
.catering {
  position: relative;
  background: url('img/catering.png') center/cover no-repeat;
  padding: 80px 0;
}

.catering::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.75), rgba(10,10,10,0.92));
}

.catering .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 900px) {
  .catering .container { grid-template-columns: 1fr 1fr; align-items: center; }
}

.catering-intro h2 { color: var(--orange); text-align: left; margin-bottom: 6px; }
.catering-intro .catering-slogan {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
  display: block;
  font-size: 0.95rem;
}
.catering-intro p { color: var(--white); font-size: 1rem; line-height: 1.7; }

.catering-form {
  background: var(--black2);
  border: 1px solid #33291d;
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.catering-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.catering-form input,
.catering-form select,
.catering-form textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #3a3a3a;
  background: #101010;
  color: var(--white);
  font-family: var(--font-body);
  width: 100%;
}

.catering-form textarea { resize: vertical; min-height: 90px; }

.catering-form .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 520px) {
  .catering-form .form-row.two { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.reviews-header svg { width: 28px; height: 28px; }
.reviews-header .reviews-rating {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--gold);
}
.reviews-header .reviews-stars { color: var(--gold); font-size: 1.1rem; }

.reviews-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: #888;
  margin-top: 24px;
}

.reviews-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.review-card {
  background: var(--black2);
  border: 1px solid #33291d;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.review-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.review-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--flame));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.review-name { font-weight: 700; font-size: 0.88rem; color: var(--white); }
.review-stars { color: var(--gold); font-size: 0.85rem; }
.review-google-badge {
  font-size: 0.65rem;
  color: var(--gray);
  background: rgba(255,255,255,0.06);
  padding: 2px 8px;
  border-radius: 20px;
  align-self: flex-start;
}
.review-text { font-size: 0.83rem; color: var(--gray); line-height: 1.55; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--gray);
}

.contact-hours-lines { display: flex; flex-direction: column; gap: 2px; }

.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.social-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black2);
  border: 1px solid #33291d;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .2s ease;
}
.social-circle:hover { background: var(--orange); transform: translateY(-3px); }
.social-circle svg { width: 20px; height: 20px; fill: var(--white); }
.social-circle:hover svg { fill: var(--black); }

.delivery-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.delivery-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--black2);
  border: 1px solid #33291d;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  transition: border-color .2s ease, transform .2s ease;
}
.delivery-badge:hover { border-color: var(--gold); transform: translateY(-2px); }

.contact-map iframe {
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #33291d;
}

/* ==========================================================================
   Gallery slider — segundo slider, modelo distinto al de bestsellers:
   un slide grande a la vez, con flechas y puntos de navegación
   (control manual + autoplay), en vez del scroll continuo pasivo.
   ========================================================================== */
.gallery-section { background: var(--black2); }

.gallery-slider {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.gallery-slide-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 10;
}

.gallery-slide-track {
  display: flex;
  height: 100%;
  transition: transform .5s ease;
}

.gallery-slide {
  flex: 0 0 100%;
  position: relative;
  height: 100%;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-slide-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 24px;
  background: linear-gradient(0deg, rgba(0,0,0,0.85), rgba(0,0,0,0));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.gallery-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid var(--orange);
  color: var(--orange);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, color .2s ease;
}
.gallery-arrow:hover { background: var(--orange); color: var(--black); }

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4a4a4a;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s ease, transform .2s ease;
}
.gallery-dot.active { background: var(--orange); transform: scale(1.25); }

@media (max-width: 600px) {
  .gallery-slider { gap: 8px; }
  .gallery-arrow { width: 36px; height: 36px; font-size: 1.3rem; }
  .gallery-slide-caption { font-size: 1rem; padding: 14px 16px; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--black);
  color: #ccc;
  padding: 40px 0 20px;
  text-align: center;
  border-top: 1px solid #262019;
}

.footer-credit {
  font-weight: 700;
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: 18px;
}
.footer-credit a { color: var(--gold); }
.footer-credit a:hover { text-decoration: underline; }

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 18px 0;
}

.footer p { font-size: 0.85rem; color: #b0aaa0; margin: 4px 0; }

.footer-bottom {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #262019;
  font-size: 0.75rem;
  color: #777;
}

/* ==========================================================================
   Floating WhatsApp button (bottom-right, cart float is bottom-left)
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 1500;
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; }

/* ==========================================================================
   Mobile optimizations (critical)
   ========================================================================== */
@media (max-width: 600px) {
  .nav-call .call-text { display: none; }
  .nav-call { padding: 9px 11px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-actions { gap: 8px; }
  .lang-pill button { padding: 5px 9px; font-size: 0.75rem; }
  .section { padding: 50px 0; }
  .nav-brand span { font-size: 0.9rem; max-width: 110px; }
}

@media (max-width: 360px) {
  .nav-brand span { display: none; }
}

@media (max-width: 480px) {
  .hero { padding: 110px 16px 60px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .cart-float, .whatsapp-float { width: 50px; height: 50px; }
}
