/* ========================================
   SECTIONS.CSS — MarMon Pizza
   Estilos específicos de cada sección
   ======================================== */

/* ================================================================
   HERO
   ================================================================ */
#hero {
  height: 100vh;
  width: 100vw;
  position: relative;
  overflow: hidden;
}

#hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 6vw;
  padding-right: 45vw;
}

.hero-eyebrow {
  font-size: var(--text-small);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 2rem;
  display: block;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--text-light);
  margin-bottom: 2rem;
}
.hero-line {
  display: block;
  overflow: hidden;
}
.hero-accent {
  color: var(--primary);
  text-shadow: 0 0 60px rgba(245, 166, 35, 0.4);
}

.hero-sub {
  font-size: var(--text-body);
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 3rem;
  max-width: 32rem;
}

.hero-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--primary));
  margin: 1rem auto 0;
  animation: scrollHint 2s ease-in-out infinite;
}

/* ================================================================
   MARQUEE
   ================================================================ */
.marquee {
  overflow: hidden;
  padding: clamp(2rem, 4vw, 4rem) 0;
  background: var(--bg-darkest);
  border-top: 1px solid rgba(245, 166, 35, 0.08);
  border-bottom: 1px solid rgba(245, 166, 35, 0.08);
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  font-family: var(--font-display);
  font-size: var(--text-marquee);
  font-weight: 900;
  color: var(--primary);
  will-change: transform;
  letter-spacing: -0.02em;
}

.marquee-alt .marquee-track {
  -webkit-text-stroke: 1px var(--primary);
  color: transparent;
}

.marquee-dot {
  color: var(--accent-red);
  font-size: 0.6em;
}

/* ================================================================
   ABOUT / HISTORIA
   ================================================================ */
.about {
  padding: clamp(4rem, 8vw, 10rem) clamp(1.5rem, 6vw, 6vw);
  background: var(--bg-dark);
  position: relative;
}

.about-image-wrap {
  position: relative;
  aspect-ratio: 3 / 2;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease;
  will-change: transform;
}

/* ---- History Photo Stack (cross-dissolve) ---- */
.history-photo-stack {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  z-index: 2;
}

.history-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 8px;
  transition: opacity 1s ease;
}

.history-photo--fachada {
  opacity: 1;
  z-index: 2;
  animation: crossfadeTop 4s infinite;
}

.history-photo--team {
  opacity: 1;
  z-index: 1;
}

@keyframes crossfadeTop {
  0%, 40% { opacity: 1; }
  50%, 90% { opacity: 0; }
  100% { opacity: 1; }
}


.about-image-bg {
  position: absolute;
  inset: -2rem -2rem 2rem 2rem;
  border: 1px solid var(--primary);
  border-radius: 8px;
  z-index: 1;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

@media (max-width: 768px) {
  .about-cards {
    grid-template-columns: 1fr;
  }
}

.about-card {
  background: var(--bg-card);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(245, 166, 35, 0.08);
  text-align: center;
  transition: all 0.4s ease;
}
.about-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.about-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}
.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.about-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ================================================================
   STATS
   ================================================================ */
.stats {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 6vw, 6vw);
  background: var(--bg-darkest);
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-item { padding: 2rem 1rem; }

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}

.stat-label {
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ================================================================
   GALLERY
   ================================================================ */
.gallery {
  padding: clamp(4rem, 8vw, 10rem) clamp(1rem, 4vw, 6vw);
  background: var(--bg-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 1500px;
  margin: 0 auto;
}

.gallery-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transform-style: preserve-3d;
  will-change: transform;
  transition: box-shadow 0.4s ease;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

.gallery-card:hover {
  box-shadow: var(--shadow-gold);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.5rem;
  transition: opacity 0.4s;
}

.gallery-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
  transition: transform 0.4s;
}

.gallery-overlay p {
  font-size: 0.875rem;
  color: var(--primary);
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s 0.1s;
}

.gallery-card:hover .gallery-overlay p {
  transform: translateY(0);
  opacity: 1;
}

/* ----------------------------------------------------------------
   STARS CROSSFADE — Dual-Set Gallery "Nuestras Estrellas"
   ---------------------------------------------------------------- */
.stars-flip-container {
  display: grid;          /* stacking context for both sets */
  max-width: 1500px;
  margin: 0 auto;
}

/* Both sets occupy the same grid cell → stacked */
.stars-set {
  grid-area: 1 / 1 / 2 / 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
}

.stars-set.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Individual cards within each set */
.star-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  will-change: transform;
  transition: box-shadow 0.4s ease;
}

