/* ============================================================================
   VIVELACITY SELECT - TRUE WORLD CLASS THEME (STANDALONE)
   ============================================================================ */

:root {
  /* === BRAND COLORS (SELECT) === */

  /* Azul Corporativo - Base de confianza (más serio y profesional) */
  --select-primary: #0A2463;
  --select-primary-dark: #051534;  /* Ajustado para consistencia global */

  /* Naranja Select - Acción y Venta */
  --select-accent: #FF6B00;        /* Nuevo Naranja exacto */
  --select-accent-hover: #CC5500;  /* Nuevo Hover exacto */
  --select-accent-light: #FFF0E5;  /* Nuevo: Para fondos de badges/ofertas */
  
  /* === SISTEMA BASE (UI KIT) === */
  
  /* Sistema de Fondos */
  --bg-main: #F5F7FA;            /* Gris muy claro, casi blanco */
  --bg-surface: #FFFFFF;         /* Blanco puro para tarjetas */
  --bg-input: #F0F4F8;
  
  /* Sistema de Texto */
  --text-dark: #111827;          /* Casi negro */
  --text-medium: #4B5563;        /* Gris lectura */
  --text-light: #9CA3AF;         /* Gris placeholders/meta */
  --text-on-accent: #FFFFFF;     /* Para texto sobre botones naranjas */
  
  /* UI Helpers */
  --border-light: #E5E7EB;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --header-height: 72px;
  
  /* Sombras de Alta Calidad (Smooth Shadows) */
  --shadow-card: 0 1px 3px rgba(0,0,0,0.05), 0 10px 15px -5px rgba(0,0,0,0.05);
  --shadow-float: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --shadow-sticky: 0 4px 20px rgba(0,0,0,0.08);
  
  --font-stack: 'Inter', system-ui, -apple-system, sans-serif;
}

/* RESET AGRESIVO (Para no depender de styles.css) */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-stack);
  background-color: white;
  color: var(--text-medium);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased; /* Clave para que se vea "Apple-like" */
  overflow-x: hidden;
  width: 100%;
}

#product-page {
  overflow-x: hidden;
  width: 100%;
}

button { font-family: inherit; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.2s; }

/* Layout Container (Ancho optimizado para mejor visualización) */
.select-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================================
   HEADER (Premium Glass Effect)
   ============================================================================ */
.select-header {
  background-color: var(--select-accent); /* Naranja vibrante */
  height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px); /* Efecto cristal */
  box-shadow: var(--shadow-sticky);
}

.header-inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo { height: 48px; width: auto; }
.header-spacer { width: 80px; }

/* Nav Links con íconos */
.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.nav-link svg {
  flex-shrink: 0;
}

.back-link {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 80px;
}
.back-link:hover { color: #fff; transform: translateX(-4px); }

/* ============================================================================
   PÁGINA PRODUCTO (Grid Layout)
   ============================================================================ */
.product-detail-section {
  padding: 2rem 0 3rem;
}

.product-layout {
  display: grid;
  grid-template-columns: 6.5fr 3.5fr; /* 65% / 35% - Balance optimizado */
  gap: 2.5rem;
  align-items: start;
}

/* --- Galería --- */
.gallery-column {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.gallery-sticky-wrapper {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.main-image {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  background-color: #e5e7eb; /* Placeholder mientras carga */
}

.thumbnail-gallery {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.thumbnail-gallery::-webkit-scrollbar { display: none; }

.thumbnail {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.2s;
  border: 2px solid transparent;
  flex-shrink: 0;
}
.thumbnail:hover, .thumbnail.active {
  opacity: 1;
  border-color: var(--select-primary);
  transform: scale(1.05);
}

/* Gallery Navigation */
.thumbnail-gallery-wrapper {
  position: relative;
  margin-top: 16px;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: white;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
  color: var(--select-text);
}

.gallery-nav:hover {
  background: var(--select-primary);
  color: white;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.gallery-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: white;
  color: var(--select-text);
}

.gallery-nav-prev {
  left: -12px;
}

.gallery-nav-next {
  right: -12px;
}

.thumbnail-gallery-wrapper .thumbnail-gallery {
  margin-top: 0;
  scroll-behavior: smooth;
}

/* --- Tarjeta de Booking (La joya de la corona) --- */
.booking-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-float);
  border: 1px solid rgba(0,0,0,0.04);
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.product-header { margin-bottom: 1.5rem; }

h1#product-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.price-tag {
  display: flex;
  flex-direction: column;
  background: var(--bg-input);
  padding: 1rem;
  border-radius: var(--radius-sm);
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--select-primary);
}

.currency-symbol { font-size: 1.1rem; font-weight: 600; }
.amount { font-size: 2.4rem; font-weight: 800; line-height: 1; }
.currency-code { font-size: 0.9rem; font-weight: 600; opacity: 0.8; margin-right: 8px; }

.price-secondary {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 4px;
}

.description-text {
  color: var(--text-medium);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.features-wrapper {
  margin-bottom: 2rem;
}

.features-list {
  list-style: none;
}

.features-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 500;
}

.features-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF6B35' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Botones Premium */
.btn-primary {
  background-color: var(--select-accent);
  color: white;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: transform 0.1s, box-shadow 0.2s;
  box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  background-color: var(--select-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 107, 53, 0.4);
}
.btn-primary:active { transform: translateY(0); }

.btn-block { width: 100%; display: flex; justify-content: center; align-items: center; }
.btn-lg { padding: 1.1rem 2rem; }

.trust-badges {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ============================================================================
   TABS SECTION (Content Layout)
   ============================================================================ */
.product-deep-dive {
  background: rgba(255, 107, 0, 0.03);
  padding: 3rem 0;
  border-top: 1px solid var(--border-light);
  overflow-x: hidden;
}

.tabs-nav {
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 1.5rem;
}

.tabs {
  display: flex;
  gap: 2.5rem;
}

.tab {
  background: none;
  border: none;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}

.tab.active {
  color: var(--select-primary);
  font-weight: 700;
}

.tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--select-primary);
  border-radius: 3px 3px 0 0;
}

