/* === TOURS PAGE === */
body {
  overflow-x: hidden;
}
.tours-page {
  background-color: #F2F0E8;
  font-family: 'Inter', sans-serif;
}

/* 🔹 Bloque de filtros full-width */
.tours-filters {
  background-color: #1e1e1c;
  color: #fff;
  padding: 40px 0;
  width: 100%;
  overflow-x: hidden;
}

.filters-inner {
  max-width: 1288px;
  margin: 0 auto;
  padding: 0 0;
}

.filters-form {
  display: flex;
      justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
     gap: 3px;
}

.filters-title {
  font-family: 'Larken', serif;
  color: #eaeaea;
  font-size: 24px;
  margin: 0;
      margin-right: 50px;
  white-space: nowrap;
}

.filters-group {
  position: relative;
  flex: 0 0 auto;
}

.filters-group select {
  background-color: #1e1e1c;
  color: #eaeaea;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  padding: 10px 38px 10px 16px;
  min-width: 301px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.filters-group::after {
  content: "▼";
  font-size: 0.7rem;
  color: #d9a53c;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.filters-group select:hover {
  border-color: #d9a53c;
  color: #fff;
}

.filters-group select:focus {
  outline: none;
  border-color: #d9a53c;
  color: #fff;
}



/* === HERO TOUR CARD — FINAL === */
.tour-card-hero .tour-card-image {
    height: 449px;              /* ALTURA FIJA */
    overflow: hidden;           /* RECORTE */
    position: relative;
}

.tour-card-hero .tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;          /* RECORTA SIN DEFORMAR */
    object-position: center;    /* Ajusta si quieres top / bottom */
    display: block;
}


.tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Degradado inferior */
.tour-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(
    0deg,
    rgba(0,0,0,0.9) 0%,
    rgba(0,0,0,0.4) 40%,
    rgba(0,0,0,0) 80%
  );
  z-index: 1;
}

/* Info inferior */
.tour-card-info {
  position: absolute;
  bottom: 35px;
  left: 30px;
  right: 30px;
  z-index: 3;
  color: #fff;
}

/* LABELS FINAL — combinación perfecta */
.tour-card-labels {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.label {
  font-size: 12px;
  font-weight: 600;
  padding: 2px 17px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
}

/* Closed */
.label.closed {
      background-color: #000;
    color: #FCC014;
    text-transform: none;
    font-size: 14px;
    padding: 4px 28px;
}

/* Interest list */
.label.interest {
      background-color: #FCC014;
    color: #000;
    text-transform: none;
    font-size: 14px;
}

.label.interest .arrow {
  margin-left: 6px;
  font-size: 1rem;
}

/* Spots left */
.label.spots {
background-color: #FCC014;
    color: #000;
    padding: 5px 21px;
}

/* Sold out */
.label.soldout {
  background-color: #FCC014;
  color: #000;
  padding: 5px 16px;
}

/* Divider */
.tour-divider,
.divider {
  border: none;
  height: 1px;
  background-color: #FCC014 !important;
  width: 100%;
  margin-bottom: 14px;
  opacity: 1 !important;
  position: relative;
  z-index: 99;
      margin-top: 26px;
}


/* Fecha */
.tour-date {
    font-size: 12px;
    letter-spacing: 0;
    color: #fff;
    margin-bottom: 6px;
    text-transform: uppercase;
}

/* Título */
.tour-title {
    font-family: 'Larken', serif;
    font-size: 36px;
    font-weight: 300;
    color: #ffffff;
    margin: 0;
}

/* Botón */
.tour-button {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 48px;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.tour-button:hover {
  background-color: #fff;
  color: #000;
}



/* GRID */
.tours-grid {
        display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1288px;
    margin: 0 auto;
    padding: 42px 0;
    box-sizing: border-box;
}



/* === YEAR SEPARATOR === */
.tours-year-block {
  width: 100%;
  max-width: 1288px;
  margin: 50px auto 0;
  padding: 0 0;
  box-sizing: border-box;
}

.tours-year-line {
  border: 0;
  border-top: 1px solid #D1D1D1;
  width: 100%;
  margin: 0 0 10px;
}

.tours-year-title {
font-family: 'Larken';
    font-size: 40px;
    font-weight: 200;
    letter-spacing: 0;
    color: #383234;
    margin: 0;
}



/* Responsive */
@media (max-width: 900px) {
  .filters-form {
    flex-direction: column;
    align-items: center;
  }

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

@media (max-width: 600px) {
  .tour-title {
    font-size: 1.6rem;
  }
}

.tours-page .tours-filters {
    background-color: #1e1e1c;
    color: #fff;
    padding: 24px 0;
    width: 100%;
    overflow-x: hidden;
}