:root {
  --booking-bg: #f7f1e8;
  --booking-surface: #fffdf8;
  --booking-primary: #6f7d4f;
  --booking-primary-dark: #4f5c38;
  --booking-accent: #b86b4b;
  --booking-text: #2d2925;
  --booking-muted: #766f66;
  --booking-border: #e4d8c8;
  --booking-shadow: 0 12px 32px rgba(45, 41, 37, 0.08);
}

.booking-page {
  background: var(--booking-bg);
  color: var(--booking-text);
}

.booking-hero {
  min-height: 360px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(45, 41, 37, 0.44), rgba(45, 41, 37, 0.54)),
    url("../../kepek/szobak/terasz_7.jpg");
  background-position: center;
  background-size: cover;
  padding: 72px 24px;
}

.booking-hero-content {
  width: min(980px, 100%);
  margin: 0 auto;
  color: #ffffff;
}

.booking-kicker {
  margin: 0 0 12px;
  color: var(--booking-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-hero .booking-kicker {
  color: #f0d5b5;
}

.booking-hero h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.06;
}

.booking-hero p {
  max-width: 660px;
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.65;
}

.booking-section,
.booking-info-section {
  padding: 70px 24px;
}

.booking-wrap {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.75fr);
  gap: 28px;
  align-items: start;
}

.booking-form-card,
.booking-price-card,
.booking-info-card {
  border: 1px solid var(--booking-border);
  border-radius: 18px;
  background: var(--booking-surface);
  box-shadow: var(--booking-shadow);
}

.booking-form-card,
.booking-price-card {
  padding: 34px;
}

.booking-section-header {
  max-width: 680px;
  margin-bottom: 24px;
}

.booking-section-header h2,
.booking-price-card h2 {
  margin: 0 0 10px;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1.15;
}

.booking-section-header p,
.booking-muted,
.booking-note-box p,
.booking-info-card p {
  color: var(--booking-muted);
  line-height: 1.65;
}

.booking-form {
  display: grid;
  gap: 18px;
}

.booking-grid {
  display: grid;
  gap: 18px;
}

.booking-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-field span {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

.booking-field input,
.booking-field textarea {
  width: 100%;
  border: 1px solid var(--booking-border);
  border-radius: 10px;
  background: #ffffff;
  color: var(--booking-text);
  font: inherit;
  padding: 15px 16px;
  box-sizing: border-box;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.booking-field input:focus,
.booking-field textarea:focus {
  border-color: var(--booking-primary);
  box-shadow: 0 0 0 4px rgba(111, 125, 79, 0.14);
}

.booking-field textarea {
  resize: vertical;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}

.booking-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.booking-btn-primary {
  background: var(--booking-primary);
  color: #ffffff;
}

.booking-btn-primary:hover,
.booking-btn-primary:focus-visible {
  background: var(--booking-primary-dark);
}

.booking-btn-secondary {
  border-color: var(--booking-border);
  background: #ffffff;
  color: var(--booking-primary-dark);
}

.booking-price-list {
  margin: 26px 0;
  border-top: 1px solid var(--booking-border);
}

.booking-price-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid var(--booking-border);
}

.booking-price-row span {
  color: var(--booking-muted);
}

.booking-price-row-total strong {
  color: var(--booking-primary-dark);
}

.booking-note-box {
  border-radius: 14px;
  background: rgba(111, 125, 79, 0.1);
  padding: 20px;
}

.booking-note-box h3,
.booking-info-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.booking-info-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.booking-info-card {
  padding: 24px;
}

.booking-info-card p {
  margin: 0;
}

@media only screen and (max-width: 900px) {
  .booking-wrap,
  .booking-info-grid {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 620px) {
  .booking-hero {
    min-height: 320px;
    padding: 52px 16px;
  }

  .booking-section,
  .booking-info-section {
    padding: 46px 16px;
  }

  .booking-form-card,
  .booking-price-card,
  .booking-info-card {
    padding: 22px 18px;
    border-radius: 14px;
  }

  .booking-grid-two {
    grid-template-columns: 1fr;
  }

  .booking-actions,
  .booking-btn {
    width: 100%;
  }
}
.booking-price-help {
  margin: -10px 0 24px;
  color: var(--booking-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.booking-guest-controls {
  display: grid;
  gap: 16px;
}

.booking-guest-row {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) 156px;
  gap: 18px;
  align-items: center;
}

.booking-guest-row > label {
  font-weight: 700;
}

.booking-stepper {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  min-height: 52px;
  border: 1px solid #9f9f9f;
  border-radius: 5px;
  background: #ffffff;
  overflow: hidden;
}

.booking-stepper-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 52px;
  border: 0;
  background: transparent;
  color: #1677ff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.booking-stepper-btn:disabled {
  color: #9aa0a6;
  cursor: not-allowed;
}

.booking-stepper input {
  width: 100%;
  height: 52px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--booking-text);
  font: inherit;
  font-weight: 700;
  text-align: center;
  outline: none;
  cursor: default;
}

.booking-child-ages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.booking-age-field select {
  width: 100%;
  min-height: 48px;
  padding: 0 40px 0 12px;
  border: 1px solid #ff5a5f;
  border-radius: 5px;
  background: #ffffff;
  color: var(--booking-text);
  font: inherit;
  outline: none;
}

.booking-age-field select:focus {
  border-color: var(--booking-primary);
  box-shadow: 0 0 0 4px rgba(111, 125, 79, 0.14);
}

@media only screen and (max-width: 620px) {
  .booking-guest-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .booking-stepper {
    width: 100%;
  }

  .booking-child-ages {
    grid-template-columns: 1fr;
  }
}
.booking-details-panel[hidden] {
  display: none !important;
}

.booking-details-panel {
  margin-top: 18px;
  padding: 28px;
  border: 1px solid var(--booking-border);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(45, 41, 37, 0.06);
}

.booking-details-header {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
}

.booking-details-header h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1.2;
}