.tab-content { display: none; max-width: 750px; animation: fadeIn 0.4s ease; }
.tab-content.active { display: block; }
.tab-content p { font-size: 1.05rem; color: var(--text-medium); line-height: 1.7; margin-bottom: 1rem; }

/* Asegurar que tab-content-area use todo el ancho disponible */
.tab-content-area {
  width: 100%;
}

/* Estilos para listas dentro de tabs */
.tab-content ol,
.tab-content ul {
  padding-left: 1.5rem;
  margin: 0;
  list-style-position: outside;
}

.tab-content li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* FAQ Items - Garantizar que solo preguntas tengan negrilla */
.faq-item {
  margin-bottom: 1.5rem;
}

.faq-item h4 {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.faq-item p,
.faq-item p strong,
.faq-item p b {
  font-weight: normal !important;
  color: var(--text-medium);
  line-height: 1.7;
}

/* ============================================================================
   MOBILE STICKY BAR
   ============================================================================ */
.mobile-sticky-bar {
  display: none; /* Oculto en Desktop */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-surface);
  padding: 1rem 1.5rem;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
  z-index: 999;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
}

.mobile-price-info { display: flex; flex-direction: column; }
.mobile-price-info .label { font-size: 0.75rem; text-transform: uppercase; color: var(--text-light); font-weight: 600; }
.mobile-price-info .value { font-size: 1.25rem; color: var(--select-primary); font-weight: 800; }
.mobile-price-info small { font-size: 0.8rem; font-weight: 600; color: var(--text-light); margin-left: 2px; }

.btn-mobile-action { padding: 0.8rem 2.5rem; border-radius: 50px; font-size: 1rem; }

/* ============================================================================
   MODAL CHECKOUT REFINADO
   ============================================================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(5, 21, 52, 0.6); /* Color azul corporativo oscuro */
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-glass {
  background: var(--bg-surface);
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  animation: slideUp 0.3s ease-out;
}

.modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FAFAFA;
}

.modal-header h3 { margin: 0; font-size: 1.2rem; color: var(--text-dark); }
.modal-close-btn { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text-light); }

.modal-body { padding: 2rem; overflow-y: auto; }

/* Enhanced Booking Summary Card */
.booking-summary-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.summary-product-info {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
}

.summary-product-img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.summary-product-details {
  flex: 1;
}

.summary-product-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.summary-booking-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.summary-detail-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-medium);
}

.summary-detail-row svg {
  color: var(--select-primary);
  flex-shrink: 0;
}

/* Price Breakdown */
.price-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9375rem;
  color: var(--text-medium);
}

.breakdown-row.total-row {
  padding-top: 0.75rem;
  border-top: 2px solid var(--border-light);
  font-size: 1.125rem;
  color: var(--text-dark);
}

.breakdown-label {
  font-weight: 500;
}

.breakdown-value {
  font-weight: 600;
  color: var(--text-dark);
}

.breakdown-row.total-row .breakdown-value {
  color: var(--select-primary);
  font-size: 1.25rem;
}

