@charset "UTF-8";
.tour-booking-container {
  margin: 40px 0;
  padding: 30px;
  background: #f9f9f9;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
}

.booking-form-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.booking-calendar-section {
  flex: 1;
  min-width: 300px;
}

.booking-form-section {
  flex: 1;
  min-width: 300px;
}

#tour-booking-calendar {
  margin: 20px 0;
  min-height: 300px;
}

.selected-date-display {
  margin-bottom: 20px;
}

#bookingDateDisplay {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 2px solid #2196F3;
  border-radius: 5px;
  background: white;
  cursor: pointer;
  text-align: center;
  font-weight: 600;
  color: #2196F3;
}

.calendar-info {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
  background: #f8f9fa;
}

.calendar-info > div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.calendar-info span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.available-date span {
  background: #4CAF50;
}

.unavailable-date span {
  background: #ccc;
}

.selected-date span {
  background: #2196F3;
}

.same-day-restricted span {
  background: #ff9800;
}

.ui-datepicker {
  background: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.ui-datepicker-header {
  background: #2196F3;
  color: white;
  border: none;
  border-radius: 5px 5px 0 0;
}

.ui-datepicker-calendar td.available-date a {
  background: #4CAF50 !important;
  color: white !important;
}

.ui-datepicker-calendar td.unavailable-date a {
  color: #ccc !important;
  cursor: not-allowed !important;
}

.ui-datepicker-calendar td.selected-date a {
  background: #2196F3 !important;
  color: white !important;
  font-weight: bold;
}

.ui-datepicker-calendar td.same-day-restricted a {
  background: #ff9800 !important;
  color: white !important;
  border-radius: 50% !important;
  cursor: not-allowed;
}

.price-summary {
  background: white;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
}

.price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.price-row.total {
  border-top: 2px solid #eee;
  padding-top: 10px;
  margin-top: 10px;
  font-size: 1.2em;
}

.form-row {
  margin-bottom: 15px;
}

.form-row label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
}

.form-row input[type=text],
.form-row input[type=tel],
.form-row input[type=email],
.form-row select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-row input[type=checkbox] {
  margin: 0;
}

.booking-actions {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.btn {
  padding: 12px 25px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  flex: 1;
  text-align: center;
  text-decoration: none;
}

.btn-book {
  background: #2196F3;
  color: white;
}

.btn-book:hover {
  background: #0b7dda;
}

.btn-book-pay {
  background: #4CAF50;
  color: white;
}

.btn-book-pay:hover {
  background: #45a049;
}

.variation-name {
  padding-left: 10px;
  padding-right: 10px;
  background: #e3f2fd;
  border-radius: 4px;
  border-left: 4px solid #2196F3;
}

.error-message {
  color: #f44336;
  font-size: 14px;
  margin-top: 5px;
  display: none;
}

input:invalid, select:invalid {
  border-color: #f44336;
}

/* Стили для вариаций */
.variations-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin: 10px 0;
}

.variation-option {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
}

.variation-option:hover {
  border-color: #bbbbbb;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.variation-option.selected {
  border-color: #2196F3;
  background-color: #e3f2fd;
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.15);
}

.variation-label {
  display: block;
  cursor: pointer;
}

.variation-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.variation-name {
  font-weight: 600;
  font-size: 16px;
  color: #333;
}

.variation-price {
  font-size: 18px;
  font-weight: 700;
  color: #4CAF50;
}

.variation-description {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
  margin-bottom: 10px;
}

.variation-badge {
  margin-top: 10px;
}

.default-badge {
  display: inline-block;
  padding: 4px 8px;
  background: #4CAF50;
  color: white;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.selected-variation-info {
  margin-top: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #2196F3;
}

.variation-name-display {
  font-size: 18px;
  font-weight: 600;
  margin-top: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.selected-price {
  font-size: 20px;
  color: #4CAF50;
  font-weight: 700;
}

@media (max-width: 768px) {
  .booking-form-wrapper {
    flex-direction: column;
  }
  .booking-actions {
    flex-direction: column;
  }
  .calendar-info {
    flex-direction: column;
  }
  .variations-container {
    grid-template-columns: 1fr;
  }
}
label[for=privacyPolicy] {
  line-height: 1 !important;
  font-size: 14px;
  font-weight: 400;
}

input[readonly] {
  background-color: #f5f5f5;
  border-color: #ddd;
  color: #666;
  cursor: not-allowed;
}

input[readonly]:focus {
  border-color: #ddd;
  box-shadow: none;
}

.logged-in-notice {
  background: #e8f5e9;
  border: 1px solid #c8e6c9;
  border-radius: 4px;
  padding: 10px;
  margin-top: 10px;
  font-size: 14px;
  color: #2e7d32;
}

.logged-in-notice strong {
  color: #1b5e20;
}

.booking-calendar-section h3 {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
  line-height: 2;
}

.discount-row {
  margin-bottom: 20px;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #eee;
}

.discount-row label {
  cursor: pointer;
  font-weight: normal;
  display: block;
  margin-bottom: 0;
}

.points-input-wrapper input,
.coupon-input-wrapper input {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 70%;
}

.btn-small {
  background: #2271b1;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 10px;
}

.btn-small:hover {
  background: #135e96;
}

.discount-message {
  margin-top: 10px;
  font-size: 12px;
}

.discount-message.success {
  color: green;
}

.discount-message.error {
  color: red;
}/*# sourceMappingURL=tour-booking.css.map */