/* =========================================================
   ABDOUL AGADIR ELITE — Booking Form Styles
   ========================================================= */

/* Map main.css variable names to booking shorthand */
:root {
  --navy:       var(--color-primary);
  --gold:       var(--color-gold);
  --text:       var(--color-text);
  --text-light: var(--color-text-light);
}

/* ---------------------------------------------------------
   Form wrapper
--------------------------------------------------------- */
.booking-form-wrap {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
.booking-form-wrap--compact {
  padding: 0;
  box-shadow: none;
  background: transparent;
}

/* ---------------------------------------------------------
   Form header (non-compact)
--------------------------------------------------------- */
.booking-form-header {
  text-align: center;
  margin-bottom: 2rem;
}
.booking-form-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}
.booking-form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  margin: 0 0 .5rem;
}
.booking-form-subtitle {
  color: var(--text-light);
  font-size: .9rem;
  margin: 0;
}

/* ---------------------------------------------------------
   Form rows & fields
--------------------------------------------------------- */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.booking-form-row {
  display: grid;
  gap: 1.25rem;
}
.booking-form-row--2 {
  grid-template-columns: 1fr 1fr;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.booking-field label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
}
.booking-field .required {
  color: #e53e3e;
  margin-left: 2px;
}
.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid #d1d9e0;
  border-radius: 8px;
  font-size: .95rem;
  font-family: var(--font-body);
  color: var(--text);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
}
.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,60,94,.1);
  outline: none;
}
.booking-field input.is-invalid,
.booking-field select.is-invalid,
.booking-field textarea.is-invalid {
  border-color: #e53e3e;
}
.booking-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 2.5rem;
}
.booking-field textarea {
  resize: vertical;
  min-height: 80px;
}
.booking-field-hint {
  font-size: .8rem;
  color: var(--text-light);
  margin: 0;
}
.booking-field-hint i {
  margin-right: 4px;
}

/* ---------------------------------------------------------
   Date picker wrapper
--------------------------------------------------------- */
.booking-date-wrap {
  position: relative;
}
.booking-date-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--navy);
  pointer-events: none;
  font-size: .9rem;
}
.booking-date-wrap input {
  padding-left: 2.5rem;
  cursor: pointer;
}

/* ---------------------------------------------------------
   Feedback messages
--------------------------------------------------------- */
.booking-form-feedback {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .875rem 1rem;
  border-radius: 8px;
  font-size: .9rem;
  line-height: 1.5;
}
.booking-form-feedback i {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: .05em;
}
.booking-form-feedback--error {
  background: #fff5f5;
  border: 1.5px solid #feb2b2;
  color: #c53030;
}
.booking-form-feedback--success {
  background: #f0fff4;
  border: 1.5px solid #9ae6b4;
  color: #276749;
}

/* ---------------------------------------------------------
   Submit button states
--------------------------------------------------------- */
.booking-submit {
  position: relative;
}
.booking-submit:disabled {
  opacity: .75;
  cursor: not-allowed;
}

/* ---------------------------------------------------------
   Form note
--------------------------------------------------------- */
.booking-form-note {
  text-align: center;
  font-size: .8rem;
  color: var(--text-light);
  margin: 0;
}
.booking-form-note i {
  color: var(--gold);
  margin-right: 4px;
}

/* ---------------------------------------------------------
   Flatpickr overrides
--------------------------------------------------------- */
.flatpickr-calendar {
  font-family: var(--font-body) !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 32px rgba(0,0,0,.15) !important;
  border: none !important;
}
.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: var(--navy) !important;
  border-color: var(--navy) !important;
}
.flatpickr-day:hover {
  background: rgba(26,60,94,.08) !important;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  color: #ccc !important;
  text-decoration: line-through;
  background: transparent !important;
  cursor: not-allowed !important;
}
.flatpickr-months .flatpickr-month {
  background: var(--navy) !important;
  color: #fff !important;
  fill: #fff !important;
}
.flatpickr-current-month,
.flatpickr-monthDropdown-months {
  color: #fff !important;
}
.flatpickr-weekday {
  color: var(--navy) !important;
  font-weight: 600 !important;
}
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  fill: #fff !important;
}
.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: var(--gold) !important;
}