.input-group { margin-bottom: 1.25rem; }
.row-group { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.input-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.req { color: var(--select-accent); }

.input-field {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  background: var(--bg-input);
  transition: all 0.2s;
}

.input-field:focus {
  outline: none;
  background: white;
  border-color: var(--select-primary);
  box-shadow: 0 0 0 3px rgba(10, 36, 99, 0.1);
}

.helper-text { font-size: 0.8rem; color: var(--text-light); margin-top: 4px; display: block; }

.modal-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border-light);
  background: #FAFAFA;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-text { background: none; border: none; color: var(--text-medium); font-weight: 600; cursor: pointer; }
.btn-text:hover { color: var(--text-dark); }

.btn-pay-action {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
}
.btn-pay-action .divider { width: 1px; height: 20px; background: rgba(255,255,255,0.3); }

/* ============================================================================
   RESPONSIVE
   ============================================================================ */
@media (max-width: 1024px) {
  .product-layout {
    grid-template-columns: 1fr; /* Stacked */
    gap: 2rem;
  }
  .gallery-sticky-wrapper, .booking-card { position: static; }
  .main-image { aspect-ratio: 16/9; }
  .booking-card { padding: 2rem; }
}

@media (max-width: 600px) {
  /* Prevenir scroll horizontal global */
  body {
    overflow-x: hidden;
  }

  .select-container {
    padding: 0 1rem;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .select-header {
    height: 60px;
    padding: 0;
  }

  .header-inner {
    gap: 1rem;
    padding: 0 1rem;
  }

  .logo {
    height: 40px;
  }

  .lang-btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
  }

  .lang-selector {
    padding: 0.4rem 0.75rem;
    padding-right: 1.75rem;
    font-size: 0.8rem;
  }

  .product-detail-section {
    padding-top: 1rem;
    padding-bottom: 2rem;
  }

  h1#product-name { font-size: 1.5rem; }

  /* Ajustes de la tarjeta de booking para móvil */
  .booking-card {
    padding: 1.5rem;
    margin: 0;
    border-radius: var(--radius-md);
  }

  /* Ajustes de la sección de precio */
  .price-section {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .price-main .currency-symbol { font-size: 1rem; }
  .price-main .amount { font-size: 2rem; }
  .price-main .currency-code { font-size: 0.9rem; }

  /* Ajustes de los selectores rápidos */
  .quick-selectors {
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .selector-item {
    padding: 0.75rem;
    gap: 0.5rem;
  }

  .selector-item span {
    font-size: 0.9rem;
  }

  /* En mobile, movemos el botón de compra al sticky bar */
  .action-area { display: none; }
  .mobile-sticky-bar { display: flex; }

  .modal-glass { height: 100%; border-radius: 0; max-height: 100%; }
  .row-group { grid-template-columns: 1fr; }

  /* Ajuste de tabs para que se puedan scrollear horizontalmente */
  .tabs-scroll-area { overflow-x: auto; margin: 0 -1rem; padding: 0 1rem; }
  .tabs { padding-bottom: 2px; } /* Evita que se corte la border-bottom active */

  /* Tabs content ocupa todo el ancho en móvil */
  .product-deep-dive {
    padding: 2.5rem 0;
  }

  .tab-content {
    max-width: 100%;
    width: 100%;
    overflow-x: hidden;
  }

  .tab-content p {
    font-size: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Ajustar listas en móvil */
  .tab-content ol,
  .tab-content ul {
    padding-left: 1.25rem;
    margin: 0;
    padding-right: 0;
  }

  .tab-content li {
    font-size: 0.95rem;
    margin-bottom: 0.625rem;
    padding-right: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  /* Mejorar centrado de galería */
  .main-image-wrapper {
    width: 100%;
    margin: 0 auto;
  }

  .thumbnail-gallery {
    margin-top: 12px;
    gap: 8px;
  }

  .thumbnail {
    width: 60px;
    height: 60px;
  }

  .gallery-nav {
    width: 32px;
    height: 32px;
  }

  .gallery-nav svg {
    width: 16px;
    height: 16px;
  }

  .gallery-nav-prev {
    left: -8px;
  }

  .gallery-nav-next {
    right: -8px;
  }
}

/* Animaciones */
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }

.spinner-overlay {
  position: fixed; inset: 0; background: rgba(255,255,255,0.8); z-index: 3000;
  display: flex; justify-content: center; align-items: center;
}
.spinner-ring {
  width: 50px; height: 50px; border: 4px solid rgba(24,32,133,0.1);
  border-left-color: var(--select-primary); border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================================
   ESTILOS ADICIONALES PARA LA HOME / LANDING PAGE
   ============================================================================ */

/* --- Botón de Idioma (Header) --- */
.lang-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-stack);
  font-size: 0.85rem;
  backdrop-filter: blur(4px);
}

.lang-btn:hover {
  background: white;
  color: var(--select-primary);
  transform: translateY(-1px);
}

/* --- Selector de Idioma (5 idiomas) --- */
.lang-selector {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-stack);
  font-size: 0.85rem;
  font-weight: 500;
  backdrop-filter: blur(4px);

  /* Ocultar flechas nativas del select */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  /* Flecha personalizada */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  padding-right: 2rem;
}

.lang-selector:hover {
  background-color: white;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230A2463' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  color: var(--select-primary);
  transform: translateY(-1px);

  /* Asegurar que no aparezcan flechas en hover */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.lang-selector:focus {
  outline: 2px solid white;
  outline-offset: 2px;

  /* Asegurar que no aparezcan flechas en focus */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.lang-selector option {
  background: var(--select-primary);
  color: white;
  padding: 0.5rem;
}

/* --- Hero Section Premium con Imagen --- */
.hero-section {
  /* Capa 1: Degradado azul/oscuro semi-transparente para legibilidad */
  /* Capa 2: Tu imagen de fondo */
  background: linear-gradient(to bottom, rgba(24, 32, 133, 0.75), rgba(15, 23, 42, 0.9)),
              url('/img/hero_products_medellin.jpg');
  
  /* Ajustes de la imagen */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  
  /* Efecto Parallax (Clave para el look premium) */
  background-attachment: fixed;
  
  color: white;
  padding: 8rem 0 6rem; /* Aumentamos un poco el padding para mostrar más imagen */
  position: relative;
  overflow: hidden;
  text-align: center;
  
  /* Sombra suave interna para dar profundidad */
  box-shadow: inset 0 -20px 30px -10px var(--bg-main);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-section h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-section p {
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  opacity: 0.9;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  color: #E2E8F0;
}

/* --- Categories Section --- */
.categories-section {
  padding: 4rem 0 6rem;
  background-color: var(--bg-main);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: 2rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-line {
  width: 60px;
  height: 4px;
  background: var(--select-accent);
  margin: 0 auto;
  border-radius: 2px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* --- Category Card (Diseño Elevado) --- */
.category-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-decoration: none;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  border: 1px solid rgba(0,0,0,0.03);
  box-shadow: var(--shadow-card);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-float);
  border-color: rgba(10, 36, 99, 0.1);
}

.card-icon-bg {
  width: 60px;
  height: 60px;
  background-color: #F0F4FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  transition: transform 0.3s;
}

.category-card:hover .card-icon-bg {
  transform: scale(1.1) rotate(5deg);
  background-color: #E0E7FF;
}

.card-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--select-primary);
}

.card-content p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.5;
}

.card-arrow {
  margin-top: auto;
  color: var(--select-accent);
  font-size: 1.5rem;
  font-weight: 600;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s;
}

.category-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* --- Footer --- */
.select-footer {
  background-color: #0F172A; /* Pizarra oscuro */
  color: white;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.9rem;
  opacity: 0.7;
  text-decoration: none;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--select-accent);
}