.booking-ready-note {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border: 1px solid #9f9f9f;
  border-radius: 5px;
  background: #f7f7f7;
  color: var(--booking-text);
  line-height: 1.5;
}

.booking-ready-note span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border: 1.8px solid currentColor;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9rem;
}

.booking-ready-note strong,
.booking-field strong {
  color: #c7372f;
}

.booking-field select {
  width: 100%;
  border: 1px solid var(--booking-border);
  border-radius: 10px;
  background: #ffffff;
  color: var(--booking-text);
  font: inherit;
  padding: 15px 44px 15px 16px;
  box-sizing: border-box;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.booking-field select:focus {
  border-color: var(--booking-primary);
  box-shadow: 0 0 0 4px rgba(111, 125, 79, 0.14);
}

.booking-field small,
.booking-field-help,
.booking-check-row small {
  display: block;
  margin-top: 8px;
  color: var(--booking-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.booking-field-half {
  max-width: 425px;
}

.booking-phone-row {
  display: grid;
  grid-template-columns: 132px minmax(0, 293px);
  gap: 14px;
  align-items: end;
}

.booking-phone-number span {
  visibility: hidden;
}

.booking-field-help {
  max-width: 520px;
  margin: 10px 0 4px;
}

.booking-check-row {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--booking-text);
  line-height: 1.45;
}

.booking-check-row input {
  width: 24px;
  height: 24px;
  margin: 1px 0 0;
  accent-color: var(--booking-primary);
}

.booking-details-divider {
  height: 1px;
  margin: 6px 0;
  background: var(--booking-border);
}

.booking-choice-group {
  margin: 0;
  padding: 0;
  border: 0;
}

.booking-choice-group legend {
  margin-bottom: 10px;
  font-weight: 700;
}

.booking-choice-group legend span {
  color: var(--booking-muted);
  font-weight: 400;
}

.booking-choice-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 9px 0;
  line-height: 1.45;
}

.booking-choice-group input {
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: #1677ff;
}

.booking-details-actions {
  margin-top: 8px;
  padding-top: 8px;
}

@media only screen and (max-width: 620px) {
  .booking-details-panel {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .booking-ready-note {
    align-items: flex-start;
    padding: 14px;
  }

  .booking-field-half,
  .booking-phone-row {
    max-width: none;
    width: 100%;
  }

  .booking-phone-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .booking-phone-number span {
    display: none;
  }
}
.booking-currency-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 0 4px;
}

.booking-currency-row label {
  font-weight: 700;
  color: var(--booking-text);
}

.booking-currency-row select {
  min-width: 112px;
  border: 1px solid var(--booking-border);
  border-radius: 10px;
  background: #ffffff;
  color: var(--booking-text);
  font: inherit;
  font-weight: 700;
  padding: 12px 38px 12px 14px;
  outline: none;
}

.booking-currency-row select:focus {
  border-color: var(--booking-primary);
  box-shadow: 0 0 0 4px rgba(111, 125, 79, 0.14);
}

.booking-exchange-info {
  margin: 6px 0 18px;
  color: var(--booking-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

@media only screen and (max-width: 620px) {
  .booking-currency-row {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .booking-currency-row select {
    width: 100%;
  }
}
.booking-price-row[hidden] {
  display: none !important;
}

.booking-subtotal-row strong {
  color: var(--booking-text);
}

.booking-promo-row strong {
  max-width: 190px;
  color: var(--booking-primary-dark);
  font-size: 0.95rem;
  line-height: 1.35;
  text-align: right;
}

.booking-discount-row strong {
  color: var(--booking-accent);
}
.booking-pet-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 2px;
  padding: 12px 14px;
  border: 1px solid var(--booking-border);
  border-radius: 10px;
  background: #ffffff;
  color: var(--booking-text);
  font-weight: 700;
  cursor: pointer;
}

.booking-pet-option input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--booking-primary);
}

.booking-pet-fee-row strong {
  color: var(--booking-primary-dark);
}

@media only screen and (max-width: 620px) {
  .booking-pet-option {
    width: 100%;
    box-sizing: border-box;
  }
}
.booking-alert {
  margin: 0 0 22px;
  padding: 16px 18px;
  border-radius: 12px;
  line-height: 1.55;
}

.booking-alert strong {
  display: block;
  margin-bottom: 4px;
}

.booking-alert ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.booking-alert-success {
  border: 1px solid rgba(111, 125, 79, 0.35);
  background: rgba(111, 125, 79, 0.12);
  color: var(--booking-primary-dark);
}

.booking-alert-error {
  border: 1px solid rgba(184, 107, 75, 0.35);
  background: rgba(184, 107, 75, 0.12);
  color: var(--booking-text);
}
.booking-field {
  position: relative;
}

.booking-date-warning {
  margin: 0.75rem 0 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(184, 107, 75, 0.35);
  border-radius: 12px;
  background: rgba(184, 107, 75, 0.11);
  color: var(--booking-text);
  font-weight: 700;
  line-height: 1.45;
}

.booking-calendar {
  position: absolute;
  z-index: 50;
  top: calc(100% + 8px);
  left: 0;
  width: min(330px, calc(100vw - 40px));
  padding: 14px;
  border: 1px solid var(--booking-border);
  border-radius: 16px;
  background: #fffdf8;
  box-shadow: 0 18px 40px rgba(45, 41, 37, 0.18);
}

.booking-calendar[hidden] {
  display: none !important;
}

.booking-calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.booking-calendar-header strong {
  color: var(--booking-text);
  font-size: 1rem;
}

.booking-calendar-nav,
.booking-calendar-day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--booking-text);
  cursor: pointer;
}