/* ---------------------------------------------------------
   Page Réserver — layout
--------------------------------------------------------- */
.reserver-page-wrap {
  padding-block: 4rem;
}
.reserver-page-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: start;
}
.reserver-excursions-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.reserver-excursion-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 10px;
  border: 1.5px solid #e8edf2;
  transition: border-color .2s, box-shadow .2s;
  cursor: pointer;
  background: #fff;
}
.reserver-excursion-card:hover,
.reserver-excursion-card.active {
  border-color: var(--navy);
  box-shadow: 0 4px 16px rgba(26,60,94,.1);
}
.reserver-excursion-card.active {
  background: rgba(26,60,94,.03);
}
.reserver-excursion-thumb {
  width: 72px; height: 72px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  background: #e8edf2;
  display: flex; align-items: center; justify-content: center;
}
.reserver-excursion-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.reserver-excursion-thumb .placeholder-icon {
  font-size: 1.5rem;
  color: #bbb;
}
.reserver-excursion-info {
  flex: 1;
  min-width: 0;
}
.reserver-excursion-name {
  font-weight: 600;
  color: var(--text);
  font-size: .95rem;
  margin: 0 0 .25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.reserver-excursion-meta {
  font-size: .82rem;
  color: var(--text-light);
  display: flex;
  gap: .75rem;
}
.reserver-excursion-price {
  font-weight: 700;
  color: var(--navy);
  font-size: .95rem;
  white-space: nowrap;
}
.reserver-sticky-form {
  position: sticky;
  top: 100px;
}

/* ---------------------------------------------------------
   Responsive
--------------------------------------------------------- */
@media (max-width: 960px) {
  .reserver-page-grid {
    grid-template-columns: 1fr;
  }
  .reserver-sticky-form {
    position: static;
  }
  .booking-form-row--2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .booking-form-wrap {
    padding: 1.25rem;
  }
}

/* =========================================================
   BOOKING MODAL
   ========================================================= */

/* Overlay */
.bmodal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 35, .72);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.bmodal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* Panel */
.bmodal-panel {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 760px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
  transform: translateY(24px) scale(.98);
  transition: transform .28s cubic-bezier(.22,.68,0,1.2);
  overflow: hidden;
}
.bmodal-overlay.open .bmodal-panel {
  transform: none;
}

/* Header */
.bmodal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #eef0f3;
  flex-shrink: 0;
  background: var(--navy);
}

/* Steps */
.bmodal-steps {
  display: flex;
  align-items: center;
  gap: 0;
}
.bmodal-step {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: none;
  border: none;
  cursor: default;
  padding: .25rem .5rem;
  border-radius: 6px;
}
.bmodal-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  color: rgba(255,255,255,.7);
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
  flex-shrink: 0;
}
.bmodal-step-label {
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  transition: color .2s;
  white-space: nowrap;
}
.bmodal-step.active .bmodal-step-num {
  background: var(--gold);
  color: #fff;
}
.bmodal-step.active .bmodal-step-label {
  color: #fff;
  font-weight: 700;
}
.bmodal-step.done .bmodal-step-num {
  background: rgba(255,255,255,.35);
  color: #fff;
}
.bmodal-step.done .bmodal-step-num::after {
  content: '✓';
}
.bmodal-step.done .bmodal-step-label {
  color: rgba(255,255,255,.75);
}
.bmodal-step-line {
  width: 2rem;
  height: 2px;
  background: rgba(255,255,255,.2);
  margin: 0 .25rem;
  flex-shrink: 0;
}

/* Close */
.bmodal-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  flex-shrink: 0;
}
.bmodal-close:hover { background: rgba(255,255,255,.28); }

/* Body */
.bmodal-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  overscroll-behavior: contain;
}

