/* src/tour-price.css */
.tour-price2date {
  border: 1px solid #7a8ca3;
  border-radius: 22px;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7fbff 100%);
  box-shadow: 0 10px 24px rgba(19, 54, 86, 0.08);
  padding: 14px 18px 16px;
  color: #28435d;
}
.tour-price2date__controls {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}
.tour-price2date__field select {
  width: 100%;
  min-height: 42px;
  border: 1px solid #9bc0de;
  border-radius: 11px;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 4px 10px rgba(52, 110, 159, 0.12);
  color: #5b7790;
  font-size: 15px;
  padding: 0 14px;
}
.tour-price2date__button {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background:
    linear-gradient(
      180deg,
      #17ba56 0%,
      #049845 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 0 28px;
  white-space: nowrap;
}
.tour-price2date__button:disabled {
  opacity: 0.6;
  cursor: default;
}
.tour-price2date__content {
  margin-top: 12px;
}
.tour-price2date__title {
  color: #1b3650;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}
.tour-price2date__loading,
.tour-price2date__error {
  margin-top: 10px;
  font-size: 14px;
}
.tour-price2date__error {
  color: #c33434;
}
.tour-price2date__bottom {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-top: 10px;
}
.tour-price2date__prices {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.tour-price2date__price-card {
  min-width: 140px;
}
.tour-price2date__old-price {
  color: #ff5438;
  font-size: 18px;
  font-weight: 700;
  text-decoration: line-through;
}
.tour-price2date__current-price {
  color: #0f75c8;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  margin-top: 4px;
}
.tour-price2date__price-label {
  color: #4c6378;
  font-size: 14px;
  line-height: 1.2;
}
.tour-price2date__promo {
  flex: 1;
  min-width: 220px;
  padding-top: 10px;
  color: #4d6275;
  font-size: 15px;
}
.tour-price2date__promo-name {
  color: #f28a1f;
  font-weight: 700;
  margin-bottom: 4px;
}
.tour-price2date__promo-description p {
  margin: 0 0 6px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
@media (max-width: 991px) {
  .tour-price2date__controls {
    grid-template-columns: 1fr;
  }
  .tour-price2date__button {
    width: 100%;
  }
  .tour-price2date__bottom {
    flex-direction: column;
    gap: 12px;
  }
}
