/* ============================================================
   Luxury Ride – Frontend CSS  v1.1
   Dark Luxury Theme: Obsidian + Gold
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --lr-gold:       #C9A84C;
  --lr-gold-light: #E8C97A;
  --lr-gold-dark:  #8B6914;
  --lr-black:      #0A0A0A;
  --lr-charcoal:   #111111;
  --lr-surface:    #1A1A1A;
  --lr-surface2:   #222222;
  --lr-surface3:   #2A2A2A;
  --lr-border:     rgba(201,168,76,.18);
  --lr-border2:    rgba(201,168,76,.40);
  --lr-text:       #F0EAE0;
  --lr-text2:      #B0A898;
  --lr-text3:      #686058;
  --lr-success:    #4CAF84;
  --lr-danger:     #E05252;
  --lr-info:       #5B9BD5;
  --lr-r:          8px;
  --lr-r-lg:       12px;
  --lr-r-xl:       16px;
  --lr-shadow:     0 8px 32px rgba(0,0,0,.6);
  --lr-shadow-g:   0 4px 20px rgba(201,168,76,.25);
  --lr-font-d:     'Playfair Display', Georgia, serif;
  --lr-font-b:     'DM Sans', Arial, sans-serif;
}

/* ── Reset for plugin scope ──────────────────────────────── */
.lr-hero *, .lr-booking *, .lr-dashboard *, .lr-login-notice * {
  box-sizing: border-box;
}
.lr-hero, .lr-booking, .lr-dashboard, .lr-login-notice {
  font-family: var(--lr-font-b);
  color: var(--lr-text);
  -webkit-font-smoothing: antialiased;
}

/* ── Utility ─────────────────────────────────────────────── */
.lr-gold      { color: var(--lr-gold); }
.lr-loading   { padding: 48px; text-align: center; color: var(--lr-text3); font-size: 14px; }
.lr-error-msg { color: var(--lr-danger); font-size: 13px; }
.lr-success-msg { color: var(--lr-success); font-size: 13px; }
.lr-link      { color: var(--lr-gold); text-decoration: none; }
.lr-link:hover { text-decoration: underline; }

/* ── Buttons ─────────────────────────────────────────────── */
.lr-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; border-radius: var(--lr-r); padding: 11px 22px;
  font-family: var(--lr-font-b); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all .2s; text-decoration: none;
  white-space: nowrap; line-height: 1;
}
.lr-btn--gold    { background: linear-gradient(135deg,var(--lr-gold),var(--lr-gold-light)); color: #000; box-shadow: var(--lr-shadow-g); }
.lr-btn--gold:hover { filter: brightness(1.1); transform: translateY(-1px); }
.lr-btn--outline { background: transparent; border: 1.5px solid var(--lr-gold); color: var(--lr-gold); }
.lr-btn--outline:hover { background: rgba(201,168,76,.1); }
.lr-btn--ghost   { background: transparent; border: 1px solid var(--lr-border2); color: var(--lr-text2); }
.lr-btn--ghost:hover { border-color: var(--lr-text2); color: var(--lr-text); }
.lr-btn--full    { width: 100%; }
.lr-btn--lg      { padding: 14px 28px; font-size: 15px; }
.lr-btn--sm      { padding: 7px 14px; font-size: 12px; }
.lr-btn__icon    { transition: transform .2s; }
.lr-btn:hover .lr-btn__icon { transform: translateX(4px); }

/* ── Login Notice ────────────────────────────────────────── */
.lr-login-notice {
  background: var(--lr-surface); border: 1px solid var(--lr-border);
  border-radius: var(--lr-r-xl); padding: 60px 32px;
  text-align: center; max-width: 480px; margin: 40px auto;
}
.lr-login-notice__icon { font-size: 48px; margin-bottom: 16px; }
.lr-login-notice h3    { font-family: var(--lr-font-d); font-size: 1.5rem; margin-bottom: 8px; }
.lr-login-notice p     { color: var(--lr-text2); margin-bottom: 20px; }

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.lr-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--lr-black); background-size: cover; background-position: center;
  overflow: hidden;
}
.lr-hero__overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,.07) 0%, transparent 70%),
              linear-gradient(180deg, rgba(10,10,10,.65) 0%, rgba(10,10,10,.88) 100%);
}
.lr-hero__content { position: relative; z-index: 2; width: 100%; max-width: 860px; padding: 2rem; text-align: center; }
.lr-hero__badge   { display: inline-block; border: 1px solid var(--lr-border2); color: var(--lr-gold); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; padding: 6px 18px; border-radius: 100px; margin-bottom: 1.5rem; }
.lr-hero__title   { font-family: var(--lr-font-d); font-size: clamp(2.2rem,5.5vw,3.8rem); font-weight: 700; line-height: 1.1; margin-bottom: 1rem; color: var(--lr-text); }
.lr-hero__title em { font-style: italic; color: var(--lr-gold); }
.lr-hero__sub     { font-size: 1.05rem; color: var(--lr-text2); margin-bottom: 2.5rem; }

/* Hero Form */
.lr-hero__form {
  background: rgba(15,15,15,.92); border: 1px solid var(--lr-border);
  border-radius: var(--lr-r-xl); padding: 28px; backdrop-filter: blur(16px);
  box-shadow: var(--lr-shadow);
}
.lr-hero__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px;
}
.lr-hfield       { display: flex; flex-direction: column; gap: 6px; }
.lr-hfield--full { grid-column: 1/-1; }
.lr-hfield label { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--lr-gold); font-weight: 600; }
.lr-hero__form input,
.lr-hero__form select {
  width: 100%; background: var(--lr-surface2); border: 1px solid var(--lr-border);
  color: var(--lr-text) !important; border-radius: var(--lr-r); padding: 11px 14px;
  font-family: var(--lr-font-b); font-size: 14px; outline: none;
  transition: border-color .2s;
}
.lr-hero__form input::placeholder { color: var(--lr-text3) !important; }
.lr-hero__form input:focus,
.lr-hero__form select:focus { border-color: var(--lr-gold); box-shadow: 0 0 0 3px rgba(201,168,76,.12); }
.lr-hero__form select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='%23C9A84C' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-color: var(--lr-surface2); }
.lr-hero__form select option { background: var(--lr-surface2); color: var(--lr-text); }
.lr-input-icon   { position: relative; }
.lr-input-icon .lr-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); font-size: 14px; pointer-events: none; }
.lr-input-icon input { padding-left: 36px; }

/* Avail Result */
.lr-avail-result { margin-top: 0; animation: lrFadeUp .4s ease; }
.lr-avail-result__inner { background: rgba(15,15,15,.92); border: 1px solid var(--lr-border); border-radius: var(--lr-r-xl); padding: 32px; backdrop-filter: blur(16px); }
.lr-avail-badge  { display: inline-flex; align-items: center; gap: 8px; border-radius: 100px; padding: 8px 20px; margin-bottom: 16px; font-weight: 700; }
.lr-avail-badge--success { background: rgba(76,175,132,.12); border: 1px solid rgba(76,175,132,.3); color: var(--lr-success); }
.lr-avail-badge--error   { background: rgba(224,82,82,.12);  border: 1px solid rgba(224,82,82,.3);  color: var(--lr-danger); }
.lr-avail-result__message { color: var(--lr-text2); margin-bottom: 20px; font-size: 14px; }
.lr-avail-cars   { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 24px; }
.lr-avail-car-chip { background: var(--lr-surface2); border: 1px solid var(--lr-border); border-radius: var(--lr-r); padding: 12px 18px; text-align: center; min-width: 140px; cursor: pointer; transition: all .2s; }
.lr-avail-car-chip:hover { border-color: var(--lr-gold); }
.lr-avail-car-chip__name  { display: block; font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.lr-avail-car-chip__price { display: block; font-size: 20px; font-weight: 700; color: var(--lr-gold); }
.lr-avail-car-chip__seats { display: block; font-size: 11px; color: var(--lr-text3); margin-top: 3px; }
@keyframes lrFadeUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:none; } }

/* ════════════════════════════════════════════════════════════
   BOOKING WIZARD
   ════════════════════════════════════════════════════════════ */
.lr-booking {
  background: var(--lr-charcoal); border-radius: var(--lr-r-xl);
  padding: 32px; max-width: 1100px; margin: 0 auto; box-shadow: var(--lr-shadow);
}

/* Steps */
.lr-steps { display: flex; align-items: center; margin-bottom: 32px; }
.lr-step   { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.lr-step__circle {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2px solid var(--lr-border2); color: var(--lr-text3);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; transition: all .3s;
}
.lr-step__label { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--lr-text3); white-space: nowrap; }
.lr-step--active .lr-step__circle { border-color: var(--lr-gold); background: var(--lr-gold); color: #000; }
.lr-step--active .lr-step__label  { color: var(--lr-gold); font-weight: 600; }
.lr-step--done .lr-step__circle   { border-color: var(--lr-success); background: var(--lr-success); color: #fff; }
.lr-step--done .lr-step__label    { color: var(--lr-success); }
.lr-step__line { flex: 1; height: 1px; background: var(--lr-border); margin: 0 16px 20px; }

/* Panel */
.lr-panel__title { font-family: var(--lr-font-d); font-size: 1.5rem; font-weight: 700; margin-bottom: 24px; color: var(--lr-gold); }
.lr-panel__grid  { display: grid; grid-template-columns: 1fr 380px; gap: 24px; margin-bottom: 24px; }
.lr-panel__footer { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--lr-border); }

/* Form Fields – KEY FIX: explicit white text on dark bg */
.lr-field-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.lr-field-group label {
  font-size: 11px; text-transform: uppercase; letter-spacing: .08em;
  color: var(--lr-gold) !important; font-weight: 600;
}
.lr-field-group input,
.lr-field-group select,
.lr-field-group textarea {
  background: var(--lr-surface2) !important;
  border: 1px solid var(--lr-border) !important;
  color: var(--lr-text) !important;
  border-radius: var(--lr-r); padding: 10px 14px;
  font-family: var(--lr-font-b); font-size: 14px;
  outline: none; width: 100%; transition: border-color .2s;
}
.lr-field-group input::placeholder,
.lr-field-group textarea::placeholder { color: var(--lr-text3) !important; opacity: 1; }
.lr-field-group input:focus,
.lr-field-group select:focus,
.lr-field-group textarea:focus { border-color: var(--lr-gold) !important; box-shadow: 0 0 0 3px rgba(201,168,76,.12); }
.lr-field-group input[readonly] { color: var(--lr-text3) !important; cursor: default; }
.lr-field-group select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='%23C9A84C' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important; background-position: right 12px center !important;
  background-color: var(--lr-surface2) !important;
}
.lr-field-group select option { background: var(--lr-surface2); color: var(--lr-text); }
.lr-field-group textarea { resize: vertical; min-height: 80px; }
.lr-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Counter */
.lr-counter { display: flex; align-items: center; border: 1px solid var(--lr-border); border-radius: var(--lr-r); overflow: hidden; }
.lr-counter__btn { background: var(--lr-surface3); border: none; color: var(--lr-text); width: 38px; height: 42px; font-size: 20px; cursor: pointer; transition: all .15s; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lr-counter__btn:hover { background: var(--lr-gold); color: #000; }
.lr-counter input { border: none !important; border-left: 1px solid var(--lr-border) !important; border-right: 1px solid var(--lr-border) !important; border-radius: 0 !important; text-align: center; width: 52px !important; background: var(--lr-surface) !important; color: var(--lr-text) !important; padding: 0 !important; height: 42px; font-weight: 700; font-size: 15px; }

/* Map */
.lr-map { width: 100%; height: 340px; border-radius: var(--lr-r-lg); overflow: hidden; border: 1px solid var(--lr-border); background: var(--lr-surface); }
.lr-map__placeholder { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--lr-text3); font-size: 14px; }
.lr-map__placeholder span { font-size: 40px; }

/* Distance */
.lr-distance-info { display: flex; align-items: center; gap: 8px; background: var(--lr-surface2); border: 1px solid var(--lr-border); border-radius: var(--lr-r); padding: 10px 14px; margin-top: 12px; font-size: 13px; color: var(--lr-text2); }

/* Vehicle Grid */
.lr-vehicles-sort { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.lr-sort-label { font-size: 12px; color: var(--lr-text3); }
.lr-sort-btn { background: var(--lr-surface); border: 1px solid var(--lr-border); color: var(--lr-text2); padding: 6px 14px; border-radius: var(--lr-r); font-size: 12px; cursor: pointer; transition: all .15s; }
.lr-sort-btn--active, .lr-sort-btn:hover { border-color: var(--lr-gold); color: var(--lr-gold); background: rgba(201,168,76,.05); }
.lr-vehicles { display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: 20px; }

.lr-vehicle-card {
  background: var(--lr-surface); border: 1.5px solid var(--lr-border);
  border-radius: var(--lr-r-lg); padding: 20px; cursor: pointer;
  transition: all .25s; position: relative; overflow: hidden;
}
.lr-vehicle-card:hover { border-color: var(--lr-border2); transform: translateY(-3px); box-shadow: var(--lr-shadow-g); }
.lr-vehicle-card--selected { border-color: var(--lr-gold); background: rgba(201,168,76,.05); }
.lr-vehicle-card__img { width: 100%; height: 130px; border-radius: var(--lr-r); margin-bottom: 14px; background: var(--lr-surface2); display: flex; align-items: center; justify-content: center; font-size: 56px; overflow: hidden; object-fit: cover; }
.lr-vehicle-card__badge { position: absolute; top: 12px; right: 12px; background: var(--lr-gold); color: #000; font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 100px; display: none; }
.lr-vehicle-card--selected .lr-vehicle-card__badge { display: block; }
.lr-vehicle-card__name  { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: var(--lr-text); }
.lr-vehicle-card__desc  { font-size: 12px; color: var(--lr-text3); margin-bottom: 12px; }
.lr-vehicle-card__meta  { display: flex; gap: 14px; font-size: 12px; color: var(--lr-text2); margin-bottom: 14px; }
.lr-vehicle-card__price { font-size: 22px; font-weight: 700; color: var(--lr-gold); margin-bottom: 4px; }
.lr-vehicle-card__price small { font-size: 12px; color: var(--lr-text3); font-weight: 400; }
.lr-vehicle-card__base  { font-size: 11px; color: var(--lr-text3); margin-bottom: 14px; }

/* Total bar */
.lr-total-bar { background: var(--lr-surface); border: 1px solid var(--lr-border); border-radius: var(--lr-r); padding: 14px 20px; margin-bottom: 24px; font-size: 15px; color: var(--lr-text2); }
.lr-total-bar strong { color: var(--lr-gold); font-size: 22px; }

/* Auth Grid */
.lr-auth-grid { display: grid; grid-template-columns: 1fr 36px 1fr; gap: 0; margin-bottom: 20px; align-items: start; }
.lr-auth-panel { background: var(--lr-surface); border: 1px solid var(--lr-border); border-radius: var(--lr-r-lg); padding: 24px; }
.lr-auth-panel h3 { font-family: var(--lr-font-d); font-size: 1.2rem; margin-bottom: 18px; color: var(--lr-gold); }
.lr-auth-panel--center { max-width: 500px; margin: 0 auto; }
.lr-auth-divider { display: flex; align-items: center; justify-content: center; color: var(--lr-text3); font-size: 13px; font-weight: 600; }
.lr-auth-switch { font-size: 13px; color: var(--lr-text2); margin-top: 14px; text-align: center; }

/* Checkout Grid */
.lr-checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: 24px; }

/* Form sections */
.lr-form-section { background: var(--lr-surface); border: 1px solid var(--lr-border); border-radius: var(--lr-r-lg); padding: 20px; margin-bottom: 16px; }
.lr-form-section h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--lr-gold); font-weight: 700; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--lr-border); }

/* Booking Summary box */
.lr-summary-box .lr-summary-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; font-size: 13px; padding: 6px 0; border-bottom: 1px solid var(--lr-border); }
.lr-summary-box .lr-summary-row:last-child { border-bottom: none; }
.lr-summary-box .lr-summary-row span:first-child { color: var(--lr-text3); white-space: nowrap; }
.lr-summary-box .lr-summary-row span:last-child  { color: var(--lr-text2); text-align: right; }

/* Checkbox / Radio */
.lr-checkbox { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--lr-text2); cursor: pointer; margin-top: 8px; }
.lr-checkbox input { width: auto !important; accent-color: var(--lr-gold); }
.lr-radio-group { display: flex; gap: 20px; flex-wrap: wrap; }
.lr-radio { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--lr-text2); cursor: pointer; }
.lr-radio input { width: auto !important; accent-color: var(--lr-gold); }

/* Promo */
.lr-promo-row { display: flex; gap: 10px; }
.lr-promo-row input { flex: 1; }
.lr-promo-msg { font-size: 13px; margin-top: 8px; }
.lr-promo-msg--success { color: var(--lr-success); }
.lr-promo-msg--error   { color: var(--lr-danger); }

/* Pricing */
.lr-price-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--lr-border); font-size: 14px; color: var(--lr-text2); }
.lr-price-row:last-child { border-bottom: none; }
.lr-price-row--total span { font-size: 18px; font-weight: 700; color: var(--lr-gold) !important; }
.lr-price-row--discount span { color: var(--lr-success) !important; }
.lr-secure-badge { text-align: center; font-size: 12px; color: var(--lr-text3); margin: 14px 0; }

/* Success */
.lr-success { text-align: center; padding: 60px 24px; }
.lr-success__icon { width: 80px; height: 80px; border-radius: 50%; background: rgba(76,175,132,.12); border: 2px solid var(--lr-success); color: var(--lr-success); font-size: 36px; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.lr-success h2    { font-family: var(--lr-font-d); font-size: 2rem; margin-bottom: 12px; color: var(--lr-text); }
.lr-success p     { color: var(--lr-text2); margin-bottom: 8px; }
.lr-success__sub  { font-size: 14px; }
.lr-success__actions { display: flex; gap: 12px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }

/* ════════════════════════════════════════════════════════════
   DASHBOARD
   ════════════════════════════════════════════════════════════ */
.lr-dashboard {
  display: grid; grid-template-columns: 260px 1fr;
  min-height: 700px; background: var(--lr-charcoal);
  border-radius: var(--lr-r-xl); overflow: hidden;
  box-shadow: var(--lr-shadow);
}

/* Sidebar */
.lr-dash-sidebar { background: var(--lr-black); border-right: 1px solid var(--lr-border); display: flex; flex-direction: column; }
.lr-dash-avatar  { display: flex; align-items: center; gap: 12px; padding: 20px; border-bottom: 1px solid var(--lr-border); }
.lr-dash-avatar__img { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg,var(--lr-gold-dark),var(--lr-gold)); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; color: #000; flex-shrink: 0; border: 2px solid var(--lr-gold); }
.lr-dash-avatar__info strong { display: block; font-size: 13px; color: var(--lr-text); margin-bottom: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 160px; }
.lr-dash-avatar__info span   { font-size: 11px; color: var(--lr-text3); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: block; max-width: 160px; }

.lr-dash-nav { display: flex; flex-direction: column; padding: 10px 0; flex: 1; }
.lr-dash-nav__item {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 20px; background: none; border: none;
  color: var(--lr-text2); font-family: var(--lr-font-b); font-size: 14px; font-weight: 500;
  cursor: pointer; transition: all .15s; text-align: left; width: 100%; text-decoration: none;
  border-left: 3px solid transparent;
}
.lr-dash-nav__item:hover { background: var(--lr-surface); color: var(--lr-text); }
.lr-dash-nav__item--active { background: rgba(201,168,76,.08); color: var(--lr-gold); border-left-color: var(--lr-gold); font-weight: 600; }
.lr-dash-nav__item--book   { color: var(--lr-success) !important; margin-top: auto; }
.lr-dash-nav__item--book:hover { background: rgba(76,175,132,.08); }
.lr-dash-nav__item--danger { color: var(--lr-danger) !important; }
.lr-dash-nav__item--danger:hover { background: rgba(224,82,82,.08); }
.lr-nav-icon { font-size: 16px; flex-shrink: 0; }

/* Main */
.lr-dash-main   { padding: 32px; overflow: auto; background: var(--lr-charcoal); }
.lr-dash-panel  { display: none; animation: lrFadeUp .3s ease; }
.lr-dash-panel--active { display: block; }

/* Welcome row */
.lr-dash-welcome { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 24px; flex-wrap: wrap; }
.lr-dash-welcome h2 { font-family: var(--lr-font-d); font-size: 1.7rem; color: var(--lr-text); margin: 0; }
.lr-dash-welcome p  { color: var(--lr-text3); font-size: 14px; margin: 4px 0 0; }

/* Stats */
.lr-dash-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 28px; }
.lr-stat-card { background: var(--lr-surface); border: 1px solid var(--lr-border); border-radius: var(--lr-r-lg); padding: 20px; text-align: center; transition: border-color .2s; }
.lr-stat-card:hover { border-color: var(--lr-border2); }
.lr-stat-card--gold { border-color: rgba(201,168,76,.3); background: rgba(201,168,76,.05); }
.lr-stat-card__num   { display: block; font-size: 28px; font-weight: 700; color: var(--lr-gold); font-family: var(--lr-font-d); }
.lr-stat-card__label { font-size: 11px; color: var(--lr-text3); margin-top: 6px; text-transform: uppercase; letter-spacing: .06em; display: block; }

/* Section header */
.lr-dash-section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.lr-dash-section-header h3 { font-size: 1rem; font-weight: 700; color: var(--lr-text2); margin: 0; text-transform: uppercase; letter-spacing: .06em; font-size: 12px; }

/* Panel header */
.lr-dash-panel__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.lr-dash-panel__header h2 { font-family: var(--lr-font-d); font-size: 1.6rem; color: var(--lr-text); margin: 0; }

/* Filter tabs */
.lr-filter-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.lr-filter-tab  { background: var(--lr-surface); border: 1px solid var(--lr-border); color: var(--lr-text2); padding: 7px 16px; border-radius: 100px; font-size: 12px; font-weight: 600; cursor: pointer; transition: all .15s; }
.lr-filter-tab--active, .lr-filter-tab:hover { border-color: var(--lr-gold); color: var(--lr-gold); background: rgba(201,168,76,.07); }

/* Reservation Card */
.lr-res-card {
  background: var(--lr-surface); border: 1px solid var(--lr-border);
  border-radius: var(--lr-r-lg); padding: 20px; margin-bottom: 12px;
  display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: start;
  transition: border-color .2s;
}
.lr-res-card:hover { border-color: var(--lr-border2); }
.lr-res-card__meta    { font-size: 12px; color: var(--lr-text3); margin-bottom: 6px; }
.lr-res-card__vehicle { font-size: 15px; font-weight: 700; color: var(--lr-text); margin-bottom: 6px; }
.lr-res-card__route   { font-size: 13px; color: var(--lr-text2); margin-bottom: 6px; line-height: 1.5; }
.lr-res-card__pax     { font-size: 12px; color: var(--lr-text3); }
.lr-res-card__right   { text-align: right; }
.lr-res-card__total   { font-size: 22px; font-weight: 700; color: var(--lr-gold); margin-bottom: 8px; font-family: var(--lr-font-d); }

/* Status badges */
.lr-status-badge { display: inline-block; padding: 4px 12px; border-radius: 100px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.lr-status-badge--confirmed { background: rgba(76,175,132,.12);  color: var(--lr-success); }
.lr-status-badge--pending   { background: rgba(201,168,76,.12);  color: var(--lr-gold); }
.lr-status-badge--completed { background: rgba(91,155,213,.12);  color: var(--lr-info); }
.lr-status-badge--cancelled { background: rgba(224,82,82,.12);   color: var(--lr-danger); }

/* Payment cards */
.lr-pay-card { background: var(--lr-surface); border: 1px solid var(--lr-border); border-radius: var(--lr-r-lg); padding: 18px 20px; margin-bottom: 10px; display: flex; align-items: center; justify-content: space-between; gap: 16px; transition: border-color .2s; }
.lr-pay-card:hover { border-color: var(--lr-border2); }
.lr-pay-card__id   { font-weight: 700; color: var(--lr-text); margin-bottom: 4px; font-size: 14px; }
.lr-pay-card__info { font-size: 13px; color: var(--lr-text3); margin-top: 2px; }
.lr-pay-card__right { text-align: right; }
.lr-pay-card__amount { font-size: 20px; font-weight: 700; color: var(--lr-gold); margin-bottom: 6px; }

/* Profile */
.lr-profile-form { background: var(--lr-surface); border: 1px solid var(--lr-border); border-radius: var(--lr-r-lg); padding: 28px; max-width: 600px; }
.lr-profile-avatar-row { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--lr-border); }
.lr-profile-avatar { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg,var(--lr-gold-dark),var(--lr-gold)); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 22px; color: #000; border: 2px solid var(--lr-gold); flex-shrink: 0; }
.lr-profile-avatar-row strong { display: block; font-size: 16px; color: var(--lr-text); }
.lr-profile-avatar-row p { font-size: 13px; color: var(--lr-text3); margin: 3px 0 0; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .lr-panel__grid    { grid-template-columns: 1fr; }
  .lr-checkout-grid  { grid-template-columns: 1fr; }
  .lr-auth-grid      { grid-template-columns: 1fr; }
  .lr-auth-divider   { display: none; }
  .lr-dashboard      { grid-template-columns: 1fr; }
  .lr-dash-sidebar   { flex-direction: row; overflow-x: auto; border-right: none; border-bottom: 1px solid var(--lr-border); }
  .lr-dash-avatar    { display: none; }
  .lr-dash-nav       { flex-direction: row; padding: 0; }
  .lr-dash-nav__item { padding: 14px 16px; font-size: 12px; white-space: nowrap; border-left: none; border-bottom: 3px solid transparent; }
  .lr-dash-nav__item--active { border-left: none; border-bottom-color: var(--lr-gold); }
  .lr-dash-stats     { grid-template-columns: 1fr 1fr; }
  .lr-vehicles       { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .lr-booking        { padding: 20px 14px; }
  .lr-hero__grid     { grid-template-columns: 1fr; }
  .lr-vehicles       { grid-template-columns: 1fr; }
  .lr-field-row      { grid-template-columns: 1fr; }
  .lr-dash-stats     { grid-template-columns: 1fr 1fr; gap: 10px; }
  .lr-res-card       { grid-template-columns: 1fr; }
  .lr-res-card__right { text-align: left; display: flex; align-items: center; gap: 12px; }
  .lr-dash-main      { padding: 20px 14px; }
  .lr-steps          { gap: 4px; }
  .lr-step__label    { display: none; }
}

/* ── Confirmation Banner (shown on dashboard after Stripe return) ─ */
.lr-dash-confirm-banner {
  display: flex; align-items: center; gap: 16px;
  background: rgba(76,175,132,.12); border: 1px solid rgba(76,175,132,.35);
  border-radius: var(--lr-r-lg); padding: 18px 20px; margin-bottom: 24px;
  animation: lrFadeUp .4s ease;
}
.lr-dash-confirm-banner--warn {
  background: rgba(201,168,76,.1); border-color: rgba(201,168,76,.3);
}
.lr-dash-confirm-banner__icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(76,175,132,.2); color: var(--lr-success);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; flex-shrink: 0;
}
.lr-dash-confirm-banner--warn .lr-dash-confirm-banner__icon {
  background: rgba(201,168,76,.15); color: var(--lr-gold);
}
.lr-dash-confirm-banner div { flex: 1; }
.lr-dash-confirm-banner strong { display: block; font-size: 15px; color: var(--lr-text); margin-bottom: 3px; }
.lr-dash-confirm-banner p { font-size: 13px; color: var(--lr-text2); margin: 0; }
.lr-dash-confirm-banner button {
  background: none; border: none; color: var(--lr-text3);
  cursor: pointer; font-size: 18px; line-height: 1; flex-shrink: 0;
  transition: color .15s; padding: 4px;
}
.lr-dash-confirm-banner button:hover { color: var(--lr-text); }

/* ── Extra passenger section ─────────────────────────────── */
.lr-extra-pax { background: rgba(201,168,76,.04) !important; }

/* ── No upcoming rides empty state ──────────────────────── */
.lr-empty-state {
  background: var(--lr-surface); border: 1px dashed var(--lr-border2);
  border-radius: var(--lr-r-lg); padding: 40px; text-align: center;
}
.lr-empty-state__icon { font-size: 40px; margin-bottom: 12px; }
.lr-empty-state p { color: var(--lr-text3); font-size: 14px; margin-bottom: 16px; }

/* ════════════════════════════════════════════════════════════
   PRICING SYSTEM STYLES
   ════════════════════════════════════════════════════════════ */

/* ── Pricing Hero ──────────────────────────────────────────── */
.lr-ph {
  position: relative; min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1208 50%, #0a0a0a 100%);
  overflow: hidden;
}
.lr-ph::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(201,168,76,.12) 0%, transparent 70%);
}
.lr-ph__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.lr-ph__content { position: relative; z-index: 2; text-align: center; padding: 60px 24px; max-width: 760px; width: 100%; }
.lr-ph__title   { font-family: var(--lr-font-d); font-size: clamp(2rem,5vw,3.4rem); font-weight: 700; color: var(--lr-text); margin-bottom: 16px; line-height: 1.15; }
.lr-ph__title em { color: var(--lr-gold); font-style: italic; }
.lr-ph__sub     { font-size: 1.1rem; color: var(--lr-text2); margin-bottom: 32px; line-height: 1.6; }
.lr-ph__ctas    { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Pricing Sections ──────────────────────────────────────── */
.lr-section { padding: 72px 24px; max-width: 1100px; margin: 0 auto; }
.lr-section__header { text-align: center; margin-bottom: 48px; }
.lr-section__tag    { display: inline-block; border: 1px solid var(--lr-border2); color: var(--lr-gold); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; padding: 5px 16px; border-radius: 100px; margin-bottom: 14px; }
.lr-section__title  { font-family: var(--lr-font-d); font-size: clamp(1.8rem,4vw,2.6rem); font-weight: 700; color: var(--lr-text); margin-bottom: 12px; }
.lr-section__title em { color: var(--lr-gold); font-style: italic; }
.lr-section__sub    { font-size: 1rem; color: var(--lr-text3); }

/* ── Hourly Rate Cards ─────────────────────────────────────── */
.lr-rate-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 24px; margin-bottom: 40px; }
.lr-rate-card {
  background: var(--lr-surface); border: 1.5px solid var(--lr-border);
  border-radius: var(--lr-r-xl); padding: 28px; transition: all .25s;
  display: flex; flex-direction: column;
}
.lr-rate-card:hover { border-color: var(--lr-gold); transform: translateY(-4px); box-shadow: var(--lr-shadow-g); }
.lr-rate-card__icon     { font-size: 44px; margin-bottom: 16px; }
.lr-rate-card__name     { font-family: var(--lr-font-d); font-size: 1.3rem; font-weight: 700; color: var(--lr-text); margin-bottom: 6px; }
.lr-rate-card__examples { font-size: 12px; color: var(--lr-text3); margin-bottom: 20px; line-height: 1.5; }
.lr-rate-card__price    { display: flex; align-items: baseline; gap: 4px; margin-bottom: 12px; }
.lr-rate-card__from     { font-size: 2rem; font-weight: 800; color: var(--lr-gold); font-family: var(--lr-font-d); }
.lr-rate-card__sep      { font-size: 1.4rem; color: var(--lr-text3); }
.lr-rate-card__to       { font-size: 2rem; font-weight: 800; color: var(--lr-gold); font-family: var(--lr-font-d); }
.lr-rate-card__unit     { font-size: 14px; color: var(--lr-text3); }
.lr-rate-card__min      { display: flex; justify-content: space-between; background: rgba(201,168,76,.07); border: 1px solid var(--lr-border); border-radius: var(--lr-r); padding: 10px 14px; margin-bottom: 18px; font-size: 13px; color: var(--lr-text2); }
.lr-rate-card__features { list-style: none; padding: 0; margin: 0 0 20px; flex: 1; }
.lr-rate-card__features li { font-size: 13px; color: var(--lr-text2); padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.04); }
.lr-rate-card__features li:last-child { border-bottom: none; }

/* ── Info Strip ─────────────────────────────────────────────── */
.lr-info-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; background: var(--lr-surface); border: 1px solid var(--lr-border); border-radius: var(--lr-r-lg); padding: 24px; }
.lr-info-strip__item { display: flex; gap: 14px; align-items: flex-start; }
.lr-info-strip__icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.lr-info-strip__item strong { display: block; font-size: 14px; color: var(--lr-text); margin-bottom: 4px; }
.lr-info-strip__item p { font-size: 13px; color: var(--lr-text3); margin: 0; line-height: 1.5; }

