/* Global Reset and Base Styles */
:root {
  --primary: #E63946;
  --secondary: #F4A261;
  --accent: #FFD166;
  --bg-dark: #121212;
  --bg-darker: #0d0d0d;
  --text-light: #F1FAEE;
  --text-muted: #A8DADC;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  --container: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.highlight {
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 800;
}

.subtitle {
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  font-weight: 600;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 3rem;
  margin-top: 0.5rem;
}

.mt-4 { margin-top: 2rem; }
.text-center { text-align: center; }
.full-width { width: 100%; }
.hidden { display: none !important; }

/* Buttons */
.btn-primary {
  background-color: var(--primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-block;
  box-shadow: 0 5px 20px rgba(230, 57, 70, 0.4);
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.6);
  background-color: #ff4d5a;
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  border: 1px solid var(--text-light);
  cursor: pointer;
  display: inline-block;
}

.btn-secondary:hover {
  background-color: var(--text-light);
  color: var(--bg-dark);
}

.btn-outline {
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
}

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
}

/* Header & Nav */
header {
  height: 90px;
  display: flex;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  background: rgba(18, 18, 18, 0.8);
  backdrop-filter: blur(20px);
  height: 70px;
  border-bottom: 1px solid var(--glass-border);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
}

.text-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 2.6rem;
  color: #ffffff;
  letter-spacing: -1px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6), 0px 4px 20px rgba(230, 57, 70, 0.4);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  align-items: flex-start;
  transition: var(--transition);
}

header.scrolled .text-logo {
  font-size: 1.8rem;
}

.text-logo:hover {
  transform: scale(1.05);
  color: var(--primary);
}

.reg-mark {
  font-size: 0.8rem;
  font-weight: 400;
  margin-left: 2px;
  margin-top: 6px;
  letter-spacing: 0;
}
.nav-links {
  display: flex;
  gap: 3rem;
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
  padding-bottom: 2rem;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 50%, rgba(230, 57, 70, 0.1), transparent);
  z-index: -1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 4rem;
}

.hero-text h1 {
  font-size: 5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
}

.hero-image-container img {
  width: 100%;
  border-radius: 30px;
  transform: rotate(5deg);
  box-shadow: var(--shadow);
}

.floating {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px) rotate(5deg); }
  50% { transform: translateY(-30px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(5deg); }
}

/* Promotions Section */
.promotions-section {
  padding: 6rem 0 2rem;
  background: var(--bg-dark);
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.promo-card {
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.08), rgba(255, 209, 102, 0.03));
  border: 1px solid rgba(230, 57, 70, 0.3);
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(230, 57, 70, 0.15);
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.12), rgba(255, 209, 102, 0.06));
  border-color: var(--primary);
}

.promo-icon {
  background: var(--primary);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
}

.promo-icon i {
  width: 28px;
  height: 28px;
}

.promo-content h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.promo-content p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.promo-badge {
  display: inline-block;
  background: rgba(255, 209, 102, 0.15);
  color: var(--accent);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 209, 102, 0.3);
}