.star-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.star-card:hover img {
  transform: scale(1.1);
}

.star-card:hover {
  box-shadow: var(--shadow-gold);
}

.star-card h3 {
  position: absolute;
  bottom: 2.5rem;
  left: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-light);
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  z-index: 2;
}

.star-card p {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  right: 1.5rem;
  font-size: 0.875rem;
  color: var(--primary);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s 0.1s;
  z-index: 2;
}

.star-card:hover p {
  opacity: 1;
  transform: translateY(0);
}

/* Gradient overlay on cards */
.star-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* Responsive: tablet 2 cols, mobile 1 col */
@media (max-width: 1024px) {
  .stars-set {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .stars-set {
    grid-template-columns: 1fr;
  }
}

/* Reduced motion: instant crossfade */
@media (prefers-reduced-motion: reduce) {
  .stars-set {
    transition: opacity 0.3s ease;
  }
}

/* ---- Stars Gallery Dot Indicators ---- */
.stars-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
  grid-column: 1 / -1;
  position: relative;
  z-index: 5;
}
.stars-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.stars-dot:hover {
  background: rgba(255,255,255,0.5);
  transform: scale(1.2);
}
.stars-dot.is-active {
  background: var(--accent-orange, #f5a623);
  transform: scale(1.3);
}

/* ================================================================
   MENU
   ================================================================ */
.menu-section {
  padding: clamp(4rem, 8vw, 10rem) clamp(1rem, 4vw, 6vw);
  background: var(--bg-darkest);
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.menu-tab {
  background: transparent;
  border: 1px solid rgba(245, 166, 35, 0.2);
  color: var(--text-muted);
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.menu-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.menu-tab.active {
  background: var(--primary);
  color: var(--bg-darkest);
  border-color: var(--primary);
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem) clamp(1.5rem, 3vw, 3rem);
  max-width: 1200px;
  margin: 0 auto;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(245, 166, 35, 0.08);
  animation: fadeInUp 0.6s ease backwards;
  transition: background 0.3s, border-radius 0.3s;
}
.menu-item:hover {
  background: rgba(245, 166, 35, 0.03);
  border-radius: 8px;
}

.menu-item-info { flex: 1; }
.menu-item-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.menu-item-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.menu-item-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
  flex-shrink: 0;
}

.menu-item-size {
  background: var(--bg-card);
  border: 1px solid rgba(245, 166, 35, 0.15);
  color: var(--text-light);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.8rem;
  cursor: pointer;
  min-width: 200px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23F5A623' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
}
.menu-item-size:focus {
  outline: none;
  border-color: var(--primary);
}

.btn-add-cart {
  background: var(--primary);
  color: var(--bg-darkest);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  font-size: 0.875rem;
  white-space: nowrap;
}
.btn-add-cart:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ================================================================
   DELIVERY / DOMICILIOS
   ================================================================ */
.delivery {
  padding: clamp(4rem, 8vw, 10rem) clamp(1.5rem, 6vw, 6vw);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--bg-darkest);
}

.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}

.delivery-accent {
  color: var(--bg-darkest);
  display: block;
}

.delivery-text {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--bg-darkest);
  opacity: 0.85;
  margin-bottom: 3rem;
  max-width: 32rem;
}

.btn-delivery {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-darkest);
  color: var(--primary);
  padding: 1.5rem 2.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.125rem;
  transition: all 0.3s;
}
.btn-delivery:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.delivery-map iframe {
  border-radius: 16px;
  border: none;
  width: 100%;
  height: 450px;
}

