.tour-page { background: var(--blanco); color: var(--gris-texto); padding-bottom: 80px; width: 100%; box-sizing: border-box; }
.tour-inner {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px;
}
@media (max-width: 1100px) {
  .tour-inner { padding-left: 32px; padding-right: 32px; }
}
@media (max-width: 768px) {
  .tour-inner { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 640px) {
  .tour-inner { padding-left: 20px; padding-right: 20px; }
}

.tour-breadcrumb {
  font-size: 13px;
  padding: 20px 0 10px;
  margin: 0;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  color: var(--gris-secundario);
}
.tour-hero-shell {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-sizing: border-box;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px;
}
@media (max-width: 1100px) {
  .tour-hero-shell { padding-left: 32px; padding-right: 32px; }
}
@media (max-width: 768px) {
  .tour-hero-shell { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 640px) {
  .tour-hero-shell { padding-left: 20px; padding-right: 20px; }
}
.tour-breadcrumb a {
  color: var(--verde-main);
  text-decoration: none;
  font-weight: 500;
}
.tour-breadcrumb a:hover { text-decoration: underline; }
.tour-breadcrumb span[aria-current="page"] {
  color: var(--gris-texto);
  font-weight: 500;
}

.tour-hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 0 48px;
  box-sizing: border-box;
}
@media (max-width: 1100px) {
  .tour-hero-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    grid-template-columns: unset;
  }
  .tour-gallery {
    display: contents;
    min-width: 0;
  }
  .tour-gallery-media {
    order: 1;
    width: 100%;
  }
  .tour-hero-heading {
    order: 2;
    margin-top: 0;
  }
  .tour-booking-card {
    order: 3;
  }
}

/* —— Gallery carousel —— */
.tour-gallery { min-width: 0; }
.tour-gallery-media {
  width: 100%;
}
.tour-carousel-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--gris-suave);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.tour-carousel-viewport { overflow: hidden; border-radius: 20px; }
.tour-carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.tour-carousel-slide {
  flex: 0 0 100%;
  aspect-ratio: 16 / 10;
  position: relative;
}
.tour-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tour-carousel-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(62,79,34,0.35) 0%, transparent 40%);
  pointer-events: none;
}
.tour-carousel-nav {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  gap: 8px;
  z-index: 2;
}
.tour-carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.92);
  color: var(--verde-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: transform 0.2s ease, background 0.2s ease;
}
.tour-carousel-btn:hover {
  background: #fff;
  transform: scale(1.05);
}
.tour-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 14px 0 4px;
}
.tour-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--gris-borde);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.tour-carousel-dot[aria-selected="true"] {
  background: var(--oliva-intenso);
  transform: scale(1.15);
}
.tour-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}
.tour-thumb {
  flex: 0 0 88px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: none;
  opacity: 0.75;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.tour-thumb:hover, .tour-thumb.is-active {
  opacity: 1;
  border-color: var(--lima-musgo);
}
.tour-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.tour-hero-heading {
  margin-top: 24px;
}
.tour-hero-heading .tour-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--verde-main);
  margin-bottom: 10px;
}
.tour-hero-heading h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  color: var(--verde-dark);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 10px;
}
.tour-hero-heading .tour-sub {
  font-size: 15px;
  color: var(--gris-secundario);
  line-height: 1.65;
  max-width: 720px;
  margin: 0;
}

/* —— Booking card —— */
.tour-booking-card {
  position: sticky;
  top: 96px;
  background: var(--blanco);
  border: 1px solid var(--gris-borde);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 16px 48px rgba(62,79,34,0.08);
}
@media (max-width: 1100px) {
  .tour-booking-card {
    position: relative;
    top: 0;
  }
}
.tour-price-banner {
  background: linear-gradient(145deg, var(--beige-light) 0%, rgba(246,247,239,0.55) 100%);
  border: 1px solid rgba(102,112,38,0.12);
  border-radius: 16px;
  padding: 18px 18px 16px;
  margin-bottom: 22px;
}
.tour-price-from-line {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gris-secundario);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.tour-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-bottom: 8px;
  line-height: 1;
}
.tour-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--verde-dark);
  letter-spacing: -0.03em;
  line-height: 1;
}
.tour-price-currency {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gris-secundario);
  letter-spacing: 0.02em;
}
.tour-price-note {
  font-size: 14px;
  font-weight: 500;
  color: var(--gris-texto);
  opacity: 0.85;
  margin: 0;
  line-height: 1.45;
}
.tour-facts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--gris-borde);
}
.tour-fact {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 14px;
  line-height: 1.45;
}
.tour-fact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #fff 0%, var(--beige-light) 100%);
  border: 1px solid rgba(102,112,38,0.15);
  box-shadow: 0 2px 8px rgba(62,79,34,0.06);
}
.tour-fact-icon svg {
  width: 22px;
  height: 22px;
  color: var(--oliva-intenso);
  stroke-width: 1.75;
}
.tour-fact-body { min-width: 0; padding-top: 2px; }
.tour-fact strong {
  display: block;
  color: var(--verde-dark);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  font-weight: 700;
}
.tour-fact-value {
  display: block;
  color: var(--gris-texto);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}
