:root {
  --card-radius: 20px;
  --border-soft: #e0e0e0;
}

/* --- Layout --- */
.product-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 40px;
}

.product-main {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.product-main-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-main-content ul {
  padding-left: 30px;
}


/* --- Airbnb Style Gallery --- */
.product-gallery {
  margin: 40px auto 60px auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 12px;
  border-radius: var(--card-radius);
  overflow: hidden;
}

.gallery-grid-single {
  grid-template-columns: 1fr;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.main-img {
  grid-column: span 2;
  grid-row: span 2;
  position: relative;
}

.gallery-item-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.gallery-item-btn-xpand {
  background: #ffffff86;
  padding: 10px 20px;
  border-radius: 8px;
  backdrop-filter: blur(2px);
  border: 1px solid var(--border-soft);

  display: flex;
  align-items: center;
  gap: 10px;
  font-size: unset;
  cursor: pointer;
}


/* --- Header Refined --- */
.product-hero-info {
  padding: 60px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.badge-premium {
  background: #fff3e0;
  color: #d97706;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--text-dark);
  margin: 20px 0;
  line-height: 1.1;
}

.product-hero-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.product-hero-title-row .product-title {
  margin: 20px 0 0;
}

.product-fav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  margin-top: 20px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #64748b;
  border-radius: 12px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background-color 0.2s, transform 0.15s;
}

.product-fav-btn:hover {
  color: #dc2626;
  border-color: #fecaca;
}

.product-fav-btn:active {
  transform: scale(0.92);
}

.product-fav-btn.active {
  color: #dc2626;
  background: #fef2f2;
  border-color: #fecaca;
}

.product-fav-btn.active svg {
  fill: currentColor;
}

.product-fav-btn.loading {
  opacity: 0.5;
  pointer-events: none;
}

@media (max-width: 768px) {
  .product-hero-info {
    padding: 32px 0;
  }

  .product-title {
    font-size: 2rem;
  }
}

.meta-info {
  display: flex;
  gap: 30px;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 15px;
}

.meta-info span {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* --- Inclusions Grid --- */
.inclusions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.inclusion-box {
  background: #f9f9f9;
  padding: 30px;
  border-radius: var(--card-radius);
  border: 1px solid var(--border-soft);
}

.inclusion-box h4 {
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.inclusion-box ul {
  list-style: none;
  padding-left: 0;
}

.inclusion-box li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

/* --- Itinerary Timeline --- */
.itinerary-block h2 {
  margin-bottom: 40px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.timeline-event {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  padding: 30px;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: var(--card-radius);
  transition: all 0.3s;
}

.timeline-event:hover {
  border-color: var(--accent-orange);
}

.event-time {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--accent-orange);
}

.event-details h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

/* --- Booking Sidebar --- */
.product-sidebar-container {
  position: sticky;
  top: 150px;
}

.booking-card {
  background: #ffffff;
  padding: 40px;
  border-radius: var(--card-radius);
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  /* position: sticky;
  top: 100px; */
}

.price-box {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 30px;
}

.price-main {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
}

.discount-badge {
  background: #f0f0f0;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  color: #333;
}

.input-block {
  border: 1px solid var(--border-soft);
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.booking-btn {
  width: 100%;
  background: var(--text-dark);
  color: white;
  padding: 20px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  margin-bottom: 15px;
  transition: background 0.3s;
}

.booking-btn:hover {
  background: #000;
}

.trust-signals p {
  margin-bottom: 5px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- Related Experiences --- */
.related-section {
  margin-top: 100px;
  padding-bottom: 100px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.related-card {
  border: 1px solid var(--border-soft);
  border-radius: var(--card-radius);
  overflow: hidden;
}

.related-card-link,
.related-card-content-link {
  display: block;
  text-decoration: none;
  color: unset;
}

.related-card img {
  width: 100%;
  height: 200px;
  display: block;
  object-fit: cover;
}

.related-content {
  padding: 25px;
}

.related-price {
  margin-top: 15px;
  font-weight: 800;
  color: var(--text-dark);
}

/* --- WhatsApp CTA Component --- */
.whatsapp-cta {
  background: #f9f9f9;
  border: 1px solid var(--border-soft);
  border-radius: var(--card-radius);
  padding: 40px;
  margin: 40px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
}

.whatsapp-cta h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.whatsapp-cta p {
  color: var(--text-muted);
  font-size: 1rem;
}

.whatsapp-btn {
  background: #25D366;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s, background 0.3s;
}

.whatsapp-btn:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

/* --- VR Teaser Component --- */
.vr-teaser {
  margin: 60px auto;
  padding: 60px;
  background: linear-gradient(135deg, #f9f9f9, #f0f0f0);
  border: 1px solid var(--border-soft);
  border-radius: var(--card-radius);
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s;
}

.vr-teaser:hover {
  transform: translateY(-5px);
  border-color: var(--accent-orange);
}

.vr-teaser h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.vr-btn {
  margin-top: 20px;
  background: var(--text-dark);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.vr-btn:hover {
  background: var(--accent-orange);
}

/* --- Modal Overlay --- */
.vr-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: none;
  padding: 40px;
}

.vr-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vr-modal #vr-container {
  width: 100%;
  height: 90%;
}

.vr-modal iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: none;
}

.close-vr {
  position: absolute;
  top: 20px;
  right: 40px;
  background: white;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 700;
  z-index: 10000;
}

/* --- Accommodation Match Component --- */
.accommodation-match {
  margin-top: 30px;
  background: #ffffff;
  padding: 30px;
  border-radius: var(--card-radius);
  border: 1px solid var(--border-soft);
}

.accommodation-match h4 {
  margin-bottom: 20px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
}

.room-card {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-soft);
}

.room-card:last-child {
  border-bottom: none;
}

.room-img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
}

.room-info h5 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.room-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.room-price {
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 5px;
}

.add-room-btn {
  width: 100%;
  background: transparent;
  border: 1px solid var(--text-dark);
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.85rem;
}

.add-room-btn:hover {
  background: var(--text-dark);
  color: white;
}

/* --- Especificaciones del producto --- */
.sashii-product-specifications {
  margin: 40px 0;
}

.product-duration-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fef3c7;
  color: #92400e;
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.all-inclusive-banner {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1a1a1a;
  padding: 14px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.specs-column {
  background: #f9fafb;
  border-radius: 16px;
  padding: 24px;
}

.specs-column h3 {
  font-family: var(--font-heading, 'Playfair Display');
  font-size: 1.1rem;
  margin: 0 0 16px;
  color: #1a1a1a;
}

.specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.specs-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #333;
}

.empty-spec {
  color: #666;
  font-style: italic;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .specs-grid {
    grid-template-columns: 1fr;
  }
}