/* ========================================
   VOYAGE DETAIL PAGE STYLES
   ======================================== */

/* ========== BREADCRUMB ========== */
.breadcrumb-bar {
  background: var(--amazon-light,#fbf8f3);
  border-bottom: 1px solid var(--hairline,rgba(31,35,40,0.10));
  padding: 10px 24px;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  max-width: 1000px;
  margin: 0 auto;
}
.breadcrumb-list li { color: var(--text-muted); }
.breadcrumb-list li:not(:last-child)::after { content: '›'; margin-left: 8px; opacity: 0.5; }
.breadcrumb-list a { color: var(--amazon-orange-soft); text-decoration: none; }
.breadcrumb-list a:hover { text-decoration: underline; }
.breadcrumb-list li[aria-current="page"] { color: var(--text-secondary); }

/* ========== CARBON FOOTPRINT ========== */
.carbon-section { margin: 0 0 8px; }
.carbon-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid var(--hairline,rgba(31,35,40,0.10));
  background: var(--amazon-light,#fbf8f3);
}
.carbon-card.carbon-green { border-color: rgba(34,197,94,0.3); background: rgba(34,197,94,0.06); }
.carbon-card.carbon-orange { border-color: rgba(249,115,22,0.3); background: rgba(249,115,22,0.06); }
.carbon-card.carbon-red { border-color: rgba(239,68,68,0.3); background: rgba(239,68,68,0.06); }
.carbon-icon { font-size: 2rem; flex-shrink: 0; }
.carbon-label { color: var(--text-muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.8px; margin: 0 0 4px; font-weight: 600; }
.carbon-value { font-size: 1.1rem; font-weight: 800; color: var(--text-primary); margin: 0 0 2px; }
.carbon-tag { font-size: 0.75rem; font-weight: 500; color: var(--text-muted); }
.carbon-sub { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* ========== VOYAGE HERO ========== */
.voyage-hero {
  position: relative;
  height: 450px;
  overflow: hidden;
  background: linear-gradient(135deg, #fdfbf7 0%, #f4eee2 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(184, 134, 46, 0.08) 0%, transparent 70%);
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

.voyage-hero .image-gallery {
  height: 100%;
}

.voyage-hero .gallery-main {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
}

.voyage-hero-image {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 30px;
  filter: none;
  box-sizing: border-box;
  position: absolute;
}

.gallery-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(31, 35, 40, 0.06) 100%);
  pointer-events: none;
}

/* ========== VOYAGE DETAIL CONTAINER ========== */
.voyage-detail-container {
  position: relative;
  margin-top: -80px;
  padding-bottom: 40px;
}

.voyage-detail-wrapper {
  width: min(100%, 1000px);
  margin: 0 auto;
  padding: 0 20px;
}

.voyage-main-card {
  background: var(--amazon-white,#fff);
  border: 1px solid var(--hairline-gold,rgba(184,134,46,0.45));
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 25px 50px rgba(31, 35, 40, 0.12);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.voyage-main-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 134, 46, 0.04) 0%, transparent 50%, rgba(184, 134, 46, 0.03) 100%);
  pointer-events: none;
}

/* ========== VOYAGE HEADER SECTION ========== */
.voyage-header-section {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}

.voyage-headline-enhanced {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.headline-content {
  flex: 1;
}

.meta-location {
  color: var(--amazon-orange-soft);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-shadow: none;
}

.voyage-title-premium {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-primary);
  margin: 0 0 12px 0;
  background: linear-gradient(135deg, #20242b 0%, #3a3f47 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  line-height: 1.2;
}

.voyage-tagline {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-style: italic;
  margin: 0;
  opacity: 0.75;
}

.voyage-date-badge {
  background: linear-gradient(135deg, rgba(184, 134, 46, 0.12), rgba(217, 178, 91, 0.10));
  border: 1px solid var(--hairline-gold,rgba(184,134,46,0.45));
  border-radius: 16px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

.badge-icon {
  font-size: 1.8rem;
}

.badge-text {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1rem;
}

/* ========== VOYAGE QUICK INFO ========== */
.voyage-quick-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.info-card {
  background: var(--amazon-light,#fbf8f3);
  border: 1px solid var(--hairline,rgba(31,35,40,0.10));
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s ease;
}

.info-card:hover {
  background: var(--amazon-slate,#f1ece2);
  border-color: var(--hairline-gold,rgba(184,134,46,0.45));
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(31, 35, 40, 0.10);
}

.info-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.info-content {
  flex: 1;
}

.info-label {
  color: var(--text-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
  font-weight: 600;
}

.info-value {
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0;
  word-break: break-word;
}

/* ========== VOYAGE SEPARATOR ========== */
.voyage-separator {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(184, 134, 46, 0.30), rgba(217, 178, 91, 0.25), transparent);
  margin: 32px 0;
}

/* ========== VOYAGE DESCRIPTION SECTION ========== */
.voyage-description-section {
  margin-bottom: 40px;
  position: relative;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hairline,rgba(31,35,40,0.10));
}

.voyage-description {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 2;
  margin: 0;
  padding: 28px 32px 28px 36px;
  background: linear-gradient(135deg, rgba(184,134,46,0.05) 0%, var(--amazon-light,#fbf8f3) 50%, rgba(184,134,46,0.03) 100%);
  border-left: 3px solid var(--amazon-orange);
  border-top: 1px solid rgba(184,134,46,0.12);
  border-bottom: 1px solid rgba(184,134,46,0.06);
  border-right: 1px solid var(--hairline,rgba(31,35,40,0.10));
  border-radius: 0 16px 16px 0;
  letter-spacing: 0.015em;
  box-shadow: 0 6px 24px rgba(31,35,40,0.10);
  position: relative;
}

.voyage-description::before {
  content: '\201C';
  position: absolute;
  top: 8px;
  left: 12px;
  font-size: 5rem;
  color: rgba(184, 134, 46, 0.18);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ========== VOYAGE ACTIVITIES SECTION ========== */
.voyage-activities-section {
  margin-bottom: 40px;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 16px;
}

.activity-card {
  background: var(--amazon-light,#fbf8f3);
  border: 1px solid var(--hairline,rgba(31,35,40,0.10));
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.activity-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 134, 46, 0.06), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.activity-card:hover {
  background: var(--amazon-slate,#f1ece2);
  border-color: var(--hairline-gold,rgba(184,134,46,0.45));
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(31, 35, 40, 0.12);
}

.activity-card:hover::before {
  opacity: 1;
}

.activity-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.activity-card h3 {
  margin: 0;
  color: var(--text-primary);
  font-size: 1.3rem;
  font-weight: 700;
}

.activity-duration {
  color: var(--amazon-orange);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

.activity-description {
  color: var(--text-muted);
  margin: 12px 0;
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.activity-footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--hairline,rgba(31,35,40,0.10));
  position: relative;
  z-index: 1;
}

.activity-price {
  color: var(--amazon-orange-soft);
  font-size: 1.4rem;
  font-weight: 800;
}

.activity-label {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ========== DESCRIPTION LISTEN HEADER ========== */
.desc-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hairline,rgba(31,35,40,0.10));
}
.desc-section-header .section-title {
  margin: 0;
  border-bottom: none;
  padding-bottom: 0;
}

/* ========== LISTEN / GENERATE BUTTONS ========== */
.btn-listen {
  background: linear-gradient(135deg, rgba(184,134,46,0.16), rgba(184,134,46,0.07));
  color: var(--amazon-orange);
  border: 1px solid var(--hairline-gold,rgba(184,134,46,0.45));
  border-radius: 20px;
  padding: 9px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.2s;
  box-shadow: 0 2px 10px rgba(184,134,46,0.10);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.btn-listen:hover {
  background: linear-gradient(135deg, rgba(184,134,46,0.26), rgba(184,134,46,0.14));
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184,134,46,0.20);
}
.btn-listen[data-playing="1"] {
  background: linear-gradient(135deg, rgba(239,68,68,0.22), rgba(239,68,68,0.1));
  color: #ef4444;
  border-color: rgba(239,68,68,0.4);
  box-shadow: 0 2px 10px rgba(239,68,68,0.15);
}

.btn-itinerary {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px 18px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.88rem;
  transition: opacity 0.2s, transform 0.1s;
}
.btn-itinerary:hover { opacity: 0.85; transform: translateY(-1px); }

/* ========== ITINERARY SECTION ========== */
.voyage-itinerary-section { margin: 28px 0; }
.itinerary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 10px;
}
.itin-btn-group { display: flex; gap: 8px; align-items: center; }

.itinerary-content {
  background: var(--amazon-light,#fbf8f3);
  border: 1px solid var(--hairline,rgba(31,35,40,0.10));
  border-radius: 14px;
  padding: 6px 4px;
}
.itin-dest {
  font-weight: 700;
  color: var(--amazon-orange-soft);
  font-size: 0.95rem;
  padding: 12px 18px 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.itin-day {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 11px 18px;
  border-bottom: 1px solid var(--hairline,rgba(31,35,40,0.10));
  transition: background 0.15s;
}
.itin-day:last-child { border-bottom: none; }
.itin-day:hover { background: var(--amazon-slate,#f1ece2); border-radius: 10px; }
.itin-badge {
  background: linear-gradient(135deg, var(--amazon-orange), var(--amazon-orange-soft));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 3px;
}
.itin-text { color: var(--text-secondary); font-size: 0.93rem; line-height: 1.65; }
.itinerary-loading {
  color: var(--text-muted);
  font-style: italic;
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ai-error { color: #ef4444; padding: 12px 18px; }

/* ========== COUNTRY INFO ========== */
.country-info-section { margin: 24px 0; }
.country-grid {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
  background: var(--amazon-light,#fbf8f3);
  border: 1px solid var(--hairline,rgba(31,35,40,0.10));
  border-radius: 12px;
  padding: 20px;
}
.country-flag-wrap { flex-shrink: 0; }
.country-flag { width: 100px; height: 66px; object-fit: cover; border-radius: 6px; border: 1px solid var(--border-dark); }
.country-facts { display: flex; flex-wrap: wrap; gap: 12px; flex: 1; }
.fact-item {
  display: flex;
  gap: 8px;
  align-items: center;
  background: var(--amazon-white,#fff);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
}
.fact-icon { font-size: 1rem; }
.fact-label { color: var(--text-muted); font-size: 0.82rem; }
.fact-value { font-weight: 600; }
.detail-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }

/* ========== SKELETON LOADING ========== */
.country-info-skeleton { padding: 20px 0; }
.skeleton-line {
  height: 14px;
  background: linear-gradient(90deg, rgba(31,35,40,0.06) 25%, rgba(31,35,40,0.12) 50%, rgba(31,35,40,0.06) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s infinite;
  border-radius: 6px;
  margin: 10px 0;
}
.skeleton-line--short { width: 40%; }
@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ========== FAV / COMPARE BUTTONS ========== */
.btn-fav {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.1s;
}
.btn-fav-active, .btn-fav:hover { background: #ef4444; color: #fff; transform: translateY(-1px); }

.btn-compare {
  background: rgba(184, 134, 46, 0.12);
  color: var(--amazon-orange);
  border: 1px solid var(--hairline-gold,rgba(184,134,46,0.45));
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, color 0.2s, transform 0.1s;
}
.btn-compare.cmp-active, .btn-compare:hover { background: var(--amazon-orange); color: #fff; transform: translateY(-1px); }

/* ========== REVIEWS SECTION ========== */
.reviews-section {
  background: var(--amazon-light,#fbf8f3);
  border-top: 1px solid var(--hairline,rgba(31,35,40,0.10));
  padding: 40px 0;
}
.reviews-container { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.reviews-header { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 24px; }
.reviews-summary { display: flex; align-items: center; gap: 8px; }
.avg-rating { font-size: 2rem; font-weight: 800; color: #f59e0b; }
.avg-stars .star-filled { color: #f59e0b; }
.avg-stars .star-half { color: #f59e0b; opacity: 0.5; }
.avg-stars span:not(.star-filled):not(.star-half) { color: rgba(31,35,40,0.18); }
.review-count { color: var(--text-muted); font-size: 0.9rem; }

.review-form-card {
  background: var(--amazon-white,#fff);
  border: 1px solid var(--hairline,rgba(31,35,40,0.10));
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 28px;
}
.review-form-card h3 { margin: 0 0 16px; font-size: 1.05rem; }
.review-form { display: flex; flex-direction: column; gap: 14px; }
.star-picker { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 4px; }
.star-radio { display: none; }
.star-picker label { font-size: 2rem; cursor: pointer; color: rgba(31,35,40,0.18); transition: color 0.15s; }
.star-picker input:checked ~ label,
.star-picker label:hover,
.star-picker label:hover ~ label { color: #f59e0b; }
.review-textarea {
  background: var(--amazon-white,#fff);
  border: 1px solid var(--hairline,rgba(31,35,40,0.10));
  border-radius: 8px;
  color: inherit;
  font-size: 0.95rem;
  padding: 10px 14px;
  resize: vertical;
  font-family: inherit;
}
.review-textarea:focus { outline: none; border-color: #6366f1; }
.btn-review-submit { align-self: flex-start; padding: 10px 22px; border: none; border-radius: 8px; font-weight: 700; cursor: pointer; }
.review-login-cta { color: var(--text-muted); margin-bottom: 24px; }
.review-login-cta a { color: #6366f1; }
.review-list { display: flex; flex-direction: column; gap: 16px; }
.review-card {
  background: var(--amazon-white,#fff);
  border: 1px solid var(--hairline,rgba(31,35,40,0.10));
  border-radius: 10px;
  padding: 16px 20px;
  transition: background 0.2s, border-color 0.2s;
}
.review-card:hover { background: var(--amazon-slate,#f1ece2); }
.review-card--own { border-color: #6366f1; }
.review-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; flex-wrap: wrap; }
.review-stars .star-filled { color: #f59e0b; }
.review-stars .star-empty { color: rgba(31,35,40,0.18); }
.review-date { color: var(--text-muted); font-size: 0.82rem; }
.review-own-badge { background: #6366f1; color: #fff; font-size: 0.75rem; font-weight: 700; padding: 2px 8px; border-radius: 10px; }
.review-comment { margin: 0; font-size: 0.95rem; line-height: 1.6; color: var(--text-muted); }
.no-reviews { color: var(--text-muted); text-align: center; padding: 24px 0; }

/* ========== VOYAGE ACTIONS ========== */
.voyage-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}
.voyage-actions .btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-reserve {
  background: linear-gradient(135deg, var(--amazon-orange) 0%, var(--amazon-orange-soft) 100%);
  border: none;
  color: #fff;
  padding: 16px 32px;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(184, 134, 46, 0.30);
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-reserve:hover {
  background: linear-gradient(135deg, var(--amazon-orange-dark) 0%, var(--amazon-orange) 100%);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(184, 134, 46, 0.40);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--hairline-gold,rgba(184,134,46,0.45));
  color: var(--text-primary);
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--amazon-slate,#f1ece2);
  border-color: var(--amazon-orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(31, 35, 40, 0.10);
}

/* ========== VOYAGE OFFER SECTION ========== */
.voyage-offer-section {
  display: flex;
  justify-content: center;
  margin: 24px 0;
}

.offer-banner {
  background: linear-gradient(135deg, rgba(184, 134, 46, 0.08) 0%, rgba(217, 178, 91, 0.08) 100%);
  border: 2px solid var(--hairline-gold,rgba(184,134,46,0.45));
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 8px 32px rgba(184, 134, 46, 0.12);
}

.offer-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--amazon-orange), var(--amazon-orange-soft), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.offer-badge-large {
  display: inline-block;
  background: linear-gradient(135deg, var(--amazon-orange), var(--amazon-orange-soft));
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  box-shadow: 0 4px 15px rgba(184, 134, 46, 0.30);
}

.offer-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--amazon-orange-soft);
  margin: 8px 0;
}

.offer-description {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 12px 0 16px 0;
  line-height: 1.5;
}

.offer-details {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.offer-discount {
  display: inline-block;
  color: var(--amazon-orange-soft);
  font-size: 1.2rem;
  font-weight: 800;
  padding: 8px 12px;
  background: rgba(184, 134, 46, 0.12);
  border-radius: 8px;
  border: 1px solid var(--hairline-gold,rgba(184,134,46,0.45));
}

.offer-expiry {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
}

.offer-badge {
  display: inline-block;
  margin-top: 8px;
  color: var(--amazon-orange-soft);
  font-weight: 700;
  font-size: 0.85rem;
  background: rgba(184, 134, 46, 0.12);
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid var(--hairline-gold,rgba(184,134,46,0.45));
}

/* ========== ANIMATIONS ========== */
@keyframes cardGlow {
  0%, 100% {
    box-shadow: 0 8px 32px rgba(31, 35, 40, 0.12), 0 0 0 1px var(--hairline,rgba(31,35,40,0.10));
  }
  50% {
    box-shadow: 0 8px 32px rgba(31, 35, 40, 0.12), 0 0 20px rgba(184, 134, 46, 0.10), 0 0 0 1px var(--hairline-gold,rgba(184,134,46,0.45));
  }
}

/* Background Patterns */
.voyages-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 25% 25%, rgba(184, 134, 46, 0.04) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(217, 178, 91, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 10%;
  width: 80px;
  height: 80px;
  background: rgba(184, 134, 46, 0.08);
  border-radius: 50%;
  filter: blur(20px);
  animation: float 6s ease-in-out infinite;
}

.hero::before {
  content: '';
  position: absolute;
  top: 60%;
  right: 15%;
  width: 60px;
  height: 60px;
  background: rgba(217, 178, 91, 0.08);
  border-radius: 50%;
  filter: blur(15px);
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
  50% { transform: translateY(-20px) rotate(180deg); opacity: 0.6; }
}

/* ========== GALLERY THUMBNAILS ========== */
.gallery-thumbnails {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(0,0,0,0.4);
  overflow-x: auto;
  scrollbar-width: thin;
}
.thumbnail {
  width: 70px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.55;
  border: 2px solid transparent;
  transition: opacity .2s, border-color .2s;
  flex-shrink: 0;
}
.thumbnail.active,
.thumbnail:hover {
  opacity: 1;
  border-color: var(--amazon-orange);
}
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.55);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: background .2s;
}
.gallery-nav:hover { background: rgba(0,0,0,.85); }
.gallery-prev { left: 14px; }
.gallery-next { right: 14px; }
.image-counter {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(0,0,0,.6);
  color: #fff;
  font-size: .8rem;
  padding: 4px 10px;
  border-radius: 20px;
}
.gallery-container { position: relative; }
.gallery-main { position: relative; overflow: hidden; }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .voyage-main-card {
    padding: 24px;
  }
  
  .voyage-title-premium {
    font-size: 2rem;
  }
  
  .voyage-headline-enhanced {
    flex-direction: column;
  }
  
  .voyage-date-badge {
    width: 100%;
    justify-content: center;
  }
  
  .activities-grid {
    grid-template-columns: 1fr;
  }
  
  .voyage-actions {
    flex-direction: column;
  }
  
  .btn-reserve, .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .voyage-quick-info {
    grid-template-columns: 1fr;
  }
  
  .voyage-hero { height: 300px; }
  .offer-banner { padding: 24px; }
  .offer-title { font-size: 1.2rem; }
  .offer-details { flex-direction: column; gap: 12px; }

  .desc-section-header { flex-direction: column; align-items: flex-start; }
  .itinerary-header { flex-direction: column; align-items: flex-start; }
  .itin-btn-group { width: 100%; }
  .btn-itinerary, .btn-listen { width: 100%; justify-content: center; }
  .itin-day { padding: 10px 12px; gap: 10px; }
  .reviews-header { flex-direction: column; align-items: flex-start; }
  .voyage-actions .btn { width: 100%; justify-content: center; }
}