/* =========================================================
   FOGLALÁS OLDAL – ALAP LAYOUT
   ========================================================= */

.booking-page {
  padding: 2.5rem 0 3rem;
}

.booking-header {
  margin-bottom: 1.75rem;
}

.booking-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6b7280;
  margin-bottom: 0.35rem;
}

.booking-title {
  font-size: 1.9rem;
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.booking-subtitle {
  font-size: 0.97rem;
  color: #4b5563;
  max-width: 520px;
}

/* Layout: bal oldalt form, jobb oldalt infó */

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
  /* NINCS max-width – a külső .container szélességét használja */
}

.booking-form-wrapper,
.booking-aside-card {
  background: #ffffff;
  border-radius: 0.9rem;
  padding: 1.3rem 1.4rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
}

/* Oldalsáv */

.booking-aside {
  display: grid;
  gap: 1rem;
}

.booking-aside-card h2,
.booking-aside-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.booking-aside-card p {
  font-size: 0.94rem;
  color: #4b5563;
}

.booking-aside-card ul {
  margin: 0.2rem 0 0 1.1rem;
  padding: 0;
  font-size: 0.94rem;
  color: #4b5563;
}

.booking-contact-card {
  background: #eff6ff;
  border-color: #bfdbfe;
}

.booking-contact-row {
  margin: 0.25rem 0;
}

/* =========================================================
   ALERTOK, INFO BOX
   ========================================================= */

.booking-alert {
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.booking-alert-success {
  background: #ecfdf3;
  border: 1px solid #22c55e;
  color: #14532d;
}

.booking-alert-error {
  background: #fef2f2;
  border: 1px solid #ef4444;
  color: #7f1d1d;
}

.booking-alert-error ul {
  margin: 0.2rem 0 0 1.2rem;
  padding: 0;
}

.booking-info-box h2 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.booking-info-box p {
  font-size: 0.96rem;
  color: #4b5563;
}

/* =========================================================
   FORM MEZŐK, RÁCSOK
   ========================================================= */

.booking-form {
  display: grid;
  gap: 1rem;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

/* EZ ÚJ – a mező és az alatta lévő cím közé tesz teret */
.booking-field {
  margin-bottom: 0.7rem; /* ha kevés, emeld 0.9-re vagy 1rem-re */
}

.booking-field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #111827;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  font-size: 0.95rem;
  padding: 0.6rem 0.65rem;
  border-radius: 0.6rem;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background-color 0.15s ease;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.2);
  background: #ffffff;
}

.booking-field textarea {
  resize: vertical;
}

/* Fő elküldés gomb (Step 5) */

.booking-actions {
  margin-top: 0.4rem;
}

.booking-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, #111827, #374151);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.45);
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    background 0.12s ease;
}

.booking-submit:hover {
  background: linear-gradient(135deg, #0f172a, #1f2937);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.6);
  transform: translateY(-1px);
}

.booking-submit:active {
  background: linear-gradient(135deg, #020617, #111827);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.45);
  transform: translateY(0);
}

/* =========================================================
   FOGLALÁSI NAPTÁR
   ========================================================= */

.booking-dates {
  display: grid;
  gap: 1.1rem;
}

.booking-calendar-wrapper {
  background: #f9fafb;
  border-radius: 1rem;
  padding: 1.1rem 1.25rem 1.15rem;
  border: 1px solid #e5e7eb;
}

.booking-calendar-header {
  margin-bottom: 0.9rem;
}

.booking-calendar-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.booking-calendar-hint {
  font-size: 0.84rem;
  color: #6b7280;
  max-width: 520px;
}

.booking-calendar-loading,
.booking-calendar-error,
.booking-calendar-empty {
  font-size: 0.9rem;
  color: #4b5563;
}

.booking-calendar {
  margin-top: 0.35rem;
}

/* Naptár navigáció gombok (előző / következő hónapok) */

.booking-calendar-nav {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.calendar-nav-btn {
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  font-size: 0.84rem;
  padding: 0.25rem 0.9rem;
  cursor: pointer;
  color: #374151;
  text-decoration: none;
  transition:
    background-color 120ms ease,
    color 120ms ease,
    box-shadow 120ms ease,
    transform 80ms ease,
    border-color 120ms ease;
}

.calendar-nav-btn:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.18);
}

.calendar-nav-btn:active {
  transform: translateY(1px);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.18);
}

