/* ==========================================================================
   Hecto's Hamburgués & Tacos and Catering — styles.css
   ========================================================================== */

:root {
  --black: #0D0D0D;
  --black2: #1A1A1A;
  --red: #E31E24;
  --red-dark: #B5171C;
  --yellow: #FFC72C;
  --yellow-dark: #D6A61E;
  --green: #2E8B37;
  --cream: #F5F5F0;

  --font-display: 'Anton', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.35);
  --shadow-md: 0 6px 20px rgba(0,0,0,0.45);
  --shadow-lg: 0 12px 34px rgba(0,0,0,0.55);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  overflow-x: hidden;
  width: 100%;
  background: var(--black);
  color: var(--cream);
  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, span, a, button, input, textarea, select, label {
  font-family: var(--font-body);
}

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; }

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

.section {
  padding: 70px 0;
}

.section--alt {
  background: var(--black2);
}

.section-title {
  text-align: center;
  font-size: clamp(1.9rem, 4.4vw, 2.8rem);
  color: var(--yellow);
  margin-bottom: 8px;
}

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

/* ==========================================================================
   Galería
   ========================================================================== */
.gallery-section {
  background: var(--black);
  padding-bottom: 60px;
}

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

.gallery-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: gscroll 60s linear infinite;
}

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

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

.gallery-item {
  width: 220px;
  height: 220px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,199,44,0.2);
}

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

@media (max-width: 600px) {
  .gallery-item { width: 150px; height: 150px; }
}

/* ==========================================================================
   Servicios para Eventos
   ========================================================================== */
.events-services {
  background: var(--black2);
}

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

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

.event-card {
  background: var(--black);
  border: 1px solid rgba(255,199,44,0.2);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.5);
}

.event-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 10px;
}

.event-card h3 {
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.event-card p {
  color: #cfcfc9;
  font-size: 0.85rem;
  flex-grow: 1;
}

.event-card .btn {
  width: 100%;
  font-size: 0.85rem;
}

@media (max-width: 600px) {
  .events-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .event-card { padding: 12px; }
}

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

.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: 0.5px;
  font-size: 1.05rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}

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

.btn--red {
  background: var(--red);
  color: var(--cream);
  box-shadow: var(--shadow-md);
}
.btn--red:hover { background: var(--red-dark); }

.btn--yellow {
  background: var(--yellow);
  color: var(--black);
  box-shadow: var(--shadow-sm);
}
.btn--yellow:hover { background: var(--yellow-dark); }

.btn--outline {
  background: transparent;
  border: 2px solid var(--yellow);
  color: var(--yellow);
}
.btn--outline:hover { background: rgba(255,199,44,0.12); }

