/* =========================================================
   OBV OzyTrip – Popup Styles
   ========================================================= */

/* ----- Trigger button ----- */
.obv-ozytrip-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #e31b1b;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  line-height: 1;
}
.obv-ozytrip-trigger:hover { background-color: #c0140f; transform: translateY(-1px); }
.obv-ozytrip-trigger:active { transform: translateY(0); }

/* ----- Overlay ----- */
.obv-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 99999;
  display: flex;
  align-items: var(--obv-popup-align, center);
  justify-content: center;
  padding: var(--obv-popup-padding, 16px);
  animation: obv-fade-in .2s ease;
}
@keyframes obv-fade-in { from{opacity:0} to{opacity:1} }

/* ----- Popup container ----- */
.obv-popup {
  background: #fff;
  border-radius: var(--obv-popup-radius, 16px);
  width: var(--obv-popup-width, 100%);
  max-width: var(--obv-popup-max-width, 480px);
  height: var(--obv-popup-height, auto);
  max-height: var(--obv-popup-max-height, 90vh);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  animation: obv-slide-up .25s ease;
}
@keyframes obv-slide-up { from{transform:translateY(30px);opacity:0} to{transform:translateY(0);opacity:1} }

/* ----- Header ----- */
.obv-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #111;
  color: #fff;
  flex-shrink: 0;
}
.obv-popup-brand {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.obv-popup-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  opacity: .8;
  transition: opacity .15s;
}
.obv-popup-close:hover { opacity: 1; }

/* ----- Steps bar ----- */
.obv-steps-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: #f5f5f5;
  flex-shrink: 0;
}
.obv-step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #999;
  transition: all .2s;
  position: relative;
}
.obv-step-dot::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 2px;
  background: #ddd;
}
.obv-step-dot:last-child::after { display: none; }
.obv-step-dot.active {
  background: #e31b1b;
  color: #fff;
}
.obv-step-dot.done {
  background: #2ecc71;
  color: #fff;
}

/* ----- Body (scrollable) ----- */
.obv-popup-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}
.obv-step-panel {
  padding: 20px;
  flex: 1;
  overflow-y: auto;
}
.obv-step-title {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin: 0 0 16px;
}

/* ----- Loading ----- */
.obv-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  gap: 12px;
  color: #666;
}
.obv-spinner {
  width: 36px;
  height: 36px;
  border: 4px solid #eee;
  border-top-color: #e31b1b;
  border-radius: 50%;
  animation: obv-spin .7s linear infinite;
}
@keyframes obv-spin { to{transform:rotate(360deg)} }

/* ----- Error ----- */
.obv-error-msg {
  background: #fff0f0;
  border-left: 4px solid #e31b1b;
  color: #c00;
  padding: 12px 16px;
  margin: 0 20px 16px;
  border-radius: 4px;
  font-size: 14px;
}