.tour-book-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tour-book-primary {
  display: block;
  text-align: center;
  background: var(--naranja);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 8px 24px rgba(102,112,38,0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}
.tour-book-primary:hover {
  background: var(--naranja-hover);
  transform: translateY(-2px);
}
.tour-book-secondary {
  display: block;
  text-align: center;
  border: 2px solid var(--verde-claro);
  color: var(--verde-dark);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.tour-book-secondary:hover {
  background: var(--beige);
  border-color: var(--oliva-intenso);
}
.tour-trust-line {
  margin-top: 18px;
  font-size: 12px;
  color: var(--gris-secundario);
  display: flex;
  align-items: center;
  gap: 6px;
}
.tour-trust-line span { color: var(--lima-musgo); letter-spacing: 1px; }

/* —— Body layout (sidebar = mismo ancho que booking card: 380px) —— */
.tour-body {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
  padding-top: 24px;
  border-top: 1px solid var(--gris-borde);
}
.tour-aside-secondary {
  width: 100%;
  min-width: 0;
}
@media (max-width: 1100px) {
  .tour-body {
    grid-template-columns: 1fr;
    padding-top: 20px;
  }
}

/* —— Mobile: gallery first, readable description —— */
@media (max-width: 768px) {
  .tour-breadcrumb {
    font-size: 12px;
    padding: 14px 0 8px;
    line-height: 1.45;
  }
  .tour-hero-shell {
    padding-left: 16px;
    padding-right: 16px;
  }
  .tour-hero-grid {
    gap: 20px;
    padding-bottom: 28px;
  }
  .tour-carousel-wrap {
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  }
  .tour-carousel-viewport {
    border-radius: 14px;
  }
  .tour-carousel-slide {
    aspect-ratio: 4 / 3;
  }
  .tour-carousel-nav {
    bottom: 12px;
    right: 12px;
  }
  .tour-carousel-btn {
    width: 40px;
    height: 40px;
  }
  .tour-carousel-dots {
    padding: 10px 0 2px;
  }
  .tour-thumbs {
    gap: 8px;
    margin-top: 10px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }
  .tour-thumb {
    flex: 0 0 68px;
    height: 44px;
    border-radius: 8px;
    scroll-snap-align: start;
  }
  .tour-hero-heading h1 {
    font-size: clamp(22px, 6.5vw, 30px);
    line-height: 1.2;
  }
  .tour-hero-heading .tour-sub {
    font-size: 14px;
    line-height: 1.6;
    max-width: none;
  }
  .tour-booking-card {
    padding: 22px 18px;
    border-radius: 16px;
  }
  .tour-price {
    font-size: 2rem;
  }
  .tour-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
  .tour-section {
    margin-bottom: 36px;
  }
  .tour-section-title {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .tour-section-title::after {
    width: 40px;
    margin-top: 10px;
  }
  .tour-section-text {
    font-size: 15px;
    line-height: 1.72;
    max-width: none;
  }
  .tour-desc-block {
    overflow-wrap: anywhere;
    word-wrap: break-word;
  }
  .tour-desc-block p,
  .tour-desc-block li {
    margin-bottom: 0.85em;
  }
  .tour-desc-block img,
  .tour-desc-block iframe,
  .tour-desc-block video {
    max-width: 100%;
    height: auto;
  }
  .tour-desc-block table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .tour-highlights {
    margin-bottom: 28px;
    gap: 8px;
  }
  .tour-chip {
    font-size: 12px;
    padding: 7px 12px;
  }
  .tour-itin-day {
    padding-left: 22px;
  }
  .tour-itin-title {
    font-size: 16px;
  }
  .tour-itin-items li {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .tour-hero-shell,
  .tour-inner {
    padding-left: 14px;
    padding-right: 14px;
  }
  .tour-carousel-slide {
    aspect-ratio: 1 / 1;
  }
  .tour-thumb {
    flex: 0 0 60px;
    height: 40px;
  }
}

.tour-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.tour-chip {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--beige-light);
  border: 1px solid rgba(102,112,38,0.2);
  color: var(--verde-dark);
}

.tour-section { margin-bottom: 48px; }
.tour-section:last-child { margin-bottom: 0; }
.tour-section-header { margin-bottom: 20px; max-width: 720px; }
.tour-main-col { min-width: 0; width: 100%; }
.tour-section--rail .tour-section-header {
  max-width: none;
  width: 100%;
}
.tour-section--rail .tour-recs {
  max-width: none;
  width: 100%;
  box-sizing: border-box;
}
.tour-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--verde-dark);
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  line-height: 1.2;
  text-align: left;
}
.tour-section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--lima-musgo), var(--oliva-intenso));
  margin-top: 12px;
  border-radius: 2px;
}
.tour-section-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gris-texto);
  max-width: 720px;
}
.tour-section-text + .tour-section-text { margin-top: 20px; }
.tour-subhead {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--verde-dark);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.tour-desc-block + .tour-desc-block { margin-top: 28px; }