.btn--green {
  background: var(--green);
  color: var(--cream);
}
.btn--green:hover { background: #256e2c; }

/* ==========================================================================
   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: var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  border-bottom: 1px solid #262626;
  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: 48px;
  width: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-brand span {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.5px;
  font-size: 1.1rem;
  color: var(--yellow);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

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

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

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

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

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

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

.nav-call {
  background: var(--red);
  color: var(--cream);
  padding: 9px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.nav-call:hover { background: var(--red-dark); }
.nav-call .call-text { white-space: nowrap; }

.cart-btn {
  position: relative;
  background: var(--black2);
  border: 1px solid #333;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--cream);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--red);
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 700;
  border-radius: 50%;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

.cart-btn.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); }
}

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

.mobile-nav {
  position: fixed;
  top: 64px;
  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;
}
.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(--cream);
}

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

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

.hero-fire {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(227,30,36,0.55) 0%, rgba(255,199,44,0.25) 40%, rgba(255,199,44,0) 100%);
  filter: blur(6px);
  animation: fireFlicker 3s ease-in-out infinite alternate;
}

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

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

.hero-embers span {
  position: absolute;
  bottom: -20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #FFC72C 0%, #E31E24 55%, rgba(227,30,36,0) 75%);
  box-shadow: 0 0 8px 2px rgba(255,199,44,0.7);
  animation: emberRise 5s ease-in infinite;
}

.hero-embers span:nth-child(1)  { left: 6%;  width: 8px;  height: 8px;  animation-delay: 0s;   animation-duration: 5.5s; }
.hero-embers span:nth-child(2)  { left: 15%; width: 12px; height: 12px; animation-delay: 0.8s; animation-duration: 6.2s; }
.hero-embers span:nth-child(3)  { left: 24%; width: 7px;  height: 7px;  animation-delay: 1.6s; animation-duration: 4.8s; }
.hero-embers span:nth-child(4)  { left: 35%; width: 10px; height: 10px; animation-delay: 0.4s; animation-duration: 5.9s; }
.hero-embers span:nth-child(5)  { left: 46%; width: 9px;  height: 9px;  animation-delay: 2.2s; animation-duration: 5.2s; }
.hero-embers span:nth-child(6)  { left: 55%; width: 13px; height: 13px; animation-delay: 1.1s; animation-duration: 6.5s; }
.hero-embers span:nth-child(7)  { left: 64%; width: 8px;  height: 8px;  animation-delay: 2.8s; animation-duration: 5s; }
.hero-embers span:nth-child(8)  { left: 73%; width: 11px; height: 11px; animation-delay: 0.6s; animation-duration: 6s; }
.hero-embers span:nth-child(9)  { left: 82%; width: 7px;  height: 7px;  animation-delay: 1.9s; animation-duration: 4.6s; }
.hero-embers span:nth-child(10) { left: 90%; width: 10px; height: 10px; animation-delay: 2.5s; animation-duration: 5.7s; }
.hero-embers span:nth-child(11) { left: 40%; width: 6px;  height: 6px;  animation-delay: 3.3s; animation-duration: 4.4s; }
.hero-embers span:nth-child(12) { left: 68%; width: 6px;  height: 6px;  animation-delay: 3.8s; animation-duration: 4.9s; }

@keyframes emberRise {
  0%   { transform: translateY(0) scale(0.6); opacity: 0; }
  12%  { opacity: 1; }
  100% { transform: translateY(-95vh) scale(1.15); opacity: 0; }
}

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

.hero-logo {
  width: 220px;
  height: 220px;
  object-fit: contain;
  animation: heartbeat 1.8s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.08); }
  40% { transform: scale(1); }
  60% { transform: scale(1.05); }
}

.hero-badge {
  background: var(--red);
  color: var(--cream);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 18px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}

.hero-title {
  color: var(--yellow);
  font-size: clamp(2.1rem, 7.5vw, 3.8rem);
  -webkit-text-stroke: 1.5px #000;
  text-shadow:
    2px 2px 0 #000,
    -2px 2px 0 #000,
    2px -2px 0 #000,
    -2px -2px 0 #000;
  line-height: 1.1;
}

.hero-tagline {
  color: var(--cream);
  font-size: clamp(1rem, 2.6vw, 1.25rem);
  opacity: 0.95;
  max-width: 560px;
}

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

.hero-actions .btn { font-size: clamp(0.9rem, 2.4vw, 1.05rem); }

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

/* ==========================================================================
   Bestsellers slider
   ========================================================================== */
.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 26s 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: 1px solid #3a2f0f;
}

.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: 1rem;
  margin-bottom: 4px;
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 600;
}

.bs-card-body .bs-price {
  color: var(--yellow);
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.3px;
}

.bs-card-body .price-ref-badge { display: block; margin-top: 2px; }

/* ==========================================================================
   Menu
   ========================================================================== */
.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(--yellow);
  background: transparent;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--cream);
  transition: background .2s ease, color .2s ease;
}

.menu-tab.active,
.menu-tab:hover {
  background: var(--yellow);
  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 #3a2f0f;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--yellow);
}

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

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

.img-ref-badge {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(0,0,0,0.65);
  color: var(--cream);
  font-size: 0.6rem;
  padding: 3px 7px;
  border-radius: 20px;
  letter-spacing: 0.2px;
}