/* Hónapok rácsa – alapból 3 oszlop desktopon */

.booking-calendar-months {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.calendar-month {
  background: #ffffff;
  border-radius: 0.9rem;
  padding: 0.7rem 0.75rem 0.8rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.calendar-month-header {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
  text-transform: capitalize;
  text-align: center;
}

/* Napok rácsa */

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.18rem;
}

.calendar-weekday {
  font-size: 0.74rem;
  text-align: center;
  color: #9ca3af;
  padding: 0.1rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.calendar-day {
  font-size: 0.8rem;
  min-height: 2.05rem;
  border-radius: 999px;
  border: none;
  padding: 0.1rem 0;
  text-align: center;
  cursor: pointer;
  background: #e5e7eb;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 120ms ease,
    color 120ms ease,
    transform 80ms ease,
    box-shadow 80ms ease,
    border-color 120ms ease;
}

.calendar-day.empty {
  background: transparent;
  cursor: default;
}

.calendar-day.is-past {
  background: #f3f4f6;
  color: #9ca3af;
  cursor: default;
}

.calendar-day.is-booked {
  background: #fee2e2;
  color: #991b1b;
  cursor: not-allowed;
}

.calendar-day.is-available {
  background: #ecfdf3;
  color: #166534;
}

.calendar-day.is-available:hover {
  background: #bbf7d0;
  color: #14532d;
  box-shadow: 0 6px 14px rgba(21, 128, 61, 0.25);
  transform: translateY(-1px);
}

/* Kijelölt tartomány */

/* Kijelölt tartomány – minden nap ugyanúgy kiemelve */
.calendar-day.is-range-start,
.calendar-day.is-range-end,
.calendar-day.is-in-range {
  background: #111827;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.35);
}

/* Disabled napok */

.calendar-day:disabled {
  opacity: 1;
  box-shadow: none;
  transform: none;
}

/* =========================================================
   TÖBBLÉPÉSES WIZARD – LÉPÉSJELZŐK, GOMBOK, ÖSSZEFOGLALÓ
   ========================================================= */

/* Lépésindikátor (1–5) a form felett */

.booking-steps-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1.2rem 0;
  padding: 0;
  list-style: none;
}

.booking-step-indicator {
  font-size: 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #e5e7eb;
  color: #4b5563;
  font-weight: 500;
  border: 1px solid transparent;
}

.booking-step-indicator.is-active {
  background: #111827;
  color: #f9fafb;
  border-color: #111827;
}

/* Lépés szekciók (Step 1–5) */

.booking-step {
  border-radius: 0.9rem;
  padding: 1.1rem 1.1rem 1.2rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
}

.booking-step + .booking-step {
  margin-top: 0.6rem;
}

.booking-step-title {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.booking-step-intro {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 0.8rem;
}

/* Lépés gombsor (Vissza / Tovább) */

.booking-step-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
  margin-top: 1rem;
}

.booking-step-next,
.booking-step-prev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background-color 120ms ease,
    color 120ms ease,
    box-shadow 120ms ease,
    transform 80ms ease,
    border-color 120ms ease;
}

.booking-step-next {
  background: linear-gradient(135deg, #111827, #374151);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.35);
}

.booking-step-next:hover {
  background: linear-gradient(135deg, #0f172a, #1f2937);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.45);
  transform: translateY(-1px);
}

.booking-step-next:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.35);
}

.booking-step-prev {
  background: #ffffff;
  color: #374151;
  border-color: #d1d5db;
}

.booking-step-prev:hover {
  background: #f3f4f6;
}

/* Szobatípus összefoglaló (Step 2) */