/* Panes */
.bmodal-pane { display: none; }
.bmodal-pane.active { display: block; }
.bmodal-pane-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--navy);
  margin: 0 0 1.25rem;
}

/* ── Step 1 ── */
.bmodal-search-row {
  margin-bottom: 1rem;
}
.bmodal-search-wrap {
  position: relative;
}
.bmodal-search-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  pointer-events: none;
}
.bmodal-search {
  width: 100%;
  padding: .65rem 1rem .65rem 2.5rem;
  border: 1.5px solid #d1d9e0;
  border-radius: 8px;
  font-size: .95rem;
  font-family: var(--font-body);
  transition: border-color .2s;
  box-sizing: border-box;
}
.bmodal-search:focus {
  border-color: var(--navy);
  outline: none;
  box-shadow: 0 0 0 3px rgba(26,60,94,.1);
}

.bmodal-cats {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.25rem;
}
.bmodal-cat-btn {
  padding: .35rem .85rem;
  border-radius: 20px;
  border: 1.5px solid #d1d9e0;
  background: #fff;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
}
.bmodal-cat-btn:hover { border-color: var(--navy); color: var(--navy); }
.bmodal-cat-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.bmodal-exc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: .875rem;
}
.bmodal-exc-card {
  display: flex;
  flex-direction: column;
  border: 1.5px solid #e8edf2;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  text-align: left;
  transition: border-color .2s, box-shadow .2s, transform .18s;
  padding: 0;
}
.bmodal-exc-card:hover {
  border-color: var(--navy);
  box-shadow: 0 6px 20px rgba(26,60,94,.12);
  transform: translateY(-2px);
}
.bmodal-exc-card--selected {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232,160,32,.2);
}
.bmodal-exc-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
  background: #e8edf2;
}
.bmodal-exc-img--placeholder {
  width: 100%;
  height: 120px;
  background: #e8edf2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #bbb;
}
.bmodal-exc-info {
  padding: .75rem;
}
.bmodal-exc-name {
  font-weight: 600;
  font-size: .88rem;
  color: var(--text);
  margin: 0 0 .3rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bmodal-exc-dur {
  font-size: .78rem;
  color: var(--text-light);
  margin: 0 0 .3rem;
}
.bmodal-exc-dur i { margin-right: 3px; }
.bmodal-exc-price {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: .35rem;
}
.bmodal-price-old {
  font-size: .78rem;
  color: #aaa;
  text-decoration: line-through;
}
.bmodal-price-new {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}
.bmodal-price-pp {
  font-size: .75rem;
  color: var(--text-light);
}
.bmodal-no-results {
  text-align: center;
  color: var(--text-light);
  padding: 2rem;
  font-size: .9rem;
}

/* ── Step 2 ── */
.bmodal-selected-exc {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .875rem 1rem;
  background: #f5f7fa;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}
.bmodal-sel-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.bmodal-sel-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin: 0 0 .25rem;
}
.bmodal-sel-meta {
  font-size: .83rem;
  color: var(--text-light);
  margin: 0;
}

.bmodal-type-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.bmodal-type-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  padding: .875rem 1rem;
  border: 2px solid #d1d9e0;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.bmodal-type-btn i {
  font-size: 1.5rem;
  color: #999;
  transition: color .2s;
}
.bmodal-type-btn span {
  font-weight: 600;
  font-size: .9rem;
  color: var(--text);
}
.bmodal-type-btn small {
  font-size: .75rem;
  color: var(--text-light);
}
.bmodal-type-btn:hover { border-color: var(--navy); }
.bmodal-type-btn.active {
  border-color: var(--navy);
  background: rgba(26,60,94,.04);
}
.bmodal-type-btn.active i { color: var(--navy); }

.bmodal-counter-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .875rem 1rem;
  background: #f5f7fa;
  border-radius: 10px;
  margin-bottom: 1.25rem;
}
.bmodal-counter-label {
  font-weight: 600;
  font-size: .9rem;
  color: var(--text);
}
.bmodal-counter {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.bmodal-counter-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: #fff;
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
  line-height: 1;
}
.bmodal-counter-btn:hover {
  background: var(--navy);
  color: #fff;
}
.bmodal-counter-val {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  min-width: 2rem;
  text-align: center;
}