/* Itinerary timeline */
.tour-itin-list { display: flex; flex-direction: column; gap: 28px; }
.tour-itin-day {
  position: relative;
  padding-left: 28px;
  border-left: 3px solid var(--gris-borde);
}
.tour-itin-day::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 6px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--lima-musgo);
  border: 3px solid var(--blanco);
  box-shadow: 0 0 0 1px var(--oliva-intenso);
}
.tour-itin-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--oliva-intenso);
  margin-bottom: 6px;
}
.tour-itin-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--verde-dark);
  margin: 0 0 14px;
}
.tour-itin-items {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tour-itin-items li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--gris-texto);
}
.tour-itin-items li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--verde-medio);
}

.tour-lists-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 768px) {
  .tour-lists-grid { grid-template-columns: 1fr; }
}
.tour-list-card {
  background: var(--beige-light);
  border: 1px solid var(--gris-borde);
  border-radius: 18px;
  padding: 24px;
}
.tour-list-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--verde-dark);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tour-list-card.tour-inc h3::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--oliva-intenso);
}
.tour-list-card.tour-exc h3::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gris-secundario);
}
.tour-list-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tour-list-card li {
  font-size: 14px;
  line-height: 1.55;
  padding: 8px 0 8px 26px;
  position: relative;
  border-top: 1px solid rgba(0,0,0,0.05);
  color: var(--gris-texto);
}
.tour-list-card li:first-child { border-top: none; padding-top: 0; }
.tour-list-card.tour-inc li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--oliva-intenso);
  font-weight: 700;
  font-size: 13px;
}
.tour-list-card.tour-exc li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gris-claro);
  font-weight: 600;
}

.tour-recs {
  background: linear-gradient(135deg, rgba(164,179,76,0.12) 0%, rgba(62,79,34,0.06) 100%);
  border: 1px solid rgba(102,112,38,0.2);
  border-radius: 18px;
  padding: 28px;
}
.tour-recs ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tour-recs li {
  display: flex;
  gap: 14px;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 14px;
  color: var(--gris-texto);
}
.tour-recs li:last-child { margin-bottom: 0; }
.tour-recs li::before {
  content: '★';
  color: var(--lima-musgo);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.tour-aside-box {
  position: sticky;
  top: 96px;
  background: var(--verde-dark);
  color: #fff;
  border-radius: 18px;
  padding: 24px;
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .tour-aside-box { position: relative; top: 0; }
}
.tour-aside-box h3 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--lima-musgo);
}
.tour-aside-box p { margin: 0; opacity: 0.92; }
.tour-meta {
  margin-top: 32px;
  font-size: 12px;
  color: var(--gris-secundario);
  max-width: 720px;
  box-sizing: border-box;
}
.tour-meta code {
  background: var(--gris-suave);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 11px;
  color: var(--verde-dark);
}