.room-summary-card {
  border-radius: 0.9rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 1rem 1.1rem;
  margin-top: 0.8rem;
  margin-bottom: 1.1rem;

  /* ÚJ: kétoszlopos elrendezés desktopon */
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.5fr);
  gap: 1rem;
  align-items: stretch;
}


.room-summary-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.room-summary-details {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 0.25rem;
}

.room-summary-price {
  font-size: 0.95rem;
  font-weight: 400;
  color: #111827;
  margin-bottom: 0.7rem;
}

/* Szoba fő kép a foglalásnál – egységes méret */

.room-summary-image-wrapper {
  position: relative;
  border-radius: 0.9rem;
  overflow: hidden;
  background: #f3f4f6;
  aspect-ratio: 4 / 3; /* kicsit magasabb, nem olyan széles "csík" */
}

.room-summary-extra {
  display: flex;
  align-items: stretch;
}


#room-summary-image {
  display: block;
  width: 100%;
  height: 100%; /* kitölti az aspect-ratio keretet */
  object-fit: cover; /* ha kell, kicsit vág, de nem torzít */
}

/* Ha nincs kép, a placeholder marad */

.room-image-placeholder {
  font-size: 0.85rem;
  color: #6b7280;
  background: #f9fafb;
  border-radius: 0.7rem;
  padding: 0.7rem;
  border: 1px dashed #d1d5db;
}

/* Extrák, számlázás (Step 4) */

.booking-fieldset {
  border-radius: 0.9rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 0.9rem 1rem;
  margin-bottom: 0.9rem;
}

.booking-fieldset h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: #111827;
  margin-bottom: 0.25rem;
}

.checkbox-row input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
}

.booking-small-hint {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.35rem;
}

/* Reggeli infó – szebb, rendezett megjelenés */
.booking-small-hint.breakfast-info {
  padding: 0.75rem 0.9rem;
  border-radius: 0.6rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  color: #4b5563;
}

.breakfast-row {
  display: flex;
  justify-content: flex-start; /* ne legyen két szélre tolva */
  align-items: center;
  gap: 0.75rem; /* kis hézag a szöveg és az ár között */
  margin-bottom: 0.25rem;
}

.breakfast-value {
  font-weight: 600;
  white-space: nowrap; /* ne törjön több sorba az ár */
}

.breakfast-label {
  font-weight: 500;
}

.breakfast-value {
  font-weight: 600;
}

.breakfast-divider {
  margin: 0.6rem 0;
  border-top: 1px dashed #e5e7eb;
}

.breakfast-subtitle {
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.breakfast-text {
  margin: 0 0 0.2rem;
}

.breakfast-list {
  margin: 0;
  padding-left: 1.1rem;
}

/* Számlázási blokk – JS mutatja/elrejti */

.invoice-fields {
  margin-top: 0.6rem;
}

/* Összesítő (Step 5) */

.booking-summary {
  display: grid;
  grid-template-columns: repeat(
    2,
    minmax(0, 1fr)
  ); /* 2 oszlop desktopon: 2×2 */
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

.booking-summary-block {
  border-radius: 0.9rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 0.8rem 0.9rem;
}

.booking-summary-block h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.booking-summary-block dl {
  margin: 0;
  display: grid;
  gap: 0.25rem;
  font-size: 0.9rem;
}

.booking-summary-block dt {
  font-weight: 600;
  color: #111827;
}

.booking-summary-block dd {
  margin: 0;
  color: #4b5563;
}

.booking-summary-note {
  font-size: 0.9rem;
  color: #4b5563;
  margin-top: 0.3rem;
}
/* Végösszeg blokk – tipográfiás kiemelés, nem külön dizájn */

/* Előrefizetéses fizetés – checkbox sor a VÉGÖSSZEG blokk tetején */
.booking-summary-block.booking-summary-total .booking-full-payment {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #111827;
}

/* magának a checkboxnak egy kis finom igazítás */
.booking-summary-block.booking-summary-total .booking-full-payment input[type="checkbox"] {
  margin-top: 0.1rem;
}

/* "(előrefizetési kedvezmény: 5%)" szöveg */
.booking-summary-block.booking-summary-total .booking-full-payment-note {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.8rem;
  font-weight: 400;
  color: #6b7280;
}


.booking-summary-block.booking-summary-total h3 {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 0.2rem;
}

.booking-summary-block.booking-summary-total dt {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
  color: #6b7280;
}

#summary-total-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: #111827;
  margin-top: 0.1rem;
}

#summary-total-price .summary-total-note {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #4b5563;
  margin-top: 0.15rem;
}