/* Responsive Footer */
@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════════════════════
   NUEVAS SECCIONES - LANDING PAGE CLASE MUNDIAL
   Agregado: 2025 - NO modificar las reglas anteriores
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════
   NUEVA SECCIÓN: Hero Section Rediseñado
   ═══════════════════════════════════════════════ */
.hero-section-new {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25),
    rgba(10, 36, 99, 0.7)
  );
  z-index: 2;
}

.hero-content-new {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 3rem 0;
  max-width: 800px;
}

.hero-content-new h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  opacity: 0.95;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: #E2E8F0;
}

.hero-search {
  display: flex;
  gap: 0.75rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  background: white;
  padding: 0.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.search-input {
  flex: 1;
  border: none;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-dark);
  font-family: var(--font-stack);
}

.search-input:focus {
  outline: none;
}

.search-input::placeholder {
  color: var(--text-light);
}

.search-btn {
  background: var(--select-accent);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: var(--font-stack);
}

.search-btn:hover {
  background: var(--select-accent-hover);
  transform: translateY(-2px);
}

.trust-badges-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  opacity: 0.9;
}

.trust-item {
  font-weight: 500;
}

.trust-divider {
  opacity: 0.5;
}

/* ═══════════════════════════════════════════════
   NUEVA SECCIÓN: Productos Destacados
   ═══════════════════════════════════════════════ */
.featured-section {
  padding: 2.5rem 0 5rem;
  background: var(--bg-main);
}

.section-header-new {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header-new h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-medium);
  margin-top: 0.5rem;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.featured-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-float);
}