@media (max-width: 768px) {
  .promo-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Loyalty Banner */
.loyalty-banner {
  margin-top: 3rem;
  background: linear-gradient(135deg, var(--primary), #b02a36);
  border-radius: 20px;
  padding: 2.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 15px 40px rgba(230, 57, 70, 0.4);
}

.loyalty-content h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.loyalty-content h3 i {
  width: 32px;
  height: 32px;
}

.loyalty-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.loyalty-btn {
  background-color: var(--accent);
  color: var(--bg-dark);
  box-shadow: 0 5px 20px rgba(255, 209, 102, 0.4);
}

.loyalty-btn:hover {
  background-color: #ffd87d;
  box-shadow: 0 8px 30px rgba(255, 209, 102, 0.6);
  color: var(--bg-dark);
}

@media (max-width: 768px) {
  .loyalty-banner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem;
  }
}

/* Full Menu Section */
.full-menu {
  background-color: var(--bg-darker);
  padding: 8rem 0;
}

.special-offer-banner {
  background: var(--primary);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
  box-shadow: 0 15px 40px rgba(230, 57, 70, 0.3);
}

.offer-content h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.offer-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.offer-prices {
  display: flex;
  gap: 1.5rem;
}

.price-badge {
  background: var(--bg-dark);
  padding: 1.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.price-badge span {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.price-badge strong {
  font-size: 2.5rem;
  color: white;
  line-height: 1;
}

.price-badge.familiar strong {
  color: var(--secondary);
}

.full-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Spinner de carga del menú */
.menu-loading-spinner {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 3rem;
  color: var(--text-muted);
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Títulos de categoría del menú */
.menu-category-title {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.menu-category-title h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  position: relative;
  display: inline-block;
}

.menu-category-title h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin-top: 0.3rem;
  border-radius: 99px;
}

/* Precio en tarjeta del menú */
.pizza-price {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.pizza-price-badge {
  background: rgba(230, 57, 70, 0.12);
  border: 1px solid rgba(230, 57, 70, 0.3);
  border-radius: 8px;
  padding: 0.2rem 0.7rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.4;
}

.pizza-price-badge span {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pizza-price-badge strong {
  color: var(--accent);
  font-size: 0.9rem;
}

.menu-item-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.menu-item-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.pizza-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid var(--glass-border);
}

.pizza-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pizza-info h4 {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.pizza-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.pricing-info-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 5rem;
  background: rgba(0,0,0,0.3);
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid var(--glass-border);
}

.custom-pizza-section h3 {
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.custom-pizza-section p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.custom-pizza-section p strong {
  color: var(--primary);
}

.pricing-tables-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.size-pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

.size-pricing-table th, 
.size-pricing-table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px dashed var(--glass-border);
}

.size-pricing-table th {
  font-weight: 600;
  color: var(--text-light);
}

.size-pricing-table th span {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
}

.size-pricing-table td:first-child {
  text-align: left;
  color: var(--text-muted);
}

.size-pricing-table .highlight-row td {
  color: var(--accent);
  font-weight: 800;
  font-size: 1.2rem;
}

.size-pricing-table .highlight-row td:first-child {
  color: var(--accent);
}

.mitad-mitad {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: right;
  font-style: italic;
}

.normal-prices-box {
  grid-column: 1 / -1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
}

.normal-prices-box h3 {
  color: white;
  margin-bottom: 1.5rem;
}

.normal-prices-list {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 1rem;
}

.np-item {
  display: flex;
  flex-direction: column;
}

.np-item span {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.np-item strong {
  font-size: 2.2rem;
  color: var(--text-light);
}

.normal-prices-box p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 900px) {
  .special-offer-banner {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .pricing-info-container {
    grid-template-columns: 1fr;
  }
  .offer-prices {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* About Section */
.about-section {
  padding: 8rem 0;
}

.split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.experience-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background-color: var(--primary);
  color: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.experience-badge .years {
  font-size: 2.5rem;
  font-weight: 800;
}

.experience-badge .text {
  font-size: 0.8rem;
  text-transform: uppercase;
}

.features-list {
  margin: 2rem 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.features-list i {
  color: var(--primary);
}

/* Contact Section */
.contact-section {
  padding: 8rem 0;
  background-color: var(--bg-darker);
}

.contact-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 4rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-item i {
  color: var(--primary);
  margin-top: 0.3rem;
}

.contact-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.contact-item p {
  color: var(--text-muted);
}

.schedule-list {
  list-style: none;
  margin-top: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.schedule-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.4rem;
  border-bottom: 1px dashed var(--glass-border);
  padding-bottom: 0.4rem;
  gap: 1.5rem;
}

.schedule-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.schedule-list .day {
  font-weight: 600;
  color: var(--text-light);
}

.schedule-list .hours {
  text-align: right;
}

.contact-form input, 
.contact-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  padding: 1.2rem;
  border-radius: 12px;
  color: white;
  margin-bottom: 1.5rem;
  font-family: inherit;
  font-size: 1rem;
}

.contact-form input:focus, 
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
}

/* Footer */
footer {
  padding: 6rem 0 2rem;
  border-top: 1px solid var(--glass-border);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  margin: 1.5rem 0;
  color: var(--text-muted);
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: var(--glass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-5px);
}

.footer-links h4, .footer-newsletter h4 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links ul li {
  margin-bottom: 0.8rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 0.8rem 1rem;
  border-radius: 8px;
  color: white;
}

.newsletter-form button {
  background: var(--primary);
  border: none;
  padding: 0 1.5rem;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Reveal Animations */
[data-reveal] {
  opacity: 0;
  transition: all 0.8s ease-out;
}

[data-reveal="left"] { transform: translateX(-50px); }
[data-reveal="right"] { transform: translateX(50px); }
[data-reveal="bottom"] { transform: translateY(50px); }

[data-reveal].active {
  opacity: 1 !important;
  transform: translate(0) !important;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text h1 { font-size: 3.5rem; }
  .hero-text p { margin: 0 auto 2.5rem; max-width: 600px; }
  .hero-btns { justify-content: center; flex-wrap: wrap; }
  .split-container { grid-template-columns: 1fr; gap: 4rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .hero-image-container { max-width: 400px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .desktop-only { display: none; }
  .mobile-menu-btn { display: block; }
  .nav-links { display: none; }
  .footer-content { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 2.4rem; }
  .hero-text p { font-size: 1rem; }
  .hero-btns { gap: 0.8rem; }
  .hero-btns a, .hero-btns button { font-size: 0.95rem; padding: 0.8rem 1.4rem; }
  .text-logo { font-size: 1.8rem !important; }
  .contact-card { padding: 1.5rem; }
  .contact-info h2 { font-size: 1.8rem; }
  .section-title h2 { font-size: 2rem; }
  .pricing-info-container { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.5rem; }
  .size-pricing-table th, .size-pricing-table td { padding: 0.6rem 0.4rem; font-size: 0.85rem; }
  .btn-toggle-menu { font-size: 0.95rem; padding: 0.8rem 1.5rem; }
  .full-menu { padding: 4rem 0; }
  .about-section { padding: 4rem 0; }
  .contact-section { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 2rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns a, .hero-btns button { width: 100%; text-align: center; justify-content: center; }
  .container { padding: 0 1rem; }
  .contact-card { padding: 1.2rem; border-radius: 16px; }
  .vip-card { padding: 1.5rem; }
  .normal-prices-list { gap: 2rem; }
  .offer-content h3 { font-size: 1.4rem; }
  .loyalty-content h3 { font-size: 1.3rem; }
  .loyalty-banner { padding: 1.5rem; }
  .experience-badge { bottom: -20px; right: -10px; padding: 1rem; }
  .experience-badge .years { font-size: 1.8rem; }
}

/* Mobile Menu Overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.open {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  opacity: 1;
}

.mobile-nav-content {
  background: #1a1a1a;
  border-left: 1px solid var(--glass-border);
  width: min(320px, 85vw);
  height: 100%;
  padding: 6rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  animation: slideInRight 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

.mobile-nav-content ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  display: block;
  padding: 1rem 1.2rem;
  font-size: 1.3rem;
  font-weight: 600;
  border-radius: 12px;
  color: var(--text-light);
  transition: var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  background: var(--glass);
  color: var(--primary);
  padding-left: 1.6rem;
}


/* --- VIP Loyalty App Styles --- */
.vip-body {
  background-color: var(--bg-dark);
}

.vip-header {
  position: static;
  border-bottom: 1px solid var(--glass-border);
  background: var(--bg-darker);
}

.vip-main {
  padding: 4rem 0;
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
}

.vip-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.vip-header-text h2 {
  color: var(--primary);
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.vip-header-text p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.progress-container {
  margin: 3rem 0;
  background: rgba(0,0,0,0.3);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
}

.progress-status {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.slots-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.slot {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px dashed rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition);
}

.slot.stamped {
  background: rgba(230, 57, 70, 0.1);
  border: 2px solid var(--primary);
  box-shadow: 0 0 15px rgba(230, 57, 70, 0.4);
}

.slot.gift-slot {
  border-color: var(--accent);
  width: 80px;
  height: 80px;
  background: rgba(255, 209, 102, 0.05);
}

.slot.gift-slot.stamped {
  background: rgba(255, 209, 102, 0.2);
  box-shadow: 0 0 20px rgba(255, 209, 102, 0.6);
}

.icon-empty {
  color: rgba(255,255,255,0.1);
  width: 32px;
  height: 32px;
}

.icon-stamped {
  color: var(--primary);
  width: 36px;
  height: 36px;
}

.gift-slot .icon-empty {
  color: rgba(255, 209, 102, 0.3);
  width: 40px;
  height: 40px;
}

.gift-slot.stamped .icon-stamped {
  color: var(--accent);
  width: 45px;
  height: 45px;
}

.slot-number {
  position: absolute;
  bottom: -25px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.vip-action-btn {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.2rem;
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}

.modal-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: none;
}

.modal-content {
  background: var(--bg-darker);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  position: relative;
  width: 90%;
  max-width: 450px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.6);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.modal-overlay.hidden .modal-content {
  transform: translateY(50px);
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
}

.qr-box {
  background: white;
  padding: 1rem;
  border-radius: 12px;
  display: inline-block;
  margin: 2rem 0 1rem;
}

.user-id {
  font-family: monospace;
  font-size: 1.2rem;
  color: var(--text-muted);
  letter-spacing: 2px;
}

.admin-mode h3 {
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.admin-form {
  margin-top: 2rem;
}

.admin-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  padding: 1rem;
  border-radius: 8px;
  color: white;
  margin-bottom: 1rem;
  font-size: 1rem;
  text-align: center;
}

.admin-input:focus {
  outline: none;
  border-color: var(--primary);
}

.admin-login-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.admin-login-card h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.admin-login-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

#qrReader__status_span {
    display: none !important;
}

#qrReader video {
    border-radius: 8px !important;
    object-fit: cover !important;
}

#qrReader__dashboard_section_csr button {
    background: var(--primary) !important;
    color: white !important;
    border: none !important;
    padding: 0.5rem 1rem !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    margin: 5px !important;
}

.status-msg {
  margin-top: 1rem;
  font-weight: 600;
  min-height: 24px;
}

/* Animations */
@keyframes popIn {
  0% { transform: scale(0.5); opacity: 0; }
  70% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

.pop-anim {
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes spinIn {
  0% { transform: scale(0.5) rotate(-180deg); opacity: 0; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

.spin-anim {
  animation: spinIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* --- Profile Form Styles --- */
.profile-form {
  text-align: left;
}

.profile-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  padding: 1rem;
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.profile-input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-darker);
  border-top: 2px solid var(--primary);
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3000;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.8);
}

.cookie-banner p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-right: 2rem;
}

.cookie-btns {
  display: flex;
  gap: 1rem;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem;
  }
  .cookie-banner p {
    margin-right: 0;
  }
}

/* --- Admin Dashboard --- */
.admin-input {
  width: 100%;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-light);
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}
.admin-input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.metric-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  backdrop-filter: blur(10px);
}
.metric-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(230, 57, 70, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.metric-info h3 {
  font-size: 1.8rem;
  margin-bottom: 0.2rem;
  color: var(--text-light);
}
.metric-info p {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.table-container {
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 2rem;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}
.admin-table th {
  text-align: left;
  padding: 1rem 1.5rem;
  background: rgba(0, 0, 0, 0.2);
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.admin-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  color: var(--text-light);
  vertical-align: middle;
}
.admin-table tr:hover {
  background: rgba(255, 255, 255, 0.02);
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.badge-primary {
  background: rgba(230, 57, 70, 0.15);
  color: var(--primary);
  border: 1px solid rgba(230, 57, 70, 0.3);
}
.badge-success {
  background: rgba(74, 222, 128, 0.15);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.3);
}

/* =============================
   ADMIN PANEL - RESPONSIVE
   ============================= */

/* Admin header action bar */
.admin-action-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 0 1rem;
}

.admin-action-bar h2 {
  font-size: 1.4rem;
}

.admin-action-bar .btn-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Make the table container scrollable on small screens */
.table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.table-container::-webkit-scrollbar {
  height: 6px;
}
.table-container::-webkit-scrollbar-track { background: transparent; }
.table-container::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

/* Metrics grid responsive */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

/* == TABLET (≤900px) == */
@media (max-width: 900px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-table {
    min-width: 650px;
  }

  .admin-action-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* == MOBILE (≤600px) == */
@media (max-width: 600px) {
  .vip-header nav {
    padding: 0 1rem;
    gap: 0.5rem;
  }

  .vip-header .logo {
    font-size: 1.1rem;
  }

  .vip-main {
    padding: 1rem !important;
    padding-top: 5rem !important;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .metric-card {
    padding: 1rem;
  }

  .admin-login-card {
    padding: 1.5rem;
  }

  .admin-login-card h1 {
    font-size: 1.2rem;
  }

  .admin-action-bar {
    padding: 0;
  }

  .admin-action-bar .btn-group {
    width: 100%;
  }

  .admin-action-bar .btn-group button {
    flex: 1;
    font-size: 0.85rem;
    padding: 0.6rem 0.8rem !important;
  }

  #adminDashboardSection h2 {
    font-size: 1.2rem;
  }

  .admin-table th,
  .admin-table td {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }

  .modal-content {
    padding: 1.5rem;
    margin: 1rem;
    max-height: 90vh;
    overflow-y: auto;
  }
}

/* ── TikTok Section ──────────────────────────────────────── */
.tiktok-section {
  padding: 6rem 0;
  background: var(--bg-dark);
  text-align: center;
}

.tiktok-embed-wrapper {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  width: 325px;
  height: 580px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  border: 1px solid var(--glass-border);
  background: #000;
  position: relative;
}

/* Quitar margen/padding del propio blockquote que inyecta TikTok */
.tiktok-embed-wrapper .tiktok-embed {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: #000 !important;
  min-width: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* iframe directo */
.tiktok-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  background: #000;
  overflow: hidden;
}



/* El iframe que inyecta embed.js */
.tiktok-embed-wrapper iframe {
  display: block;
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  border-radius: 0 !important;
  background: #000;
}


.btn-tiktok {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #010101;
  color: white;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.btn-tiktok:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  background: #1a1a1a;
  border-color: rgba(255,255,255,0.3);
}

.menu-sticky-wrapper {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  z-index: 100;
  padding: 1.5rem 0;
  pointer-events: none;
  transition: var(--transition);
}


.btn-toggle-menu {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: linear-gradient(135deg, var(--primary), #b02a36);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(230,57,70,0.4);
  letter-spacing: 0.5px;
}

.btn-toggle-menu:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(230,57,70,0.55);
  background: linear-gradient(135deg, #f04452, #c03040);
}

.btn-toggle-menu i {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.chevron-icon {
  transition: transform 0.4s ease;
}

.chevron-icon.open {
  transform: rotate(180deg);
}

/* Menú colapsable */
.menu-collapsible {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
  opacity: 0;
}

.menu-collapsible.open {
  max-height: 99999px;
  opacity: 1;
}

/* ── Complementos & Aperitivos ────────────────────────────── */
.complementos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.comp-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: var(--transition);
}

.comp-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.comp-card h4 {
  color: var(--accent);
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
}

.comp-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.comp-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem 0;
  border-bottom: 1px dashed var(--glass-border);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.comp-price-row:last-child {
  border-bottom: none;
}

.comp-price-row strong {
  color: var(--text-light);
  font-weight: 700;
}

/* Maxi Combo destacado */
.comp-card.highlight-card {
  background: linear-gradient(135deg, rgba(230,57,70,0.15), rgba(255,209,102,0.05));
  border-color: rgba(230,57,70,0.5);
  grid-column: span 2;
}

@media (max-width: 600px) {
  .comp-card.highlight-card {
    grid-column: span 1;
  }
}

.comp-badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}

.comp-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

/* ═══════════════════════════════════════════════════
   REVIEWS SECTION — Climbo Widget
═══════════════════════════════════════════════════ */
.reviews-section {
  padding: 7rem 0;
  background: var(--bg-darker);
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.reviews-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

#wid_1775120838501 {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 4rem 0;
  }
}

/* ── Delivery Platforms Section ───────────────────────────── */
.delivery-partners-section {
  padding: 3rem 0;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--glass-border);
}

.delivery-logos-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.delivery-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1.5px;
}

.delivery-logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.delivery-logo-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.5;
  filter: grayscale(0.8);
}

.delivery-logo-card img {
  height: 35px;
  width: auto;
  object-fit: contain;
  display: block;
}

.delivery-logo-card:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-5px) scale(1.1);
}

@media (max-width: 768px) {
  .delivery-logos-grid {
    gap: 2.5rem;
  }
}