/* 5% előrefizetési kedvezmény sorok a VÉGÖSSZEG blokkban */
.booking-summary-block.booking-summary-total #summary-discount-row dt,
.booking-summary-block.booking-summary-total #summary-discounted-base-row dt {
  font-weight: 600;
}

.booking-summary-block.booking-summary-total #summary-discount-row dd {
  color: #b91c1c;          /* mínuszos sor legyen piros */
  font-weight: 700;
}

.booking-summary-block.booking-summary-total #summary-discounted-base-row dd {
  font-weight: 700;        /* kedvezményes alap: jól látható, de nem piros */
  color: #111827;
}

.booking-full-payment-content {
  display: flex;
  flex-direction: column;   /* fő sor + alatta kedvezmény */
}

.booking-full-payment-text {
  font-weight: 600;
}


/* =========================================================
   RESZPONZÍV BEÁLLÍTÁSOK
   ========================================================= */

/* Tablet: 2 oszlopos naptár (pl. iPad álló nézet) */
@media (max-width: 1024px) {
  .booking-calendar-months {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .booking-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .booking-form-wrapper,
  .booking-aside-card {
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
  }

  /* Lépésjelzők rendezettebb tablet nézetben */
  .booking-steps-indicators {
    flex-wrap: wrap;
  }

  .booking-step-indicator {
    flex: 1 1 calc(50% - 0.4rem);
    text-align: center;
  }
}

@media (max-width: 720px) {
  .booking-page {
    padding-top: 1.8rem;
  }

  .booking-title {
    font-size: 1.6rem;
  }

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

  .booking-dates {
    gap: 0.8rem;
  }

  /* Mobil: 1 oszlopos naptár */
  .booking-calendar-months {
    grid-template-columns: 1fr;
  }

  .calendar-month {
    padding: 0.6rem 0.6rem 0.7rem;
  }

  .calendar-day {
    min-height: 1.8rem;
    font-size: 0.78rem;
  }

  .booking-step {
    padding: 0.9rem 0.85rem 1rem;
  }

  .booking-step-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .booking-step-next,
  .booking-step-prev {
    width: 100%;
    justify-content: center;
  }

  .booking-summary {
    grid-template-columns: minmax(0, 1fr); /* mobilon 1 oszlop */
  }

  .room-summary-card {
    grid-template-columns: minmax(0, 1fr); /* mobilon vissza egy oszlopra */
  }

    /* Végösszeg blokk – mobilon legyen kompaktabb */
  .booking-summary-block.booking-summary-total {
    padding: 0.7rem 0.8rem;
  }

  .booking-summary-block.booking-summary-total h3 {
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    margin-bottom: 0.18rem;
  }

  .booking-summary-block.booking-summary-total dt {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
  }

  #summary-total-price {
    font-size: 1.05rem;
    line-height: 1.3;
  }

  .booking-summary-block.booking-summary-total .booking-full-payment {
    margin-bottom: 0.8rem;
  }
}

/* Kis mobil: lépésjelzők egy oszlopban */
@media (max-width: 600px) {
  .booking-step-indicator {
    flex: 1 1 100%;
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
  }
}