.featured-image-wrapper {
  position: relative;
  overflow: hidden;
}

.featured-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s;
}

.featured-card:hover .featured-image {
  transform: scale(1.05);
}

.badge-top {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  z-index: 10;
}

.badge-bestseller {
  background: var(--select-accent);
}

.badge-new {
  background: #10B981;
}

.featured-content {
  padding: 1.5rem;
}

.featured-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.stars {
  display: flex;
  gap: 2px;
}

.rating-count {
  font-size: 0.9rem;
  color: var(--text-light);
}

.price-featured {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--select-primary);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
}

.price-amount {
  color: var(--select-primary);
}

.btn-featured {
  width: 100%;
  background: var(--select-accent);
  color: white;
  border: none;
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-stack);
}

.btn-featured:hover {
  background: var(--select-accent-hover);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════
   CATEGORÍAS: Nuevas clases para layout mejorado
   ═══════════════════════════════════════════════ */
.category-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.category-grid-new .category-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  height: 280px;
  display: block;
  padding: 0;
  box-shadow: var(--shadow-card);
  border: none;
  background: transparent;
}

.category-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s;
}

.category-grid-new .category-card:hover .category-image {
  transform: scale(1.1);
}

.category-overlay-new {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.7)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: background 0.3s;
}

.category-grid-new .category-card:hover .category-overlay-new {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(10, 36, 99, 0.9)
  );
}

.category-overlay-new h3 {
  color: white;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.category-overlay-new p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.4;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ═══════════════════════════════════════════════
   NUEVA SECCIÓN: Cómo Funciona
   ═══════════════════════════════════════════════ */
.how-it-works {
  padding: 5rem 0;
  background: #F8F9FA;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.step-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: all 0.3s;
}

.step-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-float);
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: #F0F4FF;
  border-radius: 50%;
  color: var(--select-primary);
}

.step-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.step-item p {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.5;
}

.step-connector {
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.step-connector::after {
  content: '→';
  color: var(--select-accent);
  font-size: 2rem;
  font-weight: bold;
  animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
  0%, 100% { transform: translateX(0); opacity: 1; }
  50% { transform: translateX(5px); opacity: 0.7; }
}

/* ═══════════════════════════════════════════════
   NUEVA SECCIÓN: Testimonios
   ═══════════════════════════════════════════════ */
.testimonials {
  padding: 5rem 0;
  background: var(--bg-surface);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-main);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-float);
}

.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.rating-testimonial {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.5;
}

.testimonial-author strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════
   FOOTER: Versión mejorada
   ═══════════════════════════════════════════════ */
.select-footer-new {
  background: #0F172A;
  color: white;
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content-new {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: 180px;
  height: auto;
}

.footer-tagline {
  font-size: 0.95rem;
  opacity: 0.7;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--select-accent);
  transform: translateY(-3px);
}