.bmodal-pkg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.bmodal-pkg-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  padding: .875rem .75rem;
  border: 2px solid #d1d9e0;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.bmodal-pkg-btn:hover { border-color: var(--navy); }
.bmodal-pkg-btn.selected {
  border-color: var(--gold);
  background: rgba(232,160,32,.06);
}
.bmodal-pkg-nb {
  font-weight: 700;
  font-size: .9rem;
  color: var(--text);
}
.bmodal-pkg-total {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
}
.bmodal-pkg-pp {
  font-size: .75rem;
  color: var(--text-light);
}

.bmodal-private-unavail {
  font-size: .88rem;
  color: var(--text-light);
  padding: .875rem;
  background: #f5f7fa;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.bmodal-field-wrap {
  margin-bottom: 1.25rem;
}
.bmodal-field-label {
  display: block;
  font-weight: 600;
  font-size: .875rem;
  color: var(--text);
  margin-bottom: .4rem;
}
.bmodal-field-label .required { color: #e53e3e; margin-left: 2px; }
.bmodal-input {
  width: 100%;
  padding: .65rem 1rem;
  border: 1.5px solid #d1d9e0;
  border-radius: 8px;
  font-size: .95rem;
  font-family: var(--font-body);
  color: var(--text);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
}
.bmodal-input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,60,94,.1);
  outline: none;
}
.bmodal-field-hint {
  font-size: .78rem;
  color: var(--text-light);
  display: block;
  margin-top: .35rem;
}
.bmodal-field-hint i { margin-right: 3px; }