/* ================================================================
   TESTIMONIALS — Carrusel Infinito
   ================================================================ */
.testimonials-section {
  padding: clamp(4rem, 8vw, 10rem) 0;
  background: var(--bg-dark);
  overflow: hidden;
}
.testimonials-section .section-header {
  padding: 0 6vw;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-dim);
  margin-top: -0.5rem;
}

.testimonials-carousel {
  overflow: hidden;
  padding: 2rem 0;
  position: relative;
  width: 100%;
}

.testimonials-carousel::before,
.testimonials-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 2;
  pointer-events: none;
}
.testimonials-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-dark), transparent);
}
.testimonials-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-dark), transparent);
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scroll-tickets 60s linear infinite;
  padding: 1rem 0;
}

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

@keyframes scroll-tickets {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 0.75rem)); }
}

/* ---- Ticket Card ---- */
.testimonial-ticket {
  width: 420px;
  height: 320px;
  flex-shrink: 0;
  background: var(--bg-card);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(245, 166, 35, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s ease;
}
.testimonial-ticket:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

/* ---- Ticket Header ---- */
.ticket-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.ticket-user {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.ticket-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--bg-darkest);
  flex-shrink: 0;
}

.ticket-info h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.ticket-location {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  display: block;
}

.ticket-stars {
  color: var(--primary);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.ticket-social {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}
.ticket-social.facebook { color: #1877F2; }
.ticket-social.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Ticket Comment ---- */
.ticket-comment {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--text-light);
  margin: 0;
  padding: 1.5rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---- Ticket Footer ---- */
.ticket-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}

.ticket-date {
  color: var(--text-dim);
}

.ticket-verified {
  color: #25D366;
  background: rgba(37, 211, 102, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-weight: 500;
}

/* ================================================================
   FINAL CTA
   ================================================================ */
.final-cta {
  padding: clamp(5rem, 10vw, 12rem) clamp(1.5rem, 6vw, 6vw);
  background: radial-gradient(ellipse at center, rgba(245, 166, 35, 0.1) 0%, transparent 70%), var(--bg-darkest);
  text-align: center;
}

.final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--text-light);
  margin-bottom: 2rem;
  letter-spacing: -0.03em;
}

.final-cta-sub {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 4rem;
}

.btn-mega {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--whatsapp);
  color: white;
  padding: 2rem 4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.5rem;
  box-shadow: 0 0 60px rgba(37, 211, 102, 0.3);
  transition: all 0.3s;
}
.btn-mega:hover {
  transform: scale(1.05);
  box-shadow: 0 0 100px rgba(37, 211, 102, 0.5);
}

.final-cta-social {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.final-cta-social a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid rgba(245, 166, 35, 0.2);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 1.125rem;
}
.final-cta-social a:hover {
  background: var(--primary);
  color: var(--bg-darkest);
  transform: translateY(-4px);
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 6vw, 6vw) 2rem;
  background: var(--bg-darkest);
  border-top: 1px solid rgba(245, 166, 35, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto 4rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--text-muted);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.footer-col p {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.footer-col i { color: var(--primary); margin-top: 4px; flex-shrink: 0; }

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-social a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.9rem;
}
.footer-social a:hover { color: var(--primary); }

/* Schedule list in footer */
.footer-horarios {
  margin-top: 0.75rem;
}
.footer-horarios ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 1.75rem;
}
.footer-horarios li {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.8;
}
.footer-horarios li:first-child {
  color: #e74c3c;
  font-weight: 500;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 166, 35, 0.08);
  text-align: center;
  color: var(--text-dim);
  font-size: 0.875rem;
}

/* ================================================================
   MENU TAB DECORATIVE BACKGROUNDS
   ================================================================ */
.menu-panel { position: relative; }
.menu-panel > *:not(.menu-tab-bg) { position: relative; z-index: 1; }

.menu-tab-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
  filter: blur(2px);
  transition: opacity 0.4s ease;
}