.footer-links-new {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer-links-new a {
  color: white;
  opacity: 0.7;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.footer-links-new a:hover {
  opacity: 1;
  color: var(--select-accent);
}

.footer-legal {
  margin-top: 1.5rem;
  text-align: center;
}

.footer-legal p {
  font-size: 0.8rem;
  opacity: 0.5;
  line-height: 1.6;
  margin: 0.25rem 0;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE: Nuevas secciones
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content-new h1 {
    font-size: 3rem;
  }

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .step-connector {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-section-new {
    min-height: 60vh;
  }

  .hero-content-new {
    padding: 2rem 0;
  }

  .hero-content-new h1 {
    font-size: 2.5rem;
  }

  .hero-search {
    flex-direction: column;
    padding: 1rem;
  }

  .search-btn {
    width: 100%;
  }

  .trust-badges-hero {
    flex-direction: column;
    gap: 0.5rem;
  }

  .trust-divider {
    display: none;
  }

  .section-header-new h2 {
    font-size: 2rem;
  }

  .featured-section {
    padding: 1.5rem 0 3rem;
  }

  .categories-section,
  .how-it-works,
  .testimonials {
    padding: 3rem 0;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .category-grid-new {
    grid-template-columns: 1fr;
  }

  .category-grid-new .category-card {
    height: 240px;
  }
}

@media (max-width: 600px) {
  .hero-content-new h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-header-new h2 {
    font-size: 1.75rem;
  }

  .featured-image {
    height: 200px;
  }

  .footer-links-new {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCT PAGE V2 - GetYourGuide-inspired Design
   Agregado: 2025 - Nuevos estilos para página de producto
   ═══════════════════════════════════════════════════════════════ */

/* ───────────────────────────────────────────────────────────────
   Hero Header (Title, Rating, Actions) - Above Grid
   ─────────────────────────────────────────────────────────────── */
.product-hero-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
}

.product-hero-left {
  flex: 1;
}

.product-badges-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.badge-premium {
  background: var(--select-primary);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
}

.product-hero-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.product-meta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.rating-display {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stars-large {
  display: flex;
  gap: 3px;
}

.rating-text {
  font-size: 1rem;
  color: var(--text-dark);
}

.rating-text strong {
  font-weight: 700;
  font-size: 1.1rem;
}

.provider-text {
  font-size: 0.95rem;
  color: var(--text-medium);
}

.product-hero-actions {
  display: flex;
  gap: 0.75rem;
}

.icon-btn-header {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-dark);
}

.icon-btn-header:hover {
  border-color: var(--select-primary);
  background: #F0F4FF;
  transform: translateY(-2px);
}

/* ───────────────────────────────────────────────────────────────
   Gallery Enhancements
   ─────────────────────────────────────────────────────────────── */
.main-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 3/2;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.image-counter-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.image-counter-badge svg {
  width: 16px;
  height: 16px;
}

/* ───────────────────────────────────────────────────────────────
   Price Section Redesign
   ─────────────────────────────────────────────────────────────── */
.price-section {
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  border: 1px solid var(--border-light);
}

/* Social Proof Badge (Urgency) */
.social-proof-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.75rem;
  background: #FEF3C7;
  border-radius: 6px;
  border-left: 3px solid #F59E0B;
}

.social-proof-badge .fire-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.social-proof-badge .social-proof-text {
  font-size: 0.7rem;
  color: #92400E;
  font-weight: 500;
}

/* Free Cancellation Badge (Trust) */
.free-cancellation-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.75rem;
  background: #ECFDF5;
  border-radius: 6px;
  border-left: 3px solid #10b981;
}

.free-cancellation-badge svg {
  flex-shrink: 0;
}

.free-cancellation-badge span {
  font-size: 0.7rem;
  color: #065F46;
  font-weight: 500;
}

.price-label-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.from-label {
  font-size: 0.95rem;
  color: var(--text-medium);
  font-weight: 500;
}

.price-original {
  font-size: 1rem;
  color: var(--text-light);
  text-decoration: line-through;
  font-weight: 500;
}

/* Discount Badge - Badge de descuento junto al precio */
.discount-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  margin-left: 0.75rem;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.price-main-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.per-person {
  font-size: 0.8rem;
  color: var(--text-medium);
  font-weight: 500;
  margin-left: 2px;
}

/* ───────────────────────────────────────────────────────────────
   Quick Selectors (Adult, Date, Language)
   ─────────────────────────────────────────────────────────────── */
.quick-selectors {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.selector-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
}

.selector-item:hover {
  border-color: var(--select-primary);
  background: #F8F9FA;
}

.selector-item span {
  flex: 1;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
}

.selector-item svg:first-child {
  color: var(--text-medium);
  flex-shrink: 0;
}

.selector-item svg:last-child {
  color: var(--text-light);
  flex-shrink: 0;
}

/* ───────────────────────────────────────────────────────────────
   Participant Quantity Dropdown
   ─────────────────────────────────────────────────────────────── */
.participant-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  box-shadow: var(--shadow-float);
  z-index: 100;
  animation: dropdown-appear 0.2s ease-out;
}

@keyframes dropdown-appear {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.participant-selector {
  position: relative;
}

.dropdown-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
  font-weight: 600;
}

.dropdown-header svg {
  color: var(--select-primary);
}

.quantity-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.qty-btn {
  width: 40px;
  height: 40px;
  border: 2px solid var(--select-primary);
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.qty-btn:hover:not(:disabled) {
  background: var(--select-primary);
  transform: scale(1.05);
}

.qty-btn:hover:not(:disabled) svg {
  color: white;
}

.qty-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  border-color: var(--text-light);
}

.qty-btn svg {
  color: var(--select-primary);
  transition: color 0.2s;
}

.qty-value {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text-dark);
  min-width: 50px;
  text-align: center;
}

.price-per-person,
.total-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-top: 1px solid var(--border-light);
}

.price-per-person .label,
.total-price-row .label {
  font-size: 0.775rem;
  color: var(--text-medium);
}

.price-per-person .value {
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: 500;
}

.total-price-row {
  border-top: 2px solid var(--select-primary);
  margin-top: 0.5rem;
}

.total-price-row .label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.total-price-row .value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--select-primary);
}