.booking-legal-block {
  margin: 1rem 0 1.5rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.booking-legal-block .legal-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.booking-legal-block input[type="checkbox"] {
  margin-top: 0.2rem;
}

.booking-legal-block .legal-consent-text {
  line-height: 1.5;
}

/* Foglalási űrlap – ÁSZF + Adatkezelés linkek a checkboxnál
   UGYANAZ, mint a kapcsolati űrlapon, csak más selectorral */
.booking-legal-block .legal-consent-links a,
.booking-legal-block .legal-consent-links a:visited {
  color: #0077ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.booking-legal-block .legal-consent-links a:hover {
  color: #53a3ff;
}

.deposit-label {
    color: #b91c1c;      /* piros */
    font-weight: 600;    /* enyhe kiemelés */
}

#summary-deposit-20 {
    font-weight: 700;
    color: #b91c1c;
}

.booking-summary-note--highlight {
    color: #0077ff;      /* visszafogott, de jól látható piros */
    font-weight: 400;    /* kicsit hangsúlyosabb, de nem „ordít” */
}

/* Ajándékutalvány sor elrendezése */
.voucher-row {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
}

.voucher-row input[type="text"] {
  flex: 1 1 auto;
}

/* Másodlagos gomb – "Kód ellenőrzése" */
.booking-btn-secondary {
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid #d0d7de;
  background-color: #f3f4f6;
  cursor: pointer;
  white-space: nowrap;

  transition:
    background-color 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.05s ease;
}

.booking-btn-secondary:hover {
  background-color: #e5e7eb;
  border-color: #c0c8d0;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.15);
  transform: translateY(-1px);
}

.booking-btn-secondary:active {
  box-shadow: none;
  transform: translateY(0);
}

.booking-btn-secondary:disabled {
  opacity: 0.6;
  cursor: default;
  box-shadow: none;
}

/* Ajándékutalvány státusz színek */
#voucher_status {
  margin-top: 0.35rem;
  font-size: 0.85rem;
}

.voucher-status-ok {
  color: #15803d; /* zöld, siker */
}

.voucher-status-error {
  color: #b91c1c; /* piros, hiba */
}

/* Mobil / kisebb tablet – a kód mező és a gomb egymás alatt legyen */
@media (max-width: 768px) {
  .voucher-row {
    flex-direction: column;
    align-items: stretch;
  }

  .voucher-row input[type="text"] {
    width: 100%;
  }

  .booking-btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* Nagyon kis mobiloknál (opcionális, ha még szoros) */
@media (max-width: 480px) {
  .voucher-row {
    gap: 0.4rem;
  }
}

/* ÖSSZESÍTŐ – új kártyák finomhangolása */
.booking-summary-voucher {
  background: #f9fafb;
}

.booking-summary-fullpay {
  background: #f3f4f6; /* kicsit sötétebb, hogy opció-blokk legyen */
  border-color: #e5e7eb;
}

/* Végösszeg kártya legyen teljes szélesség (2 oszlopon át) desktopon */
.booking-summary-total {
  grid-column: 1 / -1;
}

/* Végösszeg sorok – rendezett, kétoszlopos (bal cím / jobb érték) */
.summary-totals > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0.55rem;
  border-radius: 0.6rem;
}

.summary-totals > div + div {
  margin-top: 0.25rem;
}

/* enyhe “csíkozás” az olvashatóságért */
.summary-totals > div:nth-child(odd) {
  background: #f9fafb;
}

/* Fizetendő összesen – sötétebb kiemelés */
.summary-total-row {
  background: #eef2ff;
  border: 1px solid #e0e7ff;
}

.summary-total-row dt {
  font-weight: 800;
  color: #111827;
}

.summary-total-row dd {
  font-weight: 900;
  color: #111827;
  font-size: 1.15rem;
}

/* Foglaló sor – maradjon piros és hangsúlyos */
.summary-deposit-row {
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.summary-deposit-row dd {
  font-weight: 800;
}

/* Mobilon a Végösszeg is természetesen 1 oszlop, itt csak finomítunk */
@media (max-width: 720px) {
  .booking-summary-total {
    grid-column: auto;
  }

  .summary-total-row dd {
    font-size: 1.05rem;
  }
}