/* Базовые настройки */
body {
  background-color: #f8f9fa;
}

/* Карточка модуля поиска */
.tour-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  background: #fff;
  overflow: hidden;
}

/* Шапка карточки */
.tour-card-header {
  background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
  border-bottom: 1px solid #eaeaea;
  padding: 20px 24px;
}

/* Оформление заголовков полей */
.custom-label {
  font-size: 11px;
  color: #b59453;
  font-weight: 700;
  margin-bottom: 6px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Универсальный стиль для всех полей ввода и селектов */
.custom-input {
  border: 1px solid #d4edf8 !important;
  font-size: 13px;
  height: 40px;
  outline: none;
  box-shadow: none;
  width: 100%;
  color: #333;
  background: #fff;
  border-radius: 6px;
  padding: 6px 12px;
  transition: all 0.2s ease;
}

.custom-input:focus {
  border-color: #2ca7e0 !important;
  box-shadow: 0 0 0 3px rgba(44, 167, 224, 0.15) !important;
}

/* Фирменная кнопка "Найти туры" */
.btn-brand {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background-color: #2ca7e0 !important;
  border: none !important;
  color: #fff !important;
  height: 40px;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(44, 167, 224, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-brand:hover:not(:disabled) {
  background-color: #228fc2 !important;
  box-shadow: 0 6px 16px rgba(44, 167, 224, 0.3);
  transform: translateY(-1px);
}

.btn-brand:active:not(:disabled) {
  transform: translateY(1px);
}

.btn-brand:disabled {
  background-color: #7abfe0 !important;
  cursor: not-allowed;
  box-shadow: none;
}

/* Сетки для формы (Flexbox) */
.form-row-custom {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px;
  width: 100%;
  margin-bottom: 16px;
}
.form-row-custom.bottom-row {
  align-items: flex-end;
}

/* Размеры колонок */
.col-city {
  flex: 1.8;
  min-width: 150px;
}
.col-adults {
  flex: 0.6;
  min-width: 60px;
}
.col-kids {
  flex: 1.1;
  min-width: 100px;
}
.col-age {
  flex: 1.1;
  min-width: 90px;
  display: none;
} /* Скрыто по умолчанию */
.col-meals {
  flex: 1.4;
  min-width: 110px;
}
.col-nights {
  flex: 0.9;
  min-width: 75px;
}
.col-dates {
  flex: 2.8;
  min-width: 220px;
}
.col-submit {
  flex: 1.5;
  min-width: 150px;
}

/* Анимации */
#age_container_block {
  animation: fadeInAge 0.3s ease;
}
#resultsArea {
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeInAge {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Блок вспомогательных кнопок */
.action-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px dashed #eaeaea;
}