.btn-apply {
  width: 100%;
  margin-top: 1rem;
  padding: 0.875rem;
  background: var(--select-primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-apply:hover {
  background: var(--select-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(10, 36, 99, 0.2);
}

/* ───────────────────────────────────────────────────────────────
   Date Picker Calendar Dropdown
   ─────────────────────────────────────────────────────────────── */
.date-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  box-shadow: var(--shadow-float);
  z-index: 100;
  animation: dropdown-appear 0.2s ease-out;
}

#date-selector {
  position: relative;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.month-nav {
  width: 36px;
  height: 36px;
  border: none;
  background: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-medium);
}

.month-nav:hover {
  background: var(--bg-input);
  color: var(--select-primary);
}

.month-year {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.weekday {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 0.775rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  background: white;
  border: 1px solid transparent;
  color: var(--text-dark);
}

.calendar-day.empty {
  pointer-events: none;
  opacity: 0;
}

.calendar-day.disabled {
  color: var(--text-light);
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

.calendar-day.available:hover {
  background: var(--bg-input);
  border-color: var(--select-primary);
  transform: scale(1.05);
}

.calendar-day.selected {
  background: var(--select-primary);
  color: white;
  font-weight: 700;
}

.calendar-day.today {
  border-color: var(--select-accent);
  font-weight: 600;
}

/* Time slot selector */
.timeslot-selector {
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
  margin-top: 1rem;
}

.timeslot-header {
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.timeslot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.timeslot-option {
  padding: 0.75rem;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-size: 0.775rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-dark);
}

.timeslot-option:hover {
  background: var(--bg-input);
  border-color: var(--select-primary);
}

.timeslot-option.selected {
  background: var(--select-primary);
  border-color: var(--select-primary);
  color: white;
  font-weight: 600;
}

/* Availability text */
.availability-text {
  background: #F0F9FF;
  border: 1px solid #BAE6FD;
  border-radius: 6px;
  padding: 0.875rem;
  margin-top: 1rem;
  font-size: 0.775rem;
  color: #0369A1;
  line-height: 1.5;
}

.availability-text svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
}

/* ───────────────────────────────────────────────────────────────
   About Activity Section
   ─────────────────────────────────────────────────────────────── */
.about-activity-section {
  background: var(--bg-main);
  padding: 4rem 0;
  border-top: 1px solid var(--border-light);
}

.section-title-simple {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.activity-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.activity-meta-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.activity-meta-item svg {
  color: var(--select-primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.meta-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.meta-desc {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.5;
}

/* ───────────────────────────────────────────────────────────────
   Product Description Section (NEW)
   ─────────────────────────────────────────────────────────────── */
.product-description-section {
  background: white;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-light);
}

.product-description-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin: 0 0 1.5rem 0;
  max-width: 900px;
}

.product-description-text:last-child {
  margin-bottom: 0;
}

/* Descripción colapsable */
.description-collapsed {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, opacity 0.4s ease-out;
  opacity: 0;
}

.description-collapsed.expanded {
  max-height: 2000px;
  opacity: 1;
  transition: max-height 0.5s ease-in, opacity 0.5s ease-in;
}

/* Botón "Leer más" */
.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  transition: all 0.2s ease;
}

.btn-read-more:hover {
  color: var(--primary-dark);
  gap: 0.75rem;
}

.btn-read-more svg {
  transition: transform 0.3s ease;
}

/* ───────────────────────────────────────────────────────────────
   General Information Section (RENAMED)
   ─────────────────────────────────────────────────────────────── */
.general-info-section {
  background: rgba(255, 107, 0, 0.03);
  padding: 3rem 0;
  border-top: 1px solid var(--border-light);
}

.info-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* ───────────────────────────────────────────────────────────────
   What's Included Section (NEW)
   ─────────────────────────────────────────────────────────────── */
.whats-included-section {
  background: white;
  padding: 4rem 0;
  border-top: 1px solid var(--border-light);
}

.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 900px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.feature-item svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.feature-item span {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-dark);
}

/* ───────────────────────────────────────────────────────────────
   Key Info Grid (Qué incluye, No incluye, Qué llevar, Itinerario)
   ─────────────────────────────────────────────────────────────── */
.key-info-section {
  background: white;
  padding: 3rem 0;
  border-top: 1px solid var(--border-light);
}

.key-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.key-info-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.key-info-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.key-info-card .features-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Responsive for key-info grid */
@media (max-width: 768px) {
  .key-info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ───────────────────────────────────────────────────────────────
   Reviews Highlight Section
   ─────────────────────────────────────────────────────────────── */
.reviews-highlight-section {
  background: white;
  padding: 3rem 0;
  border-top: 1px solid var(--border-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.review-card-large {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-light);
  transition: all 0.3s;
}

.review-card-large:hover {
  box-shadow: var(--shadow-card);
  border-color: rgba(10, 36, 99, 0.1);
  transform: translateY(-2px);
}

.review-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}

.reviewer-info {
  flex: 1;
}

.reviewer-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.reviewer-date {
  font-size: 0.85rem;
  color: var(--text-light);
}

.review-rating-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
}

.review-rating-stars .rating-num {
  margin-left: 0.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.review-text {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.reviews-cta-center {
  text-align: center;
}

.btn-secondary-outline {
  background: white;
  border: 2px solid var(--select-primary);
  color: var(--select-primary);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-stack);
}

.btn-secondary-outline:hover {
  background: var(--select-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 36, 99, 0.2);
}

/* ───────────────────────────────────────────────────────────────
   Responsive - Product Page V2
   ─────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .product-hero-header {
    flex-direction: column;
    gap: 1.5rem;
  }

  .product-hero-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .activity-meta-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .product-hero-title {
    font-size: 1.75rem;
  }

  .product-meta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .section-title-simple {
    font-size: 1.5rem;
  }

  .about-activity-section,
  .reviews-highlight-section,
  .product-description-section,
  .general-info-section,
  .whats-included-section,
  .product-deep-dive {
    padding: 3rem 0;
  }

  .info-items-grid,
  .features-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .product-hero-header {
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
  }

  .product-hero-title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
  }

  .badge-premium {
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
  }

  .rating-text {
    font-size: 0.85rem;
  }

  .rating-display {
    gap: 0.5rem;
  }

  .stars-large svg {
    width: 16px;
    height: 16px;
  }

  .icon-btn-header {
    width: 38px;
    height: 38px;
  }

  .price-section {
    padding: 1rem;
  }

  .activity-meta-item {
    gap: 0.875rem;
  }

  .meta-title {
    font-size: 0.95rem;
  }

  .meta-desc {
    font-size: 0.9rem;
  }

  .review-card-large {
    padding: 1.25rem;
  }

  .reviewer-avatar {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .reviewer-name {
    font-size: 0.95rem;
  }

  .review-text {
    font-size: 0.95rem;
  }

  /* Ajustes adicionales para secciones */
  .section-title-simple {
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
  }

  .product-description-section,
  .general-info-section,
  .whats-included-section,
  .reviews-highlight-section {
    padding: 2rem 0;
  }

  .product-description-text {
    font-size: 1rem;
    line-height: 1.7;
  }

  /* Ajustar features list en móvil */
  .features-list {
    gap: 1rem;
  }

  .feature-item {
    gap: 0.75rem;
  }

  .feature-item span {
    font-size: 0.95rem;
  }

  /* Mejorar reviews en móvil */
  .reviews-grid {
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .btn-secondary-outline {
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
  }

  /* Ajustar upsell section si existe */
  .upsell-container {
    padding: 1rem 0;
  }

  .upsell-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  /* Mejorar modal en móvil */
  .modal-body {
    padding: 1.5rem;
  }

  .modal-header, .modal-footer {
    padding: 1rem 1.5rem;
  }

  .modal-summary-card {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }

  .summary-title {
    font-size: 0.85rem;
  }

  .summary-price {
    font-size: 1.1rem;
  }

  /* Mejorar sticky bar móvil */
  .mobile-sticky-bar {
    padding: 0.875rem 1rem;
  }

  .mobile-price-info .value {
    font-size: 1.15rem;
  }

  .btn-mobile-action {
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
  }
}

/* Ajustes adicionales para pantallas muy pequeñas */
@media (max-width: 380px) {
  .select-container {
    padding: 0 0.75rem;
  }

  .header-inner {
    padding: 0 0.75rem;
  }

  .booking-card {
    padding: 1.25rem;
  }

  .price-section {
    padding: 0.875rem;
  }

  .price-main .amount {
    font-size: 1.75rem;
  }

  .selector-item {
    padding: 0.625rem;
  }

  .product-hero-title {
    font-size: 1.25rem;
  }

  .section-title-simple {
    font-size: 1.25rem;
  }

  .mobile-sticky-bar {
    padding: 0.75rem;
  }

  .btn-mobile-action {
    padding: 0.625rem 1.5rem;
    font-size: 0.9rem;
  }

  /* Tabs content en pantallas muy pequeñas */
  .tab-content p {
    font-size: 0.95rem;
  }

  .tab-content ol,
  .tab-content ul {
    padding-left: 1rem;
  }

  .tab-content li {
    font-size: 0.9rem;
  }
}

/* Regla global para prevenir overflow en todos los textos */
p, li, span, div, h1, h2, h3, h4, h5, h6 {
  word-wrap: break-word;
  overflow-wrap: break-word;
}