/* ----- Calendar ----- */
.obv-calendar-wrapper { margin-bottom: 16px; }
.obv-calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.obv-cal-prev, .obv-cal-next {
  background: #f0f0f0;
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 16px;
  transition: background .15s;
}
.obv-cal-prev:hover, .obv-cal-next:hover { background: #e0e0e0; }
.obv-cal-prev:disabled, .obv-cal-next:disabled { opacity: .35; cursor: default; }
.obv-cal-month-label { font-weight: 700; font-size: 15px; }
.obv-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.obv-cal-weekday {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: #999;
  padding: 4px 0;
  text-transform: uppercase;
}
.obv-cal-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6px 4px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: all .15s;
  position: relative;
  min-height: 48px;
  line-height: 1.05;
}
.obv-cal-day:hover:not(.disabled):not(.empty) { background: #ffe5e5; }
.obv-cal-day.available {
  color: #111;
  font-weight: 600;
  background: #f2f2f2;
  border: 1px solid transparent;
  border-radius: 8px;
}
.obv-cal-day.available:hover:not(.selected) { background: #e9e9e9; border-color: #d8d8d8; }
.obv-cal-day.unavailable { color: #ccc; cursor: not-allowed; }
.obv-cal-day.disabled { color: #ddd; cursor: not-allowed; }
.obv-cal-day.empty { cursor: default; }
.obv-cal-day.selected {
  background: #e31b1b;
  color: #fff;
  font-weight: 700;
}
.obv-cal-day-num {
  display: block;
  font-size: 14px;
  font-weight: 800;
}
.obv-cal-price,
.obv-ds-price {
  display: block;
  min-height: 11px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.1;
}
.obv-cal-price.obv-price-cheap,
.obv-ds-price.obv-price-cheap { color: #00a63c; }
.obv-cal-price.obv-price-standard,
.obv-ds-price.obv-price-standard { color: #111; }
.obv-cal-day .obv-cal-quota {
  display: block;
  font-size: 9px;
  color: #2ecc71;
  line-height: 1;
}
.obv-cal-day.selected .obv-cal-quota { color: rgba(255,255,255,.8); }
.obv-cal-day.selected .obv-cal-price,
.obv-ds-chip--selected .obv-ds-price { color: #fff; }

/* ----- Calendar inline loading ----- */
.obv-cal-loading {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 0;
}
.obv-cal-loading .obv-spinner { width: 28px; height: 28px; border-width: 3px; }

/* ----- Spinner pequeño para total del paso 5 ----- */
.obv-spinner-sm { width: 18px; height: 18px; border-width: 2px; display: inline-block; vertical-align: middle; }
.obv-total-spinner { display: inline-flex; align-items: center; }

/* ----- Time slots ----- */
.obv-time-slots { margin-top: 16px; }
.obv-time-slots h3 { font-size: 15px; margin-bottom: 10px; }
.obv-time-slots-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.obv-time-btn {
  background: #f0f0f0;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all .15s;
}
.obv-time-btn:hover { background: #ffe5e5; border-color: #e31b1b; }
.obv-time-btn.selected { background: #e31b1b; color: #fff; border-color: #e31b1b; }

/* ----- Age groups ----- */
.obv-summary-bar {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #444;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.obv-age-groups-list { display: flex; flex-direction: column; gap: 12px; }
.obv-age-group-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}
.obv-age-group-info { flex: 1; }
.obv-age-group-name { font-weight: 700; font-size: 15px; }
.obv-age-group-price { font-size: 13px; color: #666; }
.obv-qty-ctrl {
  display: flex;
  align-items: center;
  gap: 12px;
}
.obv-qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #e31b1b;
  background: #fff;
  color: #e31b1b;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .15s;
  line-height: 1;
}
.obv-qty-btn:hover { background: #e31b1b; color: #fff; }
.obv-qty-btn:disabled { border-color: #ddd; color: #ddd; cursor: default; }
.obv-qty-btn:disabled:hover { background: #fff; }
.obv-qty-value { font-size: 16px; font-weight: 700; min-width: 24px; text-align: center; }
.obv-total-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 4px;
  font-size: 16px;
  border-top: 2px solid #f0f0f0;
  margin-top: 8px;
}
.obv-total-bar strong { font-size: 20px; color: #e31b1b; }

/* ----- Encounter / Meeting points ----- */
.obv-encounter-list { display: flex; flex-direction: column; gap: 10px; }
.obv-encounter-btn {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border: 2px solid #eee;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  transition: all .15s;
}
.obv-encounter-btn:hover { border-color: #e31b1b; background: #fff8f8; }
.obv-encounter-btn.selected { border-color: #e31b1b; background: #fff0f0; }
.obv-encounter-btn .enc-icon { font-size: 20px; flex-shrink: 0; }
.obv-encounter-btn .enc-info strong { display: block; font-size: 14px; }
.obv-encounter-btn .enc-info small { font-size: 12px; color: #666; }

/* ----- Billing form ----- */
.obv-purchase-summary { margin-bottom: 18px; }
.obv-purchase-summary-title,
.obv-billing-heading {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 800;
  color: #111;
}
.obv-purchase-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  border: 1px solid #ffd0d0;
  border-radius: 8px;
  padding: 16px;
  background: #fffafa;
}
.obv-purchase-summary-item {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  min-width: 0;
}
.obv-summary-icon {
  color: #8f9aa3;
  font-size: 14px;
  line-height: 1.3;
}
.obv-purchase-summary-item small {
  display: block;
  color: #333;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.1;
}
.obv-purchase-summary-item strong {
  display: block;
  color: #df002b;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.obv-billing-form { display: flex; flex-direction: column; gap: 14px; }
.obv-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
}
.obv-form-row { display: flex; flex-direction: column; gap: 4px; }
.obv-form-row--full { grid-column: 1 / -1; }
.obv-form-row label { font-size: 13px; font-weight: 800; color: #20242a; }
.obv-form-row input,
.obv-form-row select {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
  transition: border .15s;
  width: 100%;
  min-height: 42px;
  background: #fff;
}
.obv-form-row input:focus,
.obv-form-row select:focus { border-color: #e31b1b; }
.obv-form-row input.invalid,
.obv-form-row select.invalid { border-color: #e31b1b; background: #fff8f8; }
.obv-form-row .select2-container,
.obv-form-row .select2-container--default,
.obv-form-row .select2-container--default .select2-selection--single {
  width: 100% !important;
}
.obv-form-row .select2-container--default .select2-selection--single {
  border: 1px solid #ddd;
  border-radius: 4px;
  min-height: 42px;
  background: #fff;
}
.obv-form-row .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #20242a;
  font-size: 14px;
  line-height: 40px;
  padding-left: 12px;
  padding-right: 36px;
}
.obv-form-row .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 40px;
  right: 8px;
}
.obv-form-row .select2-container--default.select2-container--open .select2-selection--single,
.obv-form-row .select2-container--default.select2-container--focus .select2-selection--single {
  border-color: #e31b1b;
}
.obv-popup .select2-dropdown {
  border-color: #ddd;
  border-radius: 4px;
  overflow: hidden;
}
.obv-popup .select2-search--dropdown { padding: 8px; }
.obv-popup .select2-search--dropdown .select2-search__field {
  border: 1px solid #ddd;
  border-radius: 4px;
  min-height: 36px;
  padding: 6px 10px;
}
.obv-popup .select2-results__option {
  font-size: 14px;
  padding: 8px 12px;
}
.obv-popup .select2-container--default .select2-results__option--highlighted[aria-selected],
.obv-popup .select2-container--default .select2-results__option--highlighted[data-selected] {
  background: #e31b1b;
}
.obv-phone-field {
  display: grid;
  grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
  gap: 8px;
}
.obv-phone-field select,
.obv-phone-field input { min-width: 0; }

/* ----- Payment summary / breakdown ----- */
.obv-payment-summary {
  background: #f8f9fa;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 20px;
}
.obv-payment-summary .obv-summary-bar {
  margin-bottom: 10px;
  background: none;
  padding: 0;
  font-size: 13px;
  color: #555;
}
.obv-breakdown-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}
.obv-bdr-label { flex: 1; color: #333; }
.obv-bdr-unit  { font-size: 12px; color: #999; white-space: nowrap; }
.obv-bdr-sub   { font-weight: 600; color: #333; min-width: 90px; text-align: right; white-space: nowrap; }
.obv-breakdown-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  margin-top: 2px;
  font-size: 14px;
  font-weight: 700;
  color: #333;
}
.obv-breakdown-total strong { font-size: 20px; color: #e31b1b; }

/* ----- Currency ----- */
.obv-step-subtitle { font-size: 13px; color: #666; margin-bottom: 10px; }
.obv-currency-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 4px;
}
.obv-currency-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 8px;
  border: 2px solid #eee;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: all .15s;
}
.obv-currency-btn:hover { border-color: #e31b1b; }
.obv-currency-btn.active { border-color: #e31b1b; background: #fff0f0; color: #e31b1b; }
.obv-flag-icon { font-size: 22px; }

/* ----- Payment methods ----- */
.obv-payment-methods-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.obv-payment-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 2px solid #eee;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: all .15s;
  min-height: 56px;
  font-size: 16px;
  font-weight: 600;
}
.obv-payment-btn img { max-height: 32px; max-width: 140px; object-fit: contain; }
.obv-payment-btn:hover { border-color: #e31b1b; background: #fff8f8; }
.obv-payment-btn.selected { border-color: #e31b1b; background: #fff0f0; }

/* ----- Order summary ----- */
.obv-order-summary { margin-bottom: 20px; }
.obv-summary-product {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}
.obv-summary-product img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.obv-summary-product strong { display: block; font-size: 15px; margin-bottom: 4px; }
.obv-summary-detail-date,
.obv-summary-detail-passengers { font-size: 13px; color: #666; }
.obv-order-total-block { padding: 12px 0; }
.obv-order-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  align-items: center;
}
.obv-order-total-row strong { font-size: 22px; color: #e31b1b; }

/* ----- Pay button ----- */
.obv-btn-pay {
  display: block;
  width: 100%;
  background: #e31b1b;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s;
}
.obv-btn-pay:hover { background: #c0140f; }

/* ----- Success ----- */
.obv-success-panel {
  text-align: center;
  padding: 32px 20px;
}
.obv-success-icon {
  width: 64px;
  height: 64px;
  background: #2ecc71;
  color: #fff;
  border-radius: 50%;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.obv-success-panel h2 { color: #111; font-size: 22px; margin-bottom: 8px; }
.obv-success-msg { color: #666; font-size: 14px; margin-bottom: 16px; }
.obv-success-details { background: #f5f5f5; border-radius: 10px; padding: 14px; font-size: 14px; margin-bottom: 16px; text-align: left; }
.obv-btn-close-success {
  background: #111;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 15px;
  cursor: pointer;
}

/* ----- Footer ----- */
.obv-popup-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px 20px;
  border-top: 1px solid #eee;
  flex-shrink: 0;
  background: #fff;
}
.obv-btn-back {
  background: none;
  border: none;
  color: #666;
  font-size: 14px;
  cursor: pointer;
  padding: 8px 12px;
}
.obv-btn-next {
  background: #e31b1b;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s;
}
.obv-btn-next:hover { background: #c0140f; }
.obv-btn-next:disabled { background: #ddd; cursor: not-allowed; }

/* ----- Mobile ----- */
@media (max-width: 520px) {
  .obv-popup-overlay {
    padding: var(--obv-popup-padding, 0);
    align-items: var(--obv-popup-align, flex-end);
  }
  .obv-popup {
    border-radius: var(--obv-popup-radius, 16px 16px 0 0);
    max-width: var(--obv-popup-max-width, none);
    max-height: var(--obv-popup-max-height, 92vh);
  }
  .obv-wizard-progress { padding: 14px 16px; }
  .obv-wizard-title { font-size: 22px; }
  .obv-wizard-stepline { gap: 10px; }
  .obv-wizard-progress--product .obv-steps-bar { display: none; }
  .obv-purchase-summary-grid,
  .obv-form-grid { grid-template-columns: 1fr; }
  .obv-phone-field { grid-template-columns: 1fr; }
  .obv-currency-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   Wizard progress / stepper
   ========================================================= */
.obv-wizard-progress {
  padding: 18px 20px 16px;
  background: #f5f5f5;
  flex-shrink: 0;
}
.obv-wizard-progress-inner {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}
.obv-wizard-title {
  margin: 0 0 12px;
  color: #111;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;
}
.obv-wizard-stepline {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.obv-wizard-progress--category .obv-steps-bar { display: none; }
.obv-wizard-progress--product .obv-steps-bar {
  background: transparent;
  padding: 0;
  margin-left: auto;
}
.obv-progress-ring {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.obv-progress-ring svg {
  width: 44px;
  height: 44px;
  transform: rotate(-90deg);
}
.obv-ring-bg {
  fill: none;
  stroke: #ddd;
  stroke-width: 3.8;
}
.obv-ring-fg {
  fill: none;
  stroke: #e31b1b;
  stroke-width: 3.8;
  stroke-linecap: round;
  transition: stroke-dasharray .4s ease;
}
.obv-ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #333;
}
.obv-progress-step-label {
  font-size: 13px;
  font-weight: 600;
  color: #444;
  flex: 1;
  min-width: 0;
}

/* =========================================================
   Panel 0 — lista de productos
   ========================================================= */
.obv-product-list-loading {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}
.obv-product-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.obv-no-products {
  color: #999;
  font-size: 14px;
  text-align: center;
  padding: 24px 0;
}
.obv-product-card {
  border: 2px solid #eee;
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color .15s, transform .1s;
  background: #fff;
  position: relative;
  text-align: left;
}
.obv-product-card:hover { border-color: #e31b1b; transform: translateY(-1px); }
.obv-product-best { border-color: #e31b1b; }
.obv-product-best-label {
  background: #e31b1b;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  padding: 4px 8px;
}
.obv-product-card-inner {
  display: flex;
  gap: 12px;
  padding: 12px;
  align-items: flex-start;
}
.obv-product-img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.obv-product-info { flex: 1; min-width: 0; }
.obv-product-type-badge {
  display: inline-block;
  background: #fff0e0;
  color: #c06000;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-bottom: 4px;
}
.obv-product-name {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #111;
}
.obv-product-price { font-size: 13px; color: #555; margin: 4px 0; }
.obv-product-price strong { color: #e31b1b; }
.obv-product-includes {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.obv-product-includes li { font-size: 12px; color: #555; }

/* =========================================================
   Panel 1 — cabecera de producto seleccionado
   ========================================================= */
.obv-date-product-header-wrap { margin-bottom: 12px; }
.obv-date-product-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #f8f9fa;
  border-radius: 10px;
  border: 1px solid #eee;
}
.obv-date-product-img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.obv-date-product-meta { flex: 1; min-width: 0; }
.obv-date-product-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.obv-date-product-change {
  background: none;
  border: 1px solid #e31b1b;
  border-radius: 6px;
  color: #e31b1b;
  font-size: 12px;
  padding: 4px 10px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all .15s;
}
.obv-date-product-change:hover { background: #e31b1b; color: #fff; }

/* =========================================================
   Panel 1 — date slider
   ========================================================= */
.obv-date-slider-wrap { margin-bottom: 4px; }
.obv-date-slider {
  display: flex;
  align-items: stretch;
  gap: 6px;
  margin: 8px 0 6px;
}
.obv-ds-track {
  display: flex;
  gap: 6px;
  flex: 1;
  min-width: 0;
}
.obv-ds-chip {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 4px;
  border: 2px solid #eee;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: all .15s;
  min-width: 0;
  line-height: 1;
}
.obv-ds-chip:hover { border-color: #e31b1b; background: #fff8f8; }
.obv-ds-chip--selected { border-color: #e31b1b; background: #fff0f0; }
.obv-ds-day-name { font-size: 10px; color: #888; text-transform: capitalize; }
.obv-ds-day-num  { font-size: 20px; font-weight: 700; color: #111; }
.obv-ds-month    { font-size: 10px; color: #888; }
.obv-ds-price    { margin-top: 1px; }
.obv-ds-prev, .obv-ds-next {
  background: #f0f0f0;
  border: none;
  border-radius: 8px;
  padding: 0 10px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  transition: background .15s;
  display: flex;
  align-items: center;
}
.obv-ds-prev:hover, .obv-ds-next:hover { background: #e0e0e0; }
.obv-ds-prev:disabled, .obv-ds-next:disabled { opacity: .3; cursor: default; }
.obv-ds-full-cal-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: none;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 8px;
  font-size: 13px;
  color: #666;
  cursor: pointer;
  margin-top: 6px;
  transition: all .15s;
}
.obv-ds-full-cal-btn:hover { border-color: #e31b1b; color: #e31b1b; }

/* ----- Recordatorio de horario único ----- */
.obv-time-reminder {
  font-size: 13px;
  color: #666;
  background: #f5f5f5;
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 8px;
}