/* ── Time slot pills ── */
.vsel-time-wrap { margin-bottom: 1rem; }
.vsel-time-slots,
.bmodal-time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: .375rem;
  margin-top: .5rem;
}
.vsel-time-btn,
.bmodal-time-btn {
  padding: .38rem .9rem;
  border: 1.5px solid #d1d9e0;
  border-radius: 9999px;
  background: #fff;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text, #333);
  cursor: pointer;
  transition: border-color .18s, background .18s, color .18s;
  white-space: nowrap;
}
.vsel-time-btn:hover,
.bmodal-time-btn:hover {
  border-color: var(--navy, #1a3c5e);
  color: var(--navy, #1a3c5e);
}
.vsel-time-btn.active,
.bmodal-time-btn.active {
  border-color: var(--navy, #1a3c5e);
  background: var(--navy, #1a3c5e);
  color: #fff;
}

/* ── Language flags ── */
.lang-flags {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: .25rem;
  vertical-align: middle;
}
.lang-flag {
  width: 22px;
  height: auto;
  border-radius: 3px;
  vertical-align: middle;
}

/* ── Step 4 : Payment ── */
.bmodal-payment-summary {
  background: #f8f9fb;
  border-radius: .5rem;
  padding: .75rem 1rem;
  margin-bottom: 1.25rem;
  font-size: .9rem;
}
.bmodal-pay-sum-row {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  padding: .18rem 0;
  color: #444;
}
.bmodal-pay-sum-row i { color: var(--navy, #1a3c5e); width: 1rem; flex-shrink: 0; margin-top: .15rem; }
.bmodal-pay-sum-total {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding-top: .5rem;
  margin-top: .375rem;
  border-top: 1px solid #e2e8f0;
}
.bmodal-pay-sum-total i { color: var(--gold, #e8a020); width: 1rem; }
.bmodal-pay-sum-amount { font-size: 1.25rem; font-weight: 700; color: var(--gold, #e8a020); }
.bmodal-pay-sum-sep {
  border-top: 1px dashed #e2e8f0;
  margin: .5rem 0;
}
.bmodal-pay-sum-row--phone i { color: #25d366; }

/* Phone-verify hint under tel field */
.bmodal-phone-hint {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  margin-top: .5rem;
  padding: .6rem .85rem;
  background: rgba(232, 160, 32, 0.08);
  border-left: 3px solid var(--gold, #e8a020);
  border-radius: 6px;
  font-size: .82rem;
  color: #5c4a1e;
  line-height: 1.4;
}
.bmodal-phone-hint i { color: var(--gold, #e8a020); flex-shrink: 0; margin-top: .15rem; }

.bmodal-payment-opts { display: flex; flex-direction: column; gap: .75rem; }

.bmodal-pay-opt {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 2px solid #e2e8f0;
  border-radius: .75rem;
  background: #fff;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.bmodal-pay-opt:hover,
.bmodal-pay-opt:focus {
  border-color: var(--navy, #1a3c5e);
  box-shadow: 0 2px 12px rgba(26,60,94,.12);
  outline: none;
}
.bmodal-pay-opt-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy, #1a3c5e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.bmodal-pay-opt-icon--cash { background: #2f855a; }
.bmodal-pay-opt-body { flex: 1; min-width: 0; }
.bmodal-pay-opt-title { display: block; font-weight: 600; font-size: .97rem; color: var(--navy, #1a3c5e); margin-bottom: .2rem; }
.bmodal-pay-opt-desc { font-size: .82rem; color: #555; margin: 0; line-height: 1.4; }
.bmodal-pay-badge {
  display: inline-block;
  margin-top: .35rem;
  padding: .12rem .55rem;
  border-radius: 9999px;
  font-size: .73rem;
  font-weight: 600;
  background: #edf2f7;
  color: #4a5568;
}
.bmodal-pay-badge--gold { background: #fef3c7; color: #92400e; }
.bmodal-pay-opt-arrow { color: #b0b8c1; font-size: .85rem; flex-shrink: 0; }

/* Footer right column (msg + next btn) */
.bmodal-footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: .3rem; }
.bmodal-footer-msg {
  font-size: .78rem;
  color: #c53030;
  margin: 0;
  text-align: right;
  max-width: 260px;
}

.bmodal-price-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .875rem 1rem;
  background: var(--navy);
  border-radius: 10px;
  margin-top: 1.25rem;
}
.bmodal-price-bar-label {
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  font-weight: 500;
}
.bmodal-price-bar-value {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold);
}

/* ── Step 3 ── */
.bmodal-summary {
  background: #f5f7fa;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.bmodal-summary-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  color: var(--text);
}
.bmodal-summary-row i {
  width: 18px;
  color: var(--navy);
  flex-shrink: 0;
}
.bmodal-summary-total {
  font-weight: 700;
  color: var(--navy);
  border-top: 1px solid #dde3ea;
  padding-top: .5rem;
  margin-top: .25rem;
}

/* Footer */
.bmodal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-top: 1px solid #eef0f3;
  flex-shrink: 0;
  background: #fafbfc;
}
.bmodal-btn-next {
  margin-left: auto;
}

/* =========================================================
   VARIANT SELECTOR — single product page
   ========================================================= */
.vsel {
  margin-top: 1.25rem;
}

.vsel-tabs {
  display: flex;
  gap: .5rem;
  margin-bottom: 1rem;
}
.vsel-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .625rem .75rem;
  border: 2px solid #d1d9e0;
  border-radius: 8px;
  background: #fff;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
}
.vsel-tab i { font-size: .9rem; }
.vsel-tab:hover { border-color: var(--navy); color: var(--navy); }
.vsel-tab.active {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.vsel-counter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1rem;
  background: #f5f7fa;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.vsel-counter-label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
}
.vsel-counter {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.vsel-counter-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: #fff;
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s, color .18s;
  line-height: 1;
}
.vsel-counter-btn:hover { background: var(--navy); color: #fff; }
.vsel-counter-val {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  min-width: 1.75rem;
  text-align: center;
}

.vsel-pkg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem;
  margin-bottom: 1rem;
}
.vsel-pkg-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .15rem;
  padding: .7rem .5rem;
  border: 2px solid #d1d9e0;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.vsel-pkg-btn:hover { border-color: var(--navy); }
.vsel-pkg-btn.active {
  border-color: var(--gold);
  background: rgba(232,160,32,.06);
}
.vsel-pkg-nb {
  font-weight: 700;
  font-size: .82rem;
  color: var(--text);
}
.vsel-pkg-total {
  font-size: .95rem;
  font-weight: 800;
  color: var(--navy);
}
.vsel-pkg-pp {
  font-size: .72rem;
  color: var(--text-light);
}

.vsel-date-wrap {
  margin-bottom: 1rem;
}
.vsel-date-label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .4rem;
}
.vsel-date-label i { margin-right: 5px; color: var(--navy); }
.vsel-date-input {
  width: 100%;
  padding: .65rem 1rem;
  border: 1.5px solid #d1d9e0;
  border-radius: 8px;
  font-size: .95rem;
  font-family: var(--font-body);
  cursor: pointer;
  box-sizing: border-box;
  transition: border-color .2s;
}
.vsel-date-input:focus,
.vsel-date-input.is-invalid { border-color: #e53e3e; outline: none; }

.vsel-price-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1rem;
  background: var(--navy);
  border-radius: 8px;
  margin-bottom: 1rem;
}
.vsel-price-label {
  font-size: .85rem;
  color: rgba(255,255,255,.8);
  font-weight: 500;
}
.vsel-price-total {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
}

/* ─────────────────────────────────────────────────────────
   TOGGLE GROUPS (vsel + bmodal shared pattern)
───────────────────────────────────────────────────────── */
.vsel-toggle-group,
.bmodal-toggle-group {
  margin-bottom: 1rem;
}
.vsel-toggle-label,
.bmodal-toggle-label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-light, #666);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .45rem;
}
.vsel-toggle,
.bmodal-toggle {
  display: flex;
  gap: .375rem;
}
.vsel-toggle-btn,
.bmodal-toggle-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .55rem .6rem;
  border: 2px solid #d1d9e0;
  border-radius: 8px;
  background: #fff;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text, #333);
  cursor: pointer;
  transition: border-color .18s, background .18s, color .18s;
}
.vsel-toggle-btn:hover,
.bmodal-toggle-btn:hover {
  border-color: var(--navy, #1a3c5e);
  color: var(--navy, #1a3c5e);
}
.vsel-toggle-btn.active,
.bmodal-toggle-btn.active {
  border-color: var(--navy, #1a3c5e);
  background: var(--navy, #1a3c5e);
  color: #fff;
}
.vsel-toggle-supp {
  font-size: .7rem;
  font-weight: 500;
  opacity: .8;
}

/* Pane visibility */
.vsel-pane { display: block; }

/* Counter unit labels */
.vsel-counter-unit,
.bmodal-counter-unit {
  font-size: .75rem;
  font-weight: 500;
  color: var(--text-light, #888);
  margin-left: .4rem;
}

/* Date required message */
.vsel-date-msg {
  font-size: .8rem;
  color: #e53e3e;
  margin-top: .35rem;
}

/* pkg-btn--contact (8+ persons) */
.vsel-pkg-btn--contact,
.bmodal-pkg-btn--contact {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .7rem 1rem;
  border: 2px dashed #d1d9e0;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: border-color .18s;
}
.vsel-pkg-btn--contact .vsel-pkg-nb,
.bmodal-pkg-btn--contact .bmodal-pkg-nb {
  font-weight: 700;
  font-size: .82rem;
  color: var(--text, #333);
}
.vsel-pkg-btn--contact .vsel-pkg-pp,
.bmodal-pkg-btn--contact .bmodal-pkg-pp {
  font-size: .75rem;
  color: var(--navy, #1a3c5e);
  font-weight: 600;
}
.vsel-pkg-btn--contact:hover,
.bmodal-pkg-btn--contact:hover {
  border-color: var(--gold, #e8a020);
}

/* ── Modal responsive ── */
@media (max-width: 640px) {
  .bmodal-panel {
    max-height: 96vh;
    border-radius: 12px 12px 0 0;
    align-self: flex-end;
  }
  .bmodal-overlay {
    align-items: flex-end;
    padding: 0;
  }
  .bmodal-step-label { display: none; }
  .bmodal-type-tabs { grid-template-columns: 1fr 1fr; }
  .bmodal-exc-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .bmodal-exc-img,
  .bmodal-exc-img--placeholder { height: 90px; }
  .bmodal-pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .vsel-pkg-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Booking form — 2-col row stacks on mobile ── */
@media (max-width: 768px) {
  .booking-form-row--2 { grid-template-columns: 1fr; }
}

/* ── Form fields — mobile ── */
@media (max-width: 480px) {
  .booking-field input,
  .booking-field select,
  .booking-field textarea { padding: .6rem .75rem; font-size: .92rem; }
  .booking-field label { font-size: .78rem; margin-bottom: .25rem; }
  .booking-field textarea { min-height: 60px; }
  .booking-date-wrap input { padding-left: 2.2rem; }
  .booking-date-icon { left: 10px; font-size: .85rem; }
  .booking-field select { padding-right: 1.8rem; background-position: right 10px center; }
}

/* ── Booking modal — 480px ── */
@media (max-width: 480px) {
  /* Header */
  .bmodal-header { padding: .85rem 1rem; }
  .bmodal-title { font-size: 1rem; }
  .bmodal-body { padding: 1rem; }
  .bmodal-footer { padding: .85rem 1rem; }

  /* Steps */
  .bmodal-steps { gap: .1rem; }
  .bmodal-step-num { width: 24px; height: 24px; font-size: .72rem; }
  .bmodal-step-line { width: .75rem; }

  /* Excursion grid */
  .bmodal-exc-grid { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
  .bmodal-exc-img,
  .bmodal-exc-img--placeholder { height: 75px; }
  .bmodal-exc-info { padding: .4rem .5rem; }
  .bmodal-exc-name { font-size: .78rem; line-height: 1.2; }
  .bmodal-exc-price { font-size: .78rem; }

  /* Type tabs */
  .bmodal-type-btn { padding: .65rem .65rem; }
  .bmodal-type-btn i { font-size: 1.2rem; }
  .bmodal-type-btn span { font-size: .8rem; }

  /* Package grid */
  .bmodal-pkg-btn { padding: .55rem .5rem; }
  .bmodal-pkg-nb { font-size: .78rem; }
  .bmodal-pkg-total { font-size: .9rem; }
  .bmodal-pkg-pp { font-size: .68rem; }

  /* Payment options */
  .bmodal-pay-opt { padding: .75rem; gap: .6rem; }
  .bmodal-pay-opt-icon { width: 38px; height: 38px; font-size: .95rem; flex-shrink: 0; }
  .bmodal-pay-opt-title { font-size: .88rem; }
  .bmodal-pay-opt-desc { font-size: .73rem; }

  /* Summary */
  .bmodal-summary-title { font-size: .85rem; }
  .bmodal-summary-total { font-size: 1rem; }
  .bmodal-summary-row { font-size: .82rem; }

  /* Vsel (variant selector on excursion page) */
  .vsel-section { padding: 1rem; }
  .vsel-type-btn { padding: .6rem .65rem; font-size: .82rem; }
  .vsel-counter-btn { width: 30px; height: 30px; font-size: .9rem; }
  .vsel-counter-val { font-size: 1rem; min-width: 28px; }
}

/* ── Séjour builder (/reserver/) — Responsive ── */
@media (max-width: 480px) {
  .sejour-step-title { font-size: 1rem; }
  .sejour-step-desc { font-size: .82rem; }
  .sejour-faq-question { font-size: .85rem; padding: .85rem 1rem; }
  .sday-time-pill { font-size: .72rem; padding: .18rem .48rem; }
  .sejour-planning-notice { font-size: .76rem; padding: .45rem .7rem; }
}