/* ── Tabs (airport selector) ────────────────────────────────── */
.lr-tabs { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.lr-tab  { background: var(--lr-surface); border: 1.5px solid var(--lr-border); color: var(--lr-text2); padding: 10px 22px; border-radius: 100px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all .2s; }
.lr-tab--active, .lr-tab:hover { background: rgba(201,168,76,.1); border-color: var(--lr-gold); color: var(--lr-gold); }
.lr-tab-panel { display: none; }
.lr-tab-panel--active { display: block; animation: lrFadeUp .3s ease; }

/* ── Airport Cards ──────────────────────────────────────────── */
.lr-airport-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 20px; }
.lr-airport-card { background: var(--lr-surface); border: 1.5px solid var(--lr-border); border-radius: var(--lr-r-lg); padding: 22px; transition: all .25s; }
.lr-airport-card:hover { border-color: var(--lr-gold); transform: translateY(-2px); box-shadow: var(--lr-shadow-g); }
.lr-airport-card__badge  { display: inline-block; background: var(--lr-gold); color: #000; font-size: 12px; font-weight: 800; padding: 4px 12px; border-radius: 100px; letter-spacing: .08em; margin-bottom: 14px; }
.lr-airport-card__route  { margin-bottom: 14px; }
.lr-airport-card__origin { display: block; font-size: 13px; color: var(--lr-text3); margin-bottom: 4px; }
.lr-airport-card__arrow  { display: inline-block; color: var(--lr-gold); margin: 4px 0; font-size: 16px; }
.lr-airport-card__dest   { display: block; font-size: 14px; font-weight: 700; color: var(--lr-text); }
.lr-airport-card__price  { font-size: 22px; font-weight: 800; color: var(--lr-gold); font-family: var(--lr-font-d); margin-bottom: 6px; }
.lr-airport-card__note   { font-size: 12px; color: var(--lr-text3); margin-bottom: 16px; }

/* ── Package Cards ──────────────────────────────────────────── */
.lr-pkg-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap: 24px; }
.lr-pkg-card {
  background: var(--lr-surface); border: 1.5px solid var(--lr-border);
  border-radius: var(--lr-r-xl); padding: 28px; text-align: center;
  transition: all .25s; display: flex; flex-direction: column;
}
.lr-pkg-card:hover { border-color: var(--lr-gold); transform: translateY(-4px); box-shadow: var(--lr-shadow-g); }
.lr-pkg-card__icon    { font-size: 44px; margin-bottom: 14px; }
.lr-pkg-card__name    { font-family: var(--lr-font-d); font-size: 1.2rem; font-weight: 700; color: var(--lr-text); margin-bottom: 8px; }
.lr-pkg-card__desc    { font-size: 13px; color: var(--lr-text3); margin-bottom: 20px; }
.lr-pkg-card__pricing { background: rgba(201,168,76,.07); border: 1px solid var(--lr-border); border-radius: var(--lr-r); padding: 16px; margin-bottom: 18px; }
.lr-pkg-card__base    { font-size: 13px; color: var(--lr-text3); margin-bottom: 4px; }
.lr-pkg-card__base span { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }
.lr-pkg-card__grat    { font-size: 12px; color: var(--lr-text3); margin-bottom: 8px; }
.lr-pkg-card__total   { font-size: 2rem; font-weight: 800; color: var(--lr-gold); font-family: var(--lr-font-d); }
.lr-pkg-card__total span { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; font-weight: 400; color: var(--lr-text3); }
.lr-pkg-card__features { list-style: none; padding: 0; margin: 0 0 20px; text-align: left; flex: 1; }
.lr-pkg-card__features li { font-size: 13px; color: var(--lr-text2); padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.04); }
.lr-pkg-card__features li:last-child { border-bottom: none; }

/* ── Calculator ─────────────────────────────────────────────── */
.lr-calc-section { background: var(--lr-charcoal); border-radius: var(--lr-r-xl); }
.lr-calc-wrap    { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.lr-calc-form    { background: var(--lr-surface); border: 1px solid var(--lr-border); border-radius: var(--lr-r-lg); padding: 28px; }
.lr-calc-field   { margin-bottom: 20px; }
.lr-calc-field label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--lr-gold); font-weight: 600; margin-bottom: 8px; }
.lr-calc-field select,
.lr-calc-field input[type="number"] {
  width: 100%; background: var(--lr-surface2) !important; border: 1px solid var(--lr-border) !important;
  color: var(--lr-text) !important; border-radius: var(--lr-r); padding: 10px 14px;
  font-family: var(--lr-font-b); font-size: 14px; outline: none;
}
.lr-calc-field select { appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='%23C9A84C' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important; background-position: right 12px center !important;
  background-color: var(--lr-surface2) !important;
}
.lr-calc-field select option { background: var(--lr-surface2); color: var(--lr-text); }
.lr-calc-min-note { font-size: 11px; color: var(--lr-text3); font-weight: 400; text-transform: none; letter-spacing: 0; margin-left: 6px; }
.lr-calc-note     { font-size: 12px; color: var(--lr-gold); margin-top: 4px; }

/* Type buttons */
.lr-type-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.lr-type-btn  { background: var(--lr-surface2); border: 1.5px solid var(--lr-border); color: var(--lr-text2); padding: 9px 18px; border-radius: var(--lr-r); font-size: 13px; font-weight: 600; cursor: pointer; transition: all .2s; }
.lr-type-btn--active, .lr-type-btn:hover { background: rgba(201,168,76,.1); border-color: var(--lr-gold); color: var(--lr-gold); }

/* Stepper */
.lr-calc-stepper { display: flex; align-items: center; border: 1px solid var(--lr-border); border-radius: var(--lr-r); overflow: hidden; }
.lr-calc-step    { background: var(--lr-surface3); border: none; color: var(--lr-text); width: 40px; height: 44px; font-size: 20px; cursor: pointer; flex-shrink: 0; transition: all .15s; display: flex; align-items: center; justify-content: center; }
.lr-calc-step:hover { background: var(--lr-gold); color: #000; }
.lr-calc-stepper input { border: none !important; border-left: 1px solid var(--lr-border) !important; border-right: 1px solid var(--lr-border) !important; border-radius: 0 !important; text-align: center; flex: 1; height: 44px; padding: 0 !important; font-weight: 700; font-size: 16px; }

/* Calculator result */
.lr-calc-result {
  background: var(--lr-surface); border: 1px solid var(--lr-border);
  border-radius: var(--lr-r-lg); padding: 28px; min-height: 380px;
  display: flex; flex-direction: column; justify-content: center;
}
.lr-calc-result__placeholder { text-align: center; color: var(--lr-text3); }
.lr-calc-result__placeholder p { font-size: 14px; margin-top: 12px; line-height: 1.6; }
.lr-calc-result__breakdown h3 { font-family: var(--lr-font-d); font-size: 1.3rem; color: var(--lr-gold); margin-bottom: 6px; }
.lr-calc-service-label { font-size: 13px; color: var(--lr-text3); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--lr-border); }
.lr-calc-rows  { margin-bottom: 20px; }
.lr-calc-row   { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--lr-border); font-size: 14px; color: var(--lr-text2); }
.lr-calc-row:last-child { border-bottom: none; }
.lr-calc-row--sub   span:last-child { font-weight: 600; color: var(--lr-text); }
.lr-calc-row--grat  span:first-child { color: var(--lr-text3); }
.lr-calc-row--total span { font-size: 20px; font-weight: 800; color: var(--lr-gold) !important; font-family: var(--lr-font-d); }
.lr-calc-disclaimer { font-size: 11px; color: var(--lr-text3); margin-bottom: 20px; font-style: italic; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .lr-calc-wrap   { grid-template-columns: 1fr; }
  .lr-info-strip  { grid-template-columns: 1fr; }
  .lr-ph__ctas    { flex-direction: column; align-items: center; }
}
@media (max-width: 600px) {
  .lr-section     { padding: 48px 16px; }
  .lr-rate-grid   { grid-template-columns: 1fr; }
  .lr-pkg-grid    { grid-template-columns: 1fr; }
  .lr-airport-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   CSS FIXES v2.2 — Visibility, CTAs, Booking Type Buttons
   ════════════════════════════════════════════════════════════ */

/* ── Global text visibility fixes ───────────────────────────
   Force all text inside plugin sections to be light-colored  */
.lr-booking h2,
.lr-booking h3,
.lr-booking h4,
.lr-booking p,
.lr-booking span,
.lr-booking label,
.lr-booking li,
.lr-dashboard h2,
.lr-dashboard h3,
.lr-dashboard h4,
.lr-dashboard p,
.lr-dashboard span,
.lr-dashboard strong {
  color: inherit;
}

/* Panel titles — always gold */
.lr-panel__title { color: var(--lr-gold) !important; }

/* Form section headings — gold, always visible */
.lr-form-section h4 {
  color: var(--lr-gold) !important;
  font-size: 11px !important;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  border-bottom: 1px solid var(--lr-border);
  padding-bottom: 10px;
  margin-bottom: 16px;
}

/* All labels inside booking/dashboard — gold */
.lr-booking label,
.lr-dashboard label {
  color: var(--lr-gold) !important;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}

/* All input/select/textarea — white text, dark bg, always */
.lr-booking input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]),
.lr-booking select,
.lr-booking textarea,
.lr-dashboard input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]),
.lr-dashboard select,
.lr-dashboard textarea {
  background: var(--lr-surface2) !important;
  color: #ffffff !important;
  border: 1px solid rgba(201,168,76,.25) !important;
  border-radius: var(--lr-r) !important;
  padding: 11px 14px !important;
  font-family: var(--lr-font-b) !important;
  font-size: 14px !important;
}
.lr-booking input::placeholder,
.lr-booking textarea::placeholder,
.lr-dashboard input::placeholder,
.lr-dashboard textarea::placeholder {
  color: rgba(255,255,255,.35) !important;
  opacity: 1 !important;
}
.lr-booking input:focus,
.lr-booking select:focus,
.lr-booking textarea:focus,
.lr-dashboard input:focus,
.lr-dashboard select:focus {
  border-color: var(--lr-gold) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(201,168,76,.15) !important;
}
.lr-booking select option,
.lr-dashboard select option {
  background: #1a1a1a !important;
  color: #ffffff !important;
}