/* —— Related tours (fondo ancho completo, contenido en tour-inner) —— */
.tour-related {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding: 48px 0 64px;
  margin-top: 40px;
  border-top: 1px solid var(--gris-borde);
  background: linear-gradient(180deg, var(--beige-light) 0%, var(--blanco) 42%);
  box-sizing: border-box;
}
.tour-related-inner {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
.tour-related-stack {
  width: 100%;
  box-sizing: border-box;
}
.tour-related-header-slot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px 24px;
  width: 100%;
  max-width: 100%;
  margin-bottom: 22px;
  box-sizing: border-box;
}
.tour-related-header-slot .tour-section-title {
  margin-bottom: 0;
  max-width: 100%;
}
.tour-related-header-slot .tour-section-title::after {
  margin-top: 12px;
}
.tour-related-header-slot .tour-related-lead {
  margin-top: 8px;
  max-width: 520px;
  font-size: 15px;
  line-height: 1.65;
  flex: 1 1 220px;
}
.tour-related-view-all {
  font-size: 14px;
  font-weight: 600;
  color: var(--naranja);
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 4px;
  flex-shrink: 0;
  margin-left: auto;
  text-align: right;
  align-self: flex-end;
}
.tour-related-view-all:hover {
  color: var(--naranja-hover);
  text-decoration: underline;
}
.tour-related-carousel-stage {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  overflow: visible;
}
.tour-related-stack.no-scroll .tour-related-carousel-stage .tour-related-nav {
  display: none;
}
.tour-related-viewport-shell {
  width: 100%;
  min-width: 0;
}
.tour-related-carousel-stage .tour-related-nav {
  position: absolute;
  top: clamp(108px, 32vw, 160px);
  z-index: 4;
  margin: 0;
}
.tour-related-carousel-stage .tour-related-nav.tour-related-prev {
  left: clamp(6px, 2vw, 12px);
}
.tour-related-carousel-stage .tour-related-nav.tour-related-next {
  right: clamp(6px, 2vw, 12px);
}
.tour-related-carousel-stage .tour-related-nav:hover:not(:disabled) {
  background: #fff;
  transform: scale(1.06);
  box-shadow: 0 8px 22px rgba(62,79,34,0.22);
}
.tour-related-carousel-stage .tour-related-nav:disabled {
  opacity: 0.28;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.tour-related-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 0 12px;
}
.tour-related-viewport::-webkit-scrollbar {
  display: none;
  height: 0;
}
.tour-related-viewport:focus-visible {
  outline: 2px solid var(--oliva-intenso);
  outline-offset: 4px;
  border-radius: 12px;
}
.tour-related-track {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: max-content;
}
.tour-related-slide {
  flex: 0 0 clamp(260px, 34vw, 340px);
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  max-width: 85vw;
}
@media (max-width: 768px) {
  .tour-related-slide {
    flex: 0 0 min(320px, 82vw);
  }
}
.tour-related-nav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gris-borde);
  background: rgba(255,255,255,0.97);
  color: var(--verde-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(62,79,34,0.18);
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}
@media (max-width: 520px) {
  .tour-related-nav {
    width: 36px;
    height: 36px;
  }
  .tour-related-carousel-stage .tour-related-nav {
    top: clamp(88px, 28vw, 130px);
  }
}
.tour-related-progress-wrap {
  width: 100%;
  max-width: 100%;
  margin-top: 10px;
  padding-bottom: 4px;
  box-sizing: border-box;
}
.tour-related-progress-track {
  position: relative;
  height: 5px;
  border-radius: 999px;
  background: var(--gris-suave);
  overflow: hidden;
  width: 100%;
}
.tour-related-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lima-musgo), var(--oliva-intenso));
  transition: left 0.12s ease-out, width 0.12s ease-out;
}
.tour-related-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--blanco);
  border: 1px solid var(--gris-borde);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  height: 100%;
}
.tour-related-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(62,79,34,0.12);
  border-color: rgba(102,112,38,0.25);
}
.tour-related-card-img {
  position: relative;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: var(--gris-suave);
}
.tour-related-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(62,79,34,0.55) 0%, transparent 45%);
  pointer-events: none;
}
.tour-related-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--naranja);
  color: #fff;
}
.tour-related-days {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 1;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.94);
  color: var(--verde-dark);
  backdrop-filter: blur(6px);
}
.tour-related-card-body {
  padding: 20px 22px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.tour-related-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--verde-dark);
  margin: 0 0 8px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.tour-related-card-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--gris-secundario);
  margin: 0 0 16px;
  flex: 1;
}
.tour-related-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 14px 0 0;
  border-top: 1px solid var(--gris-borde);
}
.tour-related-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--verde-dark);
  min-width: 0;
}
.tour-related-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--naranja);
  flex-shrink: 0;
  padding-left: 10px;
}
.tour-related-card:hover .tour-related-cta {
  text-decoration: underline;
}