.booking-calendar-nav {
  width: 36px;
  height: 36px;
  border: 1px solid var(--booking-border);
  font-size: 1.35rem;
}

.booking-calendar-nav:hover,
.booking-calendar-day:hover:not(:disabled) {
  background: rgba(111, 125, 79, 0.12);
}

.booking-calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.booking-calendar-days > span {
  color: var(--booking-muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}

.booking-calendar-day {
  aspect-ratio: 1;
  font-weight: 700;
}

.booking-calendar-day.is-selected {
  background: var(--booking-primary);
  color: #ffffff;
}

.booking-calendar-day:disabled {
  color: rgba(118, 111, 102, 0.5);
  background: rgba(228, 216, 200, 0.5);
  cursor: not-allowed;
  text-decoration: line-through;
}

.booking-calendar-day.is-booked:disabled {
  background: rgba(184, 107, 75, 0.16);
  color: rgba(123, 52, 30, 0.68);
}

@media only screen and (max-width: 620px) {
  .booking-calendar {
    width: min(100%, calc(100vw - 40px));
  }
}
/* Booking calendar hard reset */
.booking-form .booking-calendar {
  position: absolute !important;
  z-index: 1000 !important;
  top: calc(100% + 10px) !important;
  left: 0 !important;
  width: 330px !important;
  max-width: calc(100vw - 40px) !important;
  box-sizing: border-box !important;
  padding: 14px !important;
  border: 1px solid var(--booking-border) !important;
  border-radius: 16px !important;
  background: #fffdf8 !important;
  box-shadow: 0 18px 40px rgba(45, 41, 37, 0.18) !important;
}

.booking-form .booking-calendar-header {
  display: grid !important;
  grid-template-columns: 36px 1fr 36px !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 0 12px !important;
}

.booking-form .booking-calendar-header strong {
  display: block !important;
  margin: 0 !important;
  color: var(--booking-text) !important;
  font-size: 1rem !important;
  line-height: 1.2 !important;
  text-align: center !important;
}

.booking-form .booking-calendar-days {
  display: grid !important;
  grid-template-columns: repeat(7, 1fr) !important;
  gap: 6px !important;
  align-items: stretch !important;
}

.booking-form .booking-calendar-days > span,
.booking-form .booking-calendar-empty {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 0 !important;
  min-height: 28px !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--booking-muted) !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-align: center !important;
}

.booking-form .booking-calendar-nav,
.booking-form .booking-calendar-day {
  appearance: none !important;
  -webkit-appearance: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 10px !important;
  background: transparent !important;
  color: var(--booking-text) !important;
  font-family: inherit !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  cursor: pointer !important;
}

.booking-form .booking-calendar-nav {
  width: 36px !important;
  height: 36px !important;
  border: 1px solid var(--booking-border) !important;
  font-size: 1.35rem !important;
}

.booking-form .booking-calendar-day {
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
}

.booking-form .booking-calendar-nav:hover,
.booking-form .booking-calendar-day:hover:not(:disabled) {
  background: rgba(111, 125, 79, 0.12) !important;
}

.booking-form .booking-calendar-day.is-selected {
  background: var(--booking-primary) !important;
  color: #ffffff !important;
}

.booking-form .booking-calendar-day:disabled {
  background: rgba(228, 216, 200, 0.5) !important;
  color: rgba(118, 111, 102, 0.55) !important;
  cursor: not-allowed !important;
  text-decoration: line-through !important;
}

.booking-form .booking-calendar-day.is-booked:disabled {
  background: rgba(184, 107, 75, 0.16) !important;
  color: rgba(123, 52, 30, 0.68) !important;
}
.booking-note-cta {
  margin-top: 14px;
}