/* Read-only inputs */
.lr-booking input[readonly],
.lr-dashboard input[readonly] {
  color: rgba(255,255,255,.5) !important;
  cursor: default !important;
}

/* ── Booking Type Buttons (Step 1) ───────────────────────── */
.lr-btype-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 4px;
}
.lr-btype-btn {
  background: var(--lr-surface2);
  border: 1.5px solid rgba(201,168,76,.2);
  color: #c8c0b0 !important;
  padding: 12px 10px;
  border-radius: var(--lr-r);
  font-family: var(--lr-font-b);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  text-align: center;
  line-height: 1.3;
}
.lr-btype-btn:hover {
  background: rgba(201,168,76,.1);
  border-color: var(--lr-gold);
  color: var(--lr-gold) !important;
  transform: translateY(-1px);
}
.lr-btype-btn--active {
  background: rgba(201,168,76,.15) !important;
  border-color: var(--lr-gold) !important;
  color: var(--lr-gold) !important;
  box-shadow: 0 0 0 1px var(--lr-gold);
}
@media (max-width: 500px) {
  .lr-btype-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Buttons — strong contrast on all states ─────────────── */
/* Gold button */
.lr-btn--gold {
  background: linear-gradient(135deg, #C9A84C, #E8C97A) !important;
  color: #000000 !important;
  font-weight: 700 !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(201,168,76,.35) !important;
}
.lr-btn--gold:hover {
  background: linear-gradient(135deg, #E8C97A, #C9A84C) !important;
  color: #000000 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,168,76,.5) !important;
}
.lr-btn--gold:active { transform: translateY(0); }
.lr-btn--gold:disabled {
  background: rgba(201,168,76,.4) !important;
  color: rgba(0,0,0,.5) !important;
  cursor: not-allowed;
  transform: none !important;
}

/* Outline button */
.lr-btn--outline {
  background: transparent !important;
  border: 2px solid var(--lr-gold) !important;
  color: var(--lr-gold) !important;
  font-weight: 600 !important;
}
.lr-btn--outline:hover {
  background: rgba(201,168,76,.15) !important;
  color: var(--lr-gold) !important;
  border-color: var(--lr-gold-light) !important;
}

/* Ghost button */
.lr-btn--ghost {
  background: transparent !important;
  border: 1.5px solid rgba(201,168,76,.3) !important;
  color: #c8c0b0 !important;
  font-weight: 500 !important;
}
.lr-btn--ghost:hover {
  background: rgba(255,255,255,.06) !important;
  border-color: rgba(201,168,76,.6) !important;
  color: #ffffff !important;
}

/* ── Step indicator numbers — always white on dark circle ─── */
.lr-step__circle {
  background: var(--lr-surface3) !important;
  color: #888 !important;
  border: 2px solid rgba(201,168,76,.2) !important;
  font-weight: 700 !important;
}
.lr-step--active .lr-step__circle {
  background: var(--lr-gold) !important;
  color: #000 !important;
  border-color: var(--lr-gold) !important;
}
.lr-step--done .lr-step__circle {
  background: var(--lr-success) !important;
  color: #fff !important;
  border-color: var(--lr-success) !important;
}
.lr-step__label { color: #777 !important; }
.lr-step--active .lr-step__label { color: var(--lr-gold) !important; }
.lr-step--done  .lr-step__label { color: var(--lr-success) !important; }

/* ── Total bar ───────────────────────────────────────────── */
.lr-total-bar {
  background: linear-gradient(135deg, rgba(201,168,76,.08), rgba(201,168,76,.04));
  border: 1px solid rgba(201,168,76,.3);
  color: #c8c0b0 !important;
}
.lr-total-bar strong { color: var(--lr-gold) !important; font-size: 24px !important; }

/* ── Pricing breakdown rows ──────────────────────────────── */
.lr-pricing-box .lr-price-row span:first-child { color: #a09880 !important; }
.lr-pricing-box .lr-price-row span:last-child  { color: #e0d8c8 !important; font-weight: 600; }
.lr-price-row--sub   span { color: #c8c0b0 !important; }
.lr-price-row--sub   span:last-child { color: #ffffff !important; font-weight: 700 !important; }
.lr-price-row--grat  span:first-child { color: #a09880 !important; }
.lr-price-row--grat  span:last-child  { color: var(--lr-gold) !important; font-weight: 700 !important; }
.lr-price-row--total span { color: var(--lr-gold) !important; font-size: 20px !important; font-weight: 800 !important; }
.lr-price-row--discount span { color: var(--lr-success) !important; }

/* Service type badge */
.lr-svc-badge {
  display: inline-block;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--lr-gold) !important;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
}

/* ── Summary box text ────────────────────────────────────── */
.lr-summary-box .lr-summary-row span:first-child { color: #888 !important; }
.lr-summary-box .lr-summary-row span:last-child  { color: #d0c8b8 !important; }

/* ── Auth panels ─────────────────────────────────────────── */
.lr-auth-panel h3 { color: var(--lr-gold) !important; }
.lr-auth-switch   { color: #a09880 !important; }
.lr-auth-switch a { color: var(--lr-gold) !important; }

/* ── Vehicle cards ───────────────────────────────────────── */
.lr-vehicle-card__name    { color: #ffffff !important; }
.lr-vehicle-card__desc    { color: #888 !important; }
.lr-vehicle-card__meta    { color: #a09880 !important; }
.lr-vehicle-card__price   { color: var(--lr-gold) !important; }
.lr-vehicle-card__base    { color: #777 !important; }
.lr-vehicle-card__price small { color: #777 !important; }

/* ── Counter buttons ─────────────────────────────────────── */
.lr-counter__btn { color: #ffffff !important; }
.lr-counter__btn:hover { background: var(--lr-gold) !important; color: #000 !important; }
.lr-counter input { color: #ffffff !important; font-weight: 700 !important; }

/* ── Distance info ───────────────────────────────────────── */
.lr-distance-info { color: #a09880 !important; }

/* ── Form section bodies ─────────────────────────────────── */
.lr-form-section { background: rgba(30,28,26,0.95) !important; border-color: rgba(201,168,76,.15) !important; }
.lr-form-section p { color: #a09880 !important; }

/* ── Promo messages ──────────────────────────────────────── */
.lr-promo-msg--success { color: var(--lr-success) !important; }
.lr-promo-msg--error   { color: var(--lr-danger) !important; }

/* ── Error / success messages ────────────────────────────── */
.lr-error-msg   { color: var(--lr-danger) !important; font-size: 13px; margin-top: 6px; }
.lr-success-msg { color: var(--lr-success) !important; font-size: 13px; margin-top: 6px; }
.lr-link        { color: var(--lr-gold) !important; }
.lr-link:hover  { color: var(--lr-gold-light) !important; }

/* ── Dashboard sidebar nav text ──────────────────────────── */
.lr-dash-nav__item { color: #a09880 !important; }
.lr-dash-nav__item:hover { color: #ffffff !important; }
.lr-dash-nav__item--active { color: var(--lr-gold) !important; }
.lr-dash-nav__item--book   { color: var(--lr-success) !important; }
.lr-dash-nav__item--danger { color: var(--lr-danger) !important; }
.lr-dash-avatar__info strong { color: #ffffff !important; }
.lr-dash-avatar__info span   { color: #777 !important; }

/* ── Dashboard main text ─────────────────────────────────── */
.lr-dash-welcome h2 { color: #ffffff !important; }
.lr-dash-welcome p  { color: #a09880 !important; }
.lr-dash-panel h2   { color: #ffffff !important; }
.lr-dash-panel h3   { color: #888 !important; }
.lr-stat-card__num   { color: var(--lr-gold) !important; }
.lr-stat-card__label { color: #888 !important; }
.lr-stat-card--gold .lr-stat-card__num { color: var(--lr-gold) !important; }

/* Reservation cards */
.lr-res-card__meta    { color: #777 !important; }
.lr-res-card__vehicle { color: #ffffff !important; }
.lr-res-card__route   { color: #a09880 !important; }
.lr-res-card__pax     { color: #777 !important; }
.lr-res-card__total   { color: var(--lr-gold) !important; }

/* Payment cards */
.lr-pay-card__id     { color: #ffffff !important; }
.lr-pay-card__info   { color: #888 !important; }
.lr-pay-card__amount { color: var(--lr-gold) !important; }

/* Filter tabs */
.lr-filter-tab        { color: #a09880 !important; }
.lr-filter-tab--active,
.lr-filter-tab:hover  { color: var(--lr-gold) !important; }

/* Profile avatar */
.lr-profile-avatar-row strong { color: #ffffff !important; }
.lr-profile-avatar-row p      { color: #888 !important; }

/* ── Pricing section text (pricing page) ─────────────────── */
.lr-rate-card__name    { color: #ffffff !important; }
.lr-rate-card__examples { color: #888 !important; }
.lr-rate-card__unit    { color: #888 !important; }
.lr-rate-card__min     { color: #a09880 !important; }
.lr-rate-card__features li { color: #a09880 !important; }

.lr-airport-card__dest   { color: #ffffff !important; }
.lr-airport-card__origin { color: #888 !important; }
.lr-airport-card__price  { color: var(--lr-gold) !important; }
.lr-airport-card__note   { color: #777 !important; }

.lr-pkg-card__name { color: #ffffff !important; }
.lr-pkg-card__desc { color: #888 !important; }
.lr-pkg-card__base { color: #a09880 !important; }
.lr-pkg-card__grat { color: #777 !important; }
.lr-pkg-card__total { color: var(--lr-gold) !important; }
.lr-pkg-card__features li { color: #a09880 !important; }

.lr-info-strip__item strong { color: #ffffff !important; }
.lr-info-strip__item p { color: #888 !important; }

/* Calc */
.lr-calc-result__placeholder { color: #888 !important; }
.lr-calc-result__placeholder p { color: #888 !important; }
.lr-calc-result__breakdown h3 { color: var(--lr-gold) !important; }
.lr-calc-service-label { color: #888 !important; }
.lr-calc-row { color: #a09880 !important; }
.lr-calc-row--total span { color: var(--lr-gold) !important; }
.lr-calc-disclaimer { color: #666 !important; }

.lr-section__title { color: #ffffff !important; }
.lr-section__sub   { color: #a09880 !important; }
.lr-ph__title      { color: #ffffff !important; }
.lr-ph__sub        { color: #a09880 !important; }

/* ── Waiting label text ──────────────────────────────────── */
#lr-waiting-label { color: var(--lr-text2) !important; }
#lr-waiting-section p { color: #888 !important; }

/* ── Checkbox / radio label text ─────────────────────────── */
.lr-checkbox { color: #a09880 !important; }
.lr-radio    { color: #a09880 !important; }

/* ── Sort buttons ────────────────────────────────────────── */
.lr-sort-label { color: #888 !important; }
.lr-sort-btn   { color: #a09880 !important; }
.lr-sort-btn--active,
.lr-sort-btn:hover { color: var(--lr-gold) !important; }

/* ── Hours warning ───────────────────────────────────────── */
#s1-hours-warn { color: var(--lr-gold) !important; }
.lr-calc-note  { color: var(--lr-gold) !important; }

/* ════════════════════════════════════════════════════════
   CRITICAL BUTTON TEXT & CARD SIZE FIXES v2.3
   ════════════════════════════════════════════════════════ */

/* ── Book Now / Hero CTA buttons — black text always ──── */
.lr-ph__ctas .lr-btn--gold,
.lr-ph__ctas .lr-btn--gold:hover,
.lr-ph__ctas .lr-btn--gold:visited,
.lr-ph__ctas .lr-btn--gold * {
  color: #000000 !important;
  text-decoration: none !important;
}
.lr-ph__ctas .lr-btn--outline,
.lr-ph__ctas .lr-btn--outline:hover,
.lr-ph__ctas .lr-btn--outline * {
  color: var(--lr-gold) !important;
}
.lr-ph__ctas .lr-btn--ghost,
.lr-ph__ctas .lr-btn--ghost:hover,
.lr-ph__ctas .lr-btn--ghost * {
  color: #c8c0b0 !important;
}
.lr-ph__ctas .lr-btn--ghost:hover,
.lr-ph__ctas .lr-btn--ghost:hover * {
  color: #ffffff !important;
}

/* ── ALL gold buttons — force black text everywhere ────── */
a.lr-btn--gold,
a.lr-btn--gold:hover,
a.lr-btn--gold:visited,
a.lr-btn--gold:focus,
button.lr-btn--gold,
button.lr-btn--gold:hover,
.lr-btn.lr-btn--gold,
.lr-btn.lr-btn--gold:hover {
  color: #000000 !important;
  text-decoration: none !important;
}

/* ── Reserve Vehicle button — black text ───────────────── */
.lr-rate-card .lr-btn--gold,
.lr-rate-card .lr-btn--gold:hover,
.lr-rate-card a.lr-btn--gold,
.lr-rate-card a.lr-btn--gold:hover {
  color: #000000 !important;
}

/* ── Reserve Vehicle ghost button — visible text ───────── */
.lr-rate-card .lr-btn--ghost,
.lr-rate-card .lr-btn--ghost:hover {
  color: #c8c0b0 !important;
  border-color: rgba(201,168,76,.4) !important;
}
.lr-rate-card .lr-btn--ghost:hover {
  color: #ffffff !important;
  border-color: var(--lr-gold) !important;
}

/* ── Book This Ride button — airport cards ─────────────── */
.lr-airport-card .lr-btn--gold,
.lr-airport-card .lr-btn--gold:hover,
.lr-airport-card a.lr-btn--gold {
  color: #000000 !important;
}

/* ── Reserve Package + Get a Quote — package cards ─────── */
.lr-pkg-card .lr-btn--gold,
.lr-pkg-card .lr-btn--gold:hover {
  color: #000000 !important;
}
.lr-pkg-card .lr-btn--ghost,
.lr-pkg-card .lr-btn--ghost:hover {
  color: #c8c0b0 !important;
}
.lr-pkg-card .lr-btn--ghost:hover {
  color: #ffffff !important;
}

/* ── Vehicle select button in booking wizard ───────────── */
.lr-vehicle-card .lr-btn--gold,
.lr-vehicle-card .lr-btn--gold:hover,
.lr-vehicle-card button.lr-btn--gold {
  color: #000000 !important;
}

/* ── Booking form buttons ──────────────────────────────── */
#lr-pay-btn,
#s1-next,
#lr-calc-btn,
#lr-do-login,
#lr-do-register,
#lr-guest-continue {
  color: #000000 !important;
}
#lr-pay-btn:hover,
#s1-next:hover,
#lr-calc-btn:hover {
  color: #000000 !important;
}

/* ── Vehicle card titles — fix size overflow ───────────── */
.lr-rate-card__name {
  font-family: var(--lr-font-d) !important;
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  margin-bottom: 8px !important;
  color: #ffffff !important;
  word-break: break-word !important;
}

/* ── Package card names — fix huge overflow text ───────── */
.lr-pkg-card__name {
  font-family: var(--lr-font-d) !important;
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  margin-bottom: 8px !important;
  color: #ffffff !important;
  word-break: break-word !important;
  hyphens: auto !important;
}

/* ── Rate card — tighter sizing so nothing overflows ───── */
.lr-rate-card {
  padding: 22px !important;
}
.lr-rate-card__from,
.lr-rate-card__to {
  font-size: 1.7rem !important;
}

/* ── Package card — consistent sizing ──────────────────── */
.lr-pkg-card {
  padding: 22px !important;
}
.lr-pkg-card__total {
  font-size: 1.7rem !important;
}

/* ── Airport card — Book This Ride visible text ─────────── */
.lr-airport-card {
  display: flex !important;
  flex-direction: column !important;
}
.lr-airport-card .lr-btn--gold {
  margin-top: auto !important;
  color: #000000 !important;
  font-weight: 700 !important;
}

/* ── Outline + Ghost button text on dark bg ─────────────── */
.lr-btn--outline { color: var(--lr-gold) !important; }
.lr-btn--ghost   { color: #b0a890 !important; }

/* ── "Continue to Vehicle Selection" button ─────────────── */
#s1-next { color: #000000 !important; font-weight: 700 !important; }
#s2-back,
#s3-back { color: #b0a890 !important; }

/* ── Dashboard Book New Ride button ─────────────────────── */
.lr-dash-nav__item--book {
  color: var(--lr-success) !important;
  font-weight: 600 !important;
}

/* ── Promo apply button ──────────────────────────────────── */
#lr-apply-promo { color: var(--lr-gold) !important; }
#lr-apply-promo:hover { color: #000000 !important; background: var(--lr-gold) !important; }

/* ── Auth buttons ────────────────────────────────────────── */
#lr-do-login,
#lr-do-register { color: #000000 !important; }
#lr-guest-continue { color: var(--lr-gold) !important; }
#lr-guest-continue:hover { color: #000000 !important; background: rgba(201,168,76,.9) !important; }

/* ── Corporate package special card ────────────────────── */
.lr-pkg-card--corporate {
  border-color: rgba(201,168,76,.4) !important;
  background: linear-gradient(135deg, rgba(201,168,76,.06), rgba(20,18,14,.95)) !important;
}
.lr-pkg-card__corporate-msg {
  text-align: center;
  padding: 20px 12px;
  margin-bottom: 16px;
  background: rgba(201,168,76,.07);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--lr-r);
  flex: 1;
}
.lr-pkg-card__corporate-icon {
  font-size: 32px;
  margin-bottom: 10px;
}
.lr-pkg-card__corporate-msg p {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--lr-gold) !important;
  margin: 0 0 6px !important;
  line-height: 1.4;
}
.lr-pkg-card__corporate-sub {
  font-size: 12px !important;
  color: #a09880 !important;
  font-weight: 400 !important;
}

/* ── Gratuity note on vehicle cards ─────────────────────── */
.lr-rate-card__grat-note {
  font-size: 11px !important;
  color: rgba(201,168,76,.7) !important;
  font-style: italic;
  margin-top: 4px;
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 6px;
  list-style: none !important;
}

/* ── Rate card price — no sep needed for single price ─── */
.lr-rate-card__sep { display: none; }
.lr-rate-card__to  { display: none; }

/* ════════════════════════════════════════════════════════
   NEW UI ELEMENTS v2.3
   ════════════════════════════════════════════════════════ */

/* ── 3-Tab Booking Type Selector ────────────────────────── */
.lr-btype-tabs {
  display: flex;
  gap: 8px;
  background: var(--lr-surface2);
  border: 1px solid var(--lr-border);
  border-radius: 12px;
  padding: 5px;
  width: 100%;
}
.lr-btype-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 8px;
  background: transparent;
  border: 1.5px solid transparent;
  border-radius: 9px;
  color: #a09880 !important;
  font-family: var(--lr-font-b);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  line-height: 1.2;
}
.lr-btype-tab:hover {
  background: rgba(201,168,76,.08);
  border-color: rgba(201,168,76,.3);
  color: var(--lr-gold) !important;
}
.lr-btype-tab--active {
  background: rgba(201,168,76,.15) !important;
  border-color: var(--lr-gold) !important;
  color: var(--lr-gold) !important;
  box-shadow: 0 2px 8px rgba(201,168,76,.2);
}
.lr-btype-tab__icon {
  font-size: 22px;
  line-height: 1;
}

/* ── Pre-selected vehicle banner ────────────────────────── */
.lr-preselected-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, rgba(201,168,76,.12), rgba(201,168,76,.06));
  border: 1.5px solid rgba(201,168,76,.4);
  border-radius: var(--lr-r-lg);
  padding: 14px 18px;
  margin-bottom: 20px;
  animation: lrFadeUp .3s ease;
}
.lr-preselected-banner__icon {
  font-size: 28px;
  flex-shrink: 0;
}
.lr-preselected-banner__info {
  flex: 1;
}
.lr-preselected-banner__info strong {
  display: block;
  font-size: 15px;
  color: var(--lr-text) !important;
  margin-bottom: 2px;
}
.lr-preselected-banner__info span {
  font-size: 13px;
  color: var(--lr-gold) !important;
}

/* ── Step 1 price preview (right side when vehicle preset) ── */
.lr-s1-price-preview {
  background: var(--lr-surface);
  border: 1px solid var(--lr-border);
  border-radius: var(--lr-r-lg);
  padding: 20px;
  text-align: center;
}
.lr-s1-price-preview__title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--lr-text3);
  margin-bottom: 8px;
}
.lr-s1-price-preview__amount {
  font-family: var(--lr-font-d);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--lr-gold) !important;
  margin-bottom: 6px;
}
.lr-s1-price-preview__note {
  font-size: 11px;
  color: var(--lr-text3);
  font-style: italic;
}

/* ── Package sub-select field ───────────────────────────── */
#s1-package-field label {
  color: var(--lr-gold) !important;
}
#s1-package-select {
  background: var(--lr-surface2) !important;
  color: var(--lr-text) !important;
  border: 1px solid var(--lr-border) !important;
  border-radius: var(--lr-r) !important;
  padding: 11px 14px !important;
  font-size: 14px !important;
  width: 100%;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='%23C9A84C' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  cursor: pointer;
}
#s1-package-select option {
  background: var(--lr-surface2);
  color: var(--lr-text);
}
#s1-package-select:focus {
  border-color: var(--lr-gold) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(201,168,76,.12) !important;
}

/* ── Step 2 dot faded when skipped ─────────────────────── */
#lr-step-dot-2 {
  transition: opacity .3s;
}

/* ── Booking type changed — hide old grid buttons ────────── */
.lr-btype-btn,
.lr-btype-grid {
  display: none !important; /* replaced by lr-btype-tabs */
}

/* ── "Continue to Checkout" button label update ─────────── */
#s1-next {
  min-width: 240px;
}

/* ── Validation error box ────────────────────────────────── */
#s1-validation-error {
  background: rgba(224,82,82,.1);
  border: 1px solid rgba(224,82,82,.3);
  border-radius: var(--lr-r);
  padding: 12px 16px;
  color: #e05252 !important;
  font-size: 13px;
  line-height: 1.6;
}
#s1-validation-error strong {
  color: #e05252 !important;
}

/* ── Fix package field visibility ───────────────────────── */
/* PHP sets display:none inline — JS slideDown/slideUp controls it */
#s1-package-field {
  /* Do NOT set display:none here — let PHP inline style + JS control it */
  margin-bottom: 14px;
}
#s1-package-field label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--lr-gold) !important;
  font-weight: 600;
  margin-bottom: 8px;
}
#s1-package-field select {
  width: 100%;
  background: var(--lr-surface2) !important;
  color: #ffffff !important;
  border: 1px solid rgba(201,168,76,.3) !important;
  border-radius: var(--lr-r) !important;
  padding: 12px 14px !important;
  font-size: 14px !important;
  font-family: var(--lr-font-b) !important;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='%23C9A84C' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-color: var(--lr-surface2) !important;
}
#s1-package-field select:focus {
  border-color: var(--lr-gold) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(201,168,76,.12) !important;
}
#s1-package-field select option {
  background: #1a1a1a !important;
  color: #ffffff !important;
}

/* ── btype-tab pill shape matching calculator ───────────── */
.lr-btype-tabs {
  background: rgba(20,18,14,.8) !important;
  border-color: rgba(201,168,76,.2) !important;
}
.lr-btype-tab {
  border-radius: 100px !important;  /* pill shape like calculator */
}

/* ── Hours field also has no forced display — JS controls it ── */
#s1-hours-field {
  /* display controlled by JS */
}