.product-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--red);
  color: var(--cream);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 20px;
  text-transform: uppercase;
}

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

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

.menu-card-desc {
  font-size: 0.78rem;
  color: #b8b8b2;
  min-height: 0;
}

.menu-card-price-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.menu-card-price {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.3px;
  color: var(--yellow);
  font-size: 1.1rem;
  border-bottom: 2px dotted var(--green);
  padding-bottom: 6px;
  display: inline-block;
}

.price-ref-badge {
  font-size: 0.68rem;
  font-style: italic;
  color: #9a9a94;
}

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

.add-to-cart-btn {
  margin-top: auto;
  background: var(--red);
  color: var(--cream);
  border: none;
  border-radius: 50px;
  padding: 10px 14px;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.4px;
  font-size: 0.92rem;
  transition: background .2s ease;
}
.add-to-cart-btn:hover { background: var(--red-dark); }

/* ==========================================================================
   Cart panel
   ========================================================================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  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; right: 0;
  height: 100vh;
  width: min(400px, 92vw);
  background: var(--black2);
  z-index: 1999;
  box-shadow: -8px 0 30px rgba(0,0,0,0.5);
  transform: translateX(100%);
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #333;
}
.cart-panel.open { transform: translateX(0); }

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

.cart-header h3 { font-size: 1.3rem; color: var(--yellow); }

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

.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: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

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

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

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

.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(--cream);
  font-weight: 700;
}

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

.cart-footer {
  padding: 18px 20px 24px;
  border-top: 1px solid #333;
}

.cart-totals {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  margin-bottom: 6px;
  color: #cfcfc9;
}

.cart-totals.total {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--yellow);
  margin-bottom: 16px;
}

.whatsapp-checkout-btn {
  width: 100%;
  background: var(--green);
  color: var(--cream);
  border: none;
  border-radius: 50px;
  padding: 14px;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.4px;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.whatsapp-checkout-btn:hover { background: #256e2c; }

/* ==========================================================================
   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(13,13,13,0.7), rgba(13,13,13,0.88));
}

.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(--yellow); }
.catering-intro p { color: var(--cream); }
.catering-intro h2 { text-align: left; margin-bottom: 14px; }
.catering-intro p { font-size: 1rem; opacity: 0.92; line-height: 1.7; }

.catering-form {
  background: var(--black2);
  border: 1px solid #333;
  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(--cream);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.catering-form input,
.catering-form textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #3a3a3a;
  background: #101010;
  color: var(--cream);
  font-size: 0.92rem;
  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 span {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.4px;
  font-size: 1.5rem;
  color: var(--yellow);
}

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

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

.review-card {
  background: var(--black2);
  border: 1px solid #333;
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.review-stars { color: var(--yellow); margin-bottom: 8px; font-size: 0.95rem; }
.review-name { font-weight: 700; font-size: 0.92rem; margin-bottom: 6px; color: var(--cream); }
.review-text { font-size: 0.85rem; color: #c4c4be; line-height: 1.55; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

@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: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #d8d8d2;
}

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

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

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

.contact-note {
  font-size: 0.85rem;
  color: #999;
  font-style: italic;
}

.contact-map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,199,44,0.25);
  filter: grayscale(0.3) contrast(1.05);
}

.contact-map iframe {
  display: block;
}

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

.footer-brand {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.5px;
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--yellow);
}

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

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

.footer-bottom {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #262626;
  font-size: 0.75rem;
  color: #777;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-credit {
  margin-top: 8px;
  text-align: center;
}

.footer-credit a {
  color: var(--yellow);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}
.footer-credit a:hover { text-decoration: underline; }

.footer-legal {
  font-size: 0.72rem;
  color: #666;
}

/* ==========================================================================
   Floating WhatsApp button
   ========================================================================== */
.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-brand span { display: none; }
  .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; }
  .cart-btn { width: 38px; height: 38px; }
  .section { padding: 50px 0; }
}

@media (max-width: 480px) {
  .hero { padding: 110px 16px 60px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .bs-card { width: 160px; }
}
