/* HWS Rentals – Frontend (Gutscheinshop Style, light + rounded) */
:root{
  --hwsr-bg: #f3f3f5;
  --hwsr-card: #ffffff;
  --hwsr-text: #0b0f19;
  --hwsr-muted: #667085;
  --hwsr-border: #e6e6ea;
  --hwsr-primary: #0b0f19;
  --hwsr-primary-hover: #141a2a;
  --hwsr-accent: #d4af37; /* subtle gold accent */
  --hwsr-radius: 22px;
  --hwsr-radius-sm: 14px;
  --hwsr-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.hwsr-wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px 16px 50px;
  color: var(--hwsr-text);
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.hwsr-hero{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  padding: 18px 18px;
  border: 1px solid var(--hwsr-border);
  border-radius: var(--hwsr-radius);
  background: linear-gradient(180deg, #fff 0%, #fbfbfd 100%);
  box-shadow: var(--hwsr-shadow);
  margin-bottom: 18px;
}
.hwsr-kicker{ font-size:12px; color: var(--hwsr-muted); letter-spacing:.06em; text-transform:uppercase; }
.hwsr-title{ font-size: 26px; margin: 6px 0 6px; line-height:1.1; }
.hwsr-subtitle{ margin:0; color: var(--hwsr-muted); font-size:14px; }
.hwsr-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--hwsr-border);
  background: rgba(212,175,55,.08);
  color: var(--hwsr-text);
  font-size: 12px;
  white-space:nowrap;
}
.hwsr-badge::before{
  content:"";
  width:8px;height:8px;border-radius:50%;
  background: var(--hwsr-accent);
  box-shadow: 0 0 0 3px rgba(212,175,55,.16);
}

.hwsr-card{
  background: var(--hwsr-card);
  border: 1px solid var(--hwsr-border);
  border-radius: var(--hwsr-radius);
  box-shadow: var(--hwsr-shadow);
}

.hwsr-grid{ display:grid; gap:14px; }
.hwsr-grid.cols-3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hwsr-grid.cols-2{ grid-template-columns: repeat(2, minmax(0, 1fr)); }

@media (max-width: 980px){
  .hwsr-grid.cols-3{ grid-template-columns: 1fr; }
  .hwsr-grid.cols-2{ grid-template-columns: 1fr; }
}

.hwsr-vehicle-card{
  padding: 16px;
  overflow:hidden;
}
.hwsr-vehicle-top{
  display:flex;
  gap:14px;
  align-items:stretch;
}
.hwsr-vehicle-img{
  width: 170px;
  min-width: 170px;
  height: 110px;
  border-radius: 18px;
  border: 1px solid var(--hwsr-border);
  background: radial-gradient(120px 90px at 30% 30%, rgba(212,175,55,.22), rgba(0,0,0,0)), #f6f6f8;
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--hwsr-muted);
  font-size: 12px;
}
.hwsr-vehicle-meta h3{ margin:0 0 4px; font-size:18px; }
.hwsr-vehicle-meta p{ margin:0; color: var(--hwsr-muted); font-size:13px; }
.hwsr-specs{
  margin-top: 12px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
}
@media (max-width: 600px){
  .hwsr-vehicle-top{ flex-direction:column; }
  .hwsr-vehicle-img{ width:100%; min-width:0; height:160px; }
  .hwsr-specs{ grid-template-columns: 1fr; }
}
.hwsr-spec{
  border: 1px solid var(--hwsr-border);
  border-radius: 16px;
  padding: 10px 12px;
  background: #fbfbfd;
}
.hwsr-spec span{ display:block; font-size:12px; color: var(--hwsr-muted); }
.hwsr-spec strong{ display:block; font-size:14px; margin-top:2px; }

.hwsr-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 14px;
}
.hwsr-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid var(--hwsr-border);
  text-decoration:none;
  font-weight: 700;
  font-size: 14px;
  cursor:pointer;
  transition: transform .08s ease, background .15s ease, border-color .15s ease;
  user-select:none;
}
.hwsr-btn:active{ transform: translateY(1px); }

.hwsr-btn-primary{
  background: var(--hwsr-primary);
  border-color: var(--hwsr-primary);
  color:#fff;
}
.hwsr-btn-primary:hover{ background: var(--hwsr-primary-hover); border-color: var(--hwsr-primary-hover); }

.hwsr-btn-ghost{
  background: #fff;
  color: var(--hwsr-text);
}
.hwsr-btn-ghost:hover{ background: #f7f7fa; border-color:#d9d9df; }

/* Forms */
.hwsr-form{ padding: 18px; }
.hwsr-field label{ display:block; font-size: 12px; color: var(--hwsr-muted); margin: 0 0 6px; }
.hwsr-field input, .hwsr-field select, .hwsr-field textarea{
  width:100%;
  border-radius: 16px;
  border: 1px solid var(--hwsr-border);
  padding: 12px 14px;
  font-size: 14px;
  background: #fff;
  outline:none;
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
}
.hwsr-field input:focus, .hwsr-field select:focus, .hwsr-field textarea:focus{
  border-color: rgba(212,175,55,.55);
  box-shadow: 0 0 0 3px rgba(212,175,55,.18);
}

.hwsr-hint{ font-size: 12px; color: var(--hwsr-muted); margin-top: 6px; }
.hwsr-divider{ height:1px; background: var(--hwsr-border); margin: 16px 0; }

/* Calendar */
.hwsr-calendar-wrap{ padding: 18px; }
.hwsr-calendar-header{
  display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom: 12px;
}
.hwsr-calendar-header h3{ margin:0; font-size: 18px; }
.hwsr-cal-grid{
  display:grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}
.hwsr-cal-dow{
  font-size:12px; color: var(--hwsr-muted);
  text-align:center;
  padding: 6px 0;
}
.hwsr-cal-day{
  border: 1px solid var(--hwsr-border);
  border-radius: 14px;
  background: #fff;
  min-height: 70px;
  padding: 10px;
  position:relative;
  cursor:pointer;
  transition: background .15s ease, border-color .15s ease, transform .08s ease;
}
.hwsr-cal-day:hover{ background:#fafafe; border-color:#dadade; }
.hwsr-cal-day:active{ transform: translateY(1px); }
.hwsr-cal-day .num{ font-weight:800; font-size: 13px; }
.hwsr-cal-day .tag{ position:absolute; left:10px; bottom:8px; font-size: 11px; color: var(--hwsr-muted); }

.hwsr-cal-day.is-disabled{
  background:#f4f4f6;
  color:#98a2b3;
  cursor:not-allowed;
  border-color:#e7e7ec;
}
.hwsr-cal-day.is-booked{
  background: rgba(239,68,68,.10);
  border-color: rgba(239,68,68,.35);
}
.hwsr-cal-day.is-selected{
  background: rgba(212,175,55,.14);
  border-color: rgba(212,175,55,.55);
}

.hwsr-summary{
  margin-top: 14px;
  padding: 14px;
  border: 1px dashed rgba(212,175,55,.7);
  border-radius: 18px;
  background: rgba(212,175,55,.06);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.hwsr-summary strong{ font-size: 14px; }
.hwsr-summary span{ color: var(--hwsr-muted); font-size: 13px; }

/* Alerts / result */
.hwsr-alert{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(239,68,68,.35);
  background: rgba(239,68,68,.10);
  color: #991b1b;
}
.hwsr-result{ margin-top: 14px; }

/* Small helper text */
.hwsr-muted{ color: var(--hwsr-muted); font-size: 13px; }


.hwsr-steps{display:flex;gap:10px;flex-wrap:wrap;margin:14px 0 18px;}
.hwsr-step{padding:10px 12px;border-radius:999px;border:1px solid var(--hwsr-border);background:#fff;color:var(--hwsr-muted);font-weight:700;font-size:13px;}
.hwsr-step.is-active{color:var(--hwsr-text);border-color:rgba(212,175,55,.55);background:rgba(212,175,55,.08);}
.hwsr-flow-head{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:18px 18px 0;}
.hwsr-link{color:var(--hwsr-muted);text-decoration:none;font-weight:700;}
.hwsr-link:hover{color:var(--hwsr-text);}
.hwsr-calendar{padding:18px;}
.hwsr-calendar-footer{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:0 18px 18px;flex-wrap:wrap;}
.hwsr-checkbox{display:flex;align-items:center;gap:10px;border:1px solid var(--hwsr-border);border-radius:16px;padding:12px 14px;background:#fff;}
.hwsr-checkbox input{width:18px;height:18px;}
.hwsr-radio-row{display:flex;gap:10px;flex-wrap:wrap;}
.hwsr-radio{display:flex;align-items:center;gap:10px;border:1px solid var(--hwsr-border);border-radius:16px;padding:12px 14px;background:#fff;cursor:pointer;}
.hwsr-radio input{width:18px;height:18px;}
.hwsr-dot{display:inline-block;width:8px;height:8px;border-radius:50%;background:var(--hwsr-accent);box-shadow:0 0 0 3px rgba(212,175,55,.16);}
.hwsr-actions__note{display:flex;align-items:center;gap:10px;color:var(--hwsr-muted);font-size:13px;}


/* =========================================================
   AUTH MODAL (Login/Register required before booking)
   ========================================================= */
.hwsr-modal{ position:fixed; inset:0; z-index:99999; }
.hwsr-modal-backdrop{ position:absolute; inset:0; background:rgba(0,0,0,.62); backdrop-filter: blur(2px); }
.hwsr-modal-dialog{
  position:relative;
  width:min(520px, calc(100% - 32px));
  margin:8vh auto 0;
  background:#ffffff;
  border-radius:22px;
  box-shadow:0 20px 60px rgba(0,0,0,.35);
  padding:18px 18px 16px;
  font-family:'Montserrat', sans-serif;
}
.hwsr-modal-close{
  position:absolute; right:12px; top:10px;
  width:38px; height:38px;
  border-radius:14px;
  border:1px solid #e5e7eb;
  background:#fff;
  cursor:pointer;
  font-size:22px;
  line-height:36px;
}
.hwsr-modal-title{ margin:4px 0 4px; font-size:18px; font-weight:700; color:#0b0b0e; }
.hwsr-modal-sub{ margin:0 0 12px; color:#475569; font-size:13px; }
.hwsr-tabs{ display:flex; gap:10px; margin:12px 0 14px; }
.hwsr-tab-btn{
  flex:1;
  border:1px solid #e5e7eb;
  background:#f8fafc;
  padding:10px 12px;
  border-radius:16px;
  cursor:pointer;
  font-weight:700;
}
.hwsr-tab-btn.is-active{ border-color:#C4001A; background:rgba(196,0,26,.08); color:#C4001A; }
.hwsr-auth-box{ border:1px solid #eef2f7; background:#ffffff; border-radius:18px; padding:14px; }
.hwsr-auth-box label{ display:block; font-size:12px; color:#334155; margin:8px 0 6px; font-weight:700; }
.hwsr-auth-box input[type="text"],
.hwsr-auth-box input[type="email"],
.hwsr-auth-box input[type="password"]{
  width:100%;
  border:1px solid #e5e7eb;
  border-radius:14px;
  padding:10px 12px;
  outline:none;
  font-size:14px;
}
.hwsr-auth-box input:focus{ border-color:#C4001A; box-shadow:0 0 0 3px rgba(196,0,26,.12); }
.hwsr-auth-error{ margin:10px 0; padding:10px 12px; border-radius:14px; background:rgba(196,0,26,.08); border:1px solid rgba(196,0,26,.25); color:#7f0010; font-size:13px; }
.hwsr-auth-note{ margin:10px 0 0; color:#64748b; font-size:12px; }


/* =========================================================
   THANK YOU / STATUS PAGE (like Gutschein-Shop tiles + progress)
   ========================================================= */
.hwsr2-back{ margin: 0 0 12px 0; }
.hwsr2-back a{ color:#2563eb; text-decoration:none; font-weight:800; }
.hwsr2-back a:hover{ text-decoration:underline; }

.hwsr2-progress-top{ margin: 0 0 12px 0; }
.hwsr2-progressbar{
  position:relative;
  background:#ffffff;
  border:1px solid var(--hwsr-border);
  border-radius: 18px;
  padding: 16px 16px 14px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}
.hwsr2-progressrail{ position:relative; height:6px; border-radius:999px; background:#e5e7eb; overflow:hidden; margin: 0 8px 10px; }
.hwsr2-progressfill{ height:100%; width:0; border-radius:999px; background: linear-gradient(90deg, #22c55e 0%, #0ea5e9 100%);   transition: width .7s ease;
}
.hwsr2-progressbar{ display:flex; align-items:flex-start; justify-content:space-between; gap: 0; }
.hwsr2-progressbar .hwsr2-progressrail{ position:absolute; left:10px; right:10px; top:30px; margin:0; }
.hwsr2-progressnode{ position:relative; flex: 1 1 0; min-width: 140px; text-align:center; padding-top: 18px; }
.hwsr2-progressdot{ width: 12px; height: 12px; border-radius: 50%; background:#cbd5e1; margin: 0 auto 8px; box-shadow: 0 0 0 4px rgba(148,163,184,.25); position:relative; transform: translateY(-6px); }
.hwsr2-progresslabel{ font-size: 12px; font-weight: 800; color:#64748b; }
.hwsr2-progressnode.is-done .hwsr2-progressdot{ background:#22c55e; box-shadow:0 0 0 4px rgba(34,197,94,.20); }
.hwsr2-progressnode.is-current .hwsr2-progressdot{ background:#0ea5e9; box-shadow:0 0 0 4px rgba(14,165,233,.20); }
.hwsr2-progressnode.is-done .hwsr2-progresslabel,
.hwsr2-progressnode.is-current .hwsr2-progresslabel{ color:#0b0f19; }

/* Enforce horizontal desktop progress layout (defensive overrides) */
.hwsr2-progressbar{
  flex-direction: row !important;
  flex-wrap: nowrap !important;
}
.hwsr2-progressnode{
  min-width: 0 !important; /* prevents unwanted wrapping */
}
.hwsr2-progresslabel{
  line-height: 1.15;
  max-width: 160px;
  margin: 0 auto;
}

.hwsr2-mobile-only{ display:none; }
.hwsr2-desktop-only{ display:block; }
@media (max-width: 900px){
  .hwsr2-progressbar{ display:none !important; }
  .hwsr2-mobile-only{ display:block; }
  .hwsr2-desktop-only{ display:none; }
}
.hwsr2-progress-mobile-inner{
  background:#ffffff;
  border:1px solid var(--hwsr-border);
  border-radius:18px;
  padding:14px 16px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}
.hwsr2-progress-mobile-kicker{ font-size: 12px; letter-spacing:.06em; text-transform: uppercase; color:#64748b; font-weight:800; }
.hwsr2-progress-mobile-title{ font-size: 15px; font-weight: 900; margin-top: 4px; }

.hwsr2-thanks{
  margin-top: 12px;
  border:1px solid #c7d2fe;
  background: rgba(59,130,246,.06);
  border-radius: 18px;
  padding: 16px;
  display:flex;
  gap: 12px;
  align-items:flex-start;
}
.hwsr2-thanks-icon{
  width: 44px; height: 44px;
  border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  color:#1d4ed8;
  background:#ffffff;
  border:1px solid #c7d2fe;
  flex: 0 0 auto;
}
.hwsr2-thanks-title{ font-weight: 900; font-size: 16px; margin: 0 0 4px; }
.hwsr2-thanks-sub{ color:#475569; font-size: 13px; }

.hwsr2-tiles{ margin-top: 14px; display:grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 900px){ .hwsr2-tiles{ grid-template-columns: 1fr; } }

.hwsr2-tile{
  background:#ffffff;
  border:1px solid var(--hwsr-border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}
.hwsr2-tile-head{ display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom: 10px; }
.hwsr2-h3{ margin:0; font-size: 15px; font-weight: 900; }
.hwsr2-pill{ display:inline-flex; align-items:center; gap:8px; padding: 8px 12px; border-radius: 999px; border:1px solid var(--hwsr-border); font-size: 12px; font-weight: 900; }
.hwsr2-pill.is-pending{ background: rgba(245,158,11,.10); border-color: rgba(245,158,11,.30); color:#92400e; }
.hwsr2-pill.is-paid{ background: rgba(34,197,94,.10); border-color: rgba(34,197,94,.30); color:#166534; }
.hwsr2-pill.is-completed{ background: rgba(59,130,246,.10); border-color: rgba(59,130,246,.28); color:#1d4ed8; }
.hwsr2-pill.is-cancelled{ background: rgba(239,68,68,.10); border-color: rgba(239,68,68,.30); color:#991b1b; }

.hwsr2-kv{ display:grid; grid-template-columns: 1fr 1fr; gap: 10px 14px; }
.hwsr2-kv div{ padding: 10px 12px; border-radius: 14px; border: 1px solid #eef2f7; background:#fbfbfd; }
.hwsr2-kv span{ display:block; font-size: 12px; color:#64748b; font-weight: 800; }
.hwsr2-kv strong{ display:block; margin-top: 4px; font-weight: 900; color:#0b0f19; }
@media (max-width: 520px){ .hwsr2-kv{ grid-template-columns: 1fr; } }

.hwsr2-paygrid{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 10px; }
@media (max-width: 900px){ .hwsr2-paygrid{ grid-template-columns: 1fr; } }
.hwsr2-paybox{ border:1px dashed #cbd5e1; border-radius: 16px; padding: 12px 14px; background: #ffffff; }
.hwsr2-paybox-k{ font-size: 12px; color:#64748b; font-weight: 900; letter-spacing:.02em; }
.hwsr2-paybox-v{ font-size: 15px; font-weight: 900; margin-top: 4px; }
.hwsr2-paybox-line{ margin-top: 8px; font-size: 13px; color:#0b0f19; }
.hwsr2-paybox-line span{ color:#64748b; font-weight: 800; }

/* =========================================================
   Payment popup flow (lux)
   ========================================================= */
.hwsr-paymethods{ display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px; margin-top:10px; }
@media (max-width: 840px){ .hwsr-paymethods{ grid-template-columns:1fr; } }

.hwsr-methodcard{ appearance:none; -webkit-appearance:none; border:1px solid #e5e7eb; background:#fff; border-radius:16px; padding:14px 14px; display:flex; align-items:center; gap:12px; cursor:pointer; text-align:left; transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease; }
.hwsr-methodcard:hover{ box-shadow:0 10px 30px rgba(17,24,39,.08); transform: translateY(-1px); }
.hwsr-methodcard.is-selected{ border-color:#eab308; box-shadow:0 0 0 3px rgba(234,179,8,.18), 0 10px 30px rgba(17,24,39,.08); }
.hwsr-methodcard__icon{ width:44px; height:44px; border-radius:14px; display:flex; align-items:center; justify-content:center; background:#f9fafb; border:1px solid #eef2f7; flex:0 0 auto; }
.hwsr-methodcard__title{ font-size:15px; font-weight:900; color:#0b0f19; }
.hwsr-methodcard__sub{ font-size:12px; color:#64748b; font-weight:800; margin-top:2px; }
.hwsr-methodcard__right{ margin-left:auto; display:flex; flex-direction:column; align-items:flex-end; gap:6px; }
.hwsr-pill{ display:inline-flex; align-items:center; gap:6px; padding:6px 10px; border-radius:999px; font-size:12px; font-weight:900; border:1px solid #e5e7eb; background:#f9fafb; color:#111827; }
.hwsr-pill--gold{ border-color: rgba(234,179,8,.55); background: rgba(234,179,8,.08); color:#8a6a00; }
.hwsr-paymeta{ margin-top:12px; font-size:13px; color:#0b0f19; }
.hwsr-paymeta span{ color:#64748b; font-weight:800; }

.hwsr-paymodal{ position:fixed; inset:0; background:rgba(0,0,0,.42); display:none; align-items:center; justify-content:center; z-index:9999; padding:18px; }
.hwsr-paymodal.is-open{ display:flex; }
.hwsr-paymodal__panel{ background:#fff; width:100%; max-width:560px; border-radius:20px; border:1px solid #e5e7eb; box-shadow:0 30px 80px rgba(0,0,0,.25); overflow:hidden; }
.hwsr-paymodal__head{ padding:16px 18px; display:flex; align-items:flex-start; justify-content:space-between; gap:12px; border-bottom:1px solid #eef2f7; }
.hwsr-paymodal__title{ font-size:16px; font-weight:1000; margin:0; }
.hwsr-paymodal__desc{ font-size:13px; color:#64748b; font-weight:700; margin:6px 0 0 0; }
.hwsr-paymodal__close{ border:0; background:transparent; font-size:26px; line-height:1; padding:2px 6px; cursor:pointer; color:#111827; opacity:.7; }
.hwsr-paymodal__close:hover{ opacity:1; }
.hwsr-paymodal__body{ padding:16px 18px 18px 18px; }
.hwsr-planrow{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
@media (max-width: 640px){ .hwsr-planrow{ grid-template-columns:1fr; } }
.hwsr-planbtn{ border:1px solid #e5e7eb; background:#fff; border-radius:16px; padding:14px 14px; cursor:pointer; text-align:left; transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease; }
.hwsr-planbtn:hover{ box-shadow:0 10px 30px rgba(17,24,39,.08); transform: translateY(-1px); }
.hwsr-planbtn.is-selected{ border-color:#eab308; box-shadow:0 0 0 3px rgba(234,179,8,.18), 0 10px 30px rgba(17,24,39,.08); }
.hwsr-planbtn__k{ font-size:12px; color:#64748b; font-weight:900; letter-spacing:.02em; }
.hwsr-planbtn__v{ margin-top:6px; font-size:16px; font-weight:1000; color:#0b0f19; }
.hwsr-planbtn__h{ margin-top:6px; font-size:12px; color:#64748b; font-weight:800; }

.hwsr2-note{ margin-top: 10px; color:#64748b; font-size: 13px; }
.hwsr2-actions{ margin-top: 14px; display:flex; justify-content:flex-end; }



/* Ensure progress + thanks span full width above tiles */
.hwsr2-topstack{ width:100%; display:block; }
.hwsr2-progress-top{ width:100%; grid-column: 1 / -1; }
.hwsr2-progressbar{ width:100%; }
.hwsr2-thanks{ grid-column: 1 / -1; }
\n/* FIX2 cache-bust */


/* Progress bar placed between hero and checkout card */
.hwsr2-progress-gap{ margin: 18px 0 18px; padding: 18px 22px; background:#ffffff; border: 1px solid rgba(15,23,42,.10); border-radius: 22px; box-shadow: 0 10px 26px rgba(0,0,0,.05); }


/* HWSR options list (VikRentCar-like) */
.hwsr-options{ margin-top: 18px; display:flex; flex-direction:column; gap:16px; }
.hwsr-opt{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:18px;
  padding:16px 18px;
  display:grid;
  grid-template-columns: 1fr 110px 140px;
  gap:14px;
  align-items:center;
  box-shadow:0 10px 24px rgba(0,0,0,.05);
}
.hwsr-opt.is-active{ border-color: rgba(0,200,120,.35); box-shadow:0 10px 24px rgba(0,200,120,.10); }
.hwsr-opt-title{ font-weight:800; font-size:15px; }
.hwsr-opt-desc{ margin-top:6px; color:#475569; font-size:13px; line-height:1.45; }
.hwsr-opt-price{ text-align:right; font-weight:800; white-space:nowrap; }
.hwsr-opt-action{ display:flex; justify-content:flex-end; }
.hwsr-qty{
  width:110px;
  border:1px solid rgba(0,0,0,.16);
  border-radius:12px;
  padding:10px 12px;
  font-weight:700;
  text-align:left;
}
.hwsr-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  min-width:90px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.12);
  font-weight:800;
  background:#f8fafc;
}
.hwsr-rank{ color:#16a34a; font-weight:800; }
.hwsr-toggle{ display:inline-flex; align-items:center; }
.hwsr-toggle input{ position:absolute; opacity:0; pointer-events:none; }
.hwsr-switch{
  width:54px; height:32px;
  border-radius:999px;
  background:#e5e7eb;
  position:relative;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
}
.hwsr-switch:after{
  content:'';
  width:26px; height:26px;
  border-radius:999px;
  background:#fff;
  position:absolute;
  top:3px; left:3px;
  box-shadow:0 6px 14px rgba(0,0,0,.14);
  transition: transform .18s ease, background .18s ease;
}
.hwsr-toggle input:checked + .hwsr-switch{
  background: linear-gradient(90deg, #16a34a, #22c55e);
}
.hwsr-toggle input:checked + .hwsr-switch:after{
  transform: translateX(22px);
}

@media (max-width: 860px){
  .hwsr-opt{ grid-template-columns: 1fr; }
  .hwsr-opt-price{ text-align:left; }
  .hwsr-opt-action{ justify-content:flex-start; }
  .hwsr-qty{ width:100%; max-width: 180px; }
  .hwsr-pill{ width:100%; max-width:180px; justify-content:center; }
}


/* Zusatzfahrer count selector */
.hwsr-count{ display:flex; align-items:center; gap:8px; flex-wrap:wrap; justify-content:flex-end; }
.hwsr-count-btn{
  border:1px solid rgba(0,0,0,.14);
  background:#fff;
  border-radius:12px;
  padding:10px 12px;
  font-weight:800;
  min-width:40px;
  cursor:pointer;
}
.hwsr-count-btn.is-active{
  border-color: rgba(0,0,0,.35);
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
  background:#f1f5ff;
}
@media (max-width: 860px){
  .hwsr-count{ justify-content:flex-start; }
}


/* Extras sticky bar */
.hwsr-extras-bar{
  position: sticky;
  bottom: 14px;
  margin-top: 18px;
  z-index: 5;
}
.hwsr-extras-bar-inner{
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}
.hwsr-extras-meta{
  flex:1;
  color: rgba(0,0,0,.62);
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 860px){
  .hwsr-extras-bar-inner{
    flex-direction: column;
    align-items: stretch;
  }
  .hwsr-extras-meta{ white-space: normal; }
}


/* Additional drivers form (extras step) */
.hwsr-driver-details .hwsr-driver-box{
  border:1px solid rgba(0,0,0,.10);
  border-radius:14px;
  padding:14px;
  margin-top:12px;
  background:#fff;
}
.hwsr-driver-details .hwsr-driver-title{
  font-weight:800;
  margin-bottom:10px;
}
.hwsr-driver-details .hwsr-driver-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px 14px;
}
.hwsr-driver-details label{
  display:flex;
  flex-direction:column;
  gap:6px;
  font-weight:700;
  font-size:13px;
  color: rgba(0,0,0,.72);
}
.hwsr-driver-details input[type="text"],
.hwsr-driver-details input[type="date"],
.hwsr-driver-details input[type="file"]{
  width:100%;
  padding:11px 12px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.14);
  background:#fff;
  font-weight:600;
}
@media (max-width: 860px){
  .hwsr-driver-details .hwsr-driver-grid{ grid-template-columns: 1fr; }
}


/* === Luxury payplan modal (v2) === */
.hwsr-modal{position:fixed;inset:0;z-index:99999;display:flex;align-items:flex-start;justify-content:center;padding:7vh 16px 16px;}
.hwsr-modal[aria-hidden="true"]{display:none;}
.hwsr-modal__overlay{position:absolute;inset:0;background:rgba(0,0,0,.48);backdrop-filter:blur(1px);}
.hwsr-modal__panel{
  position:relative;z-index:1;
  width:min(560px, calc(100% - 32px));
  background:#fff;border-radius:22px;
  box-shadow:0 20px 60px rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.35);
  padding:18px 18px 16px;
  font-family:'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.hwsr-modal__head{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:10px;}
.hwsr-modal__title{font-size:18px;font-weight:800;letter-spacing:.2px;color:#0f172a;}
.hwsr-modal__close{
  width:38px;height:38px;border-radius:14px;
  border:1px solid #e5e7eb;background:#fff;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  font-size:20px;line-height:1;color:#0f172a;
}
.hwsr-modal__close:hover{background:#f8fafc;}
.hwsr-modal__body{padding-top:2px;}
.hwsr-planlist{display:grid;gap:12px;margin-top:8px;}
.hwsr-plancard{
  width:100%;
  border:1px solid #e5e7eb;border-radius:18px;
  background:#fff;
  padding:14px 14px 12px;
  text-align:left;cursor:pointer;
  transition:transform .08s ease, box-shadow .12s ease, border-color .12s ease;
}
.hwsr-plancard:hover{transform:translateY(-1px);box-shadow:0 8px 22px rgba(15,23,42,.08);border-color:#d1d5db;}
.hwsr-plancard.is-selected{border-color:rgba(37,99,235,.55);box-shadow:0 10px 28px rgba(37,99,235,.14);}
.hwsr-plancard .hwsr-plancard__top{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;}
.hwsr-plancard .hwsr-plancard__title{font-weight:900;font-size:14px;color:#0f172a;text-transform:uppercase;letter-spacing:.6px;}
.hwsr-plancard .hwsr-plancard__desc{margin-top:6px;color:#475569;font-size:13px;line-height:1.35;}
.hwsr-plancard .hwsr-plancard__amount{font-weight:900;font-size:18px;color:#0f172a;}
.hwsr-plancard .hwsr-plancard__badge{
  display:inline-flex;align-items:center;gap:6px;
  padding:6px 10px;border-radius:999px;
  border:1px solid #fde68a;background:#fff7ed;
  font-size:12px;font-weight:800;color:#92400e;
}
html.hwsr-modal-open, html.hwsr-modal-open body{overflow:hidden;}

.hwsr-plancard{display:flex;align-items:center;justify-content:space-between;gap:14px;}
.hwsr-plancard__left{min-width:0;}
.hwsr-plancard__right{display:flex;flex-direction:column;align-items:flex-end;gap:8px;}
.hwsr-plancard__sub{margin-top:6px;color:#475569;font-size:13px;line-height:1.35;}
/* Payment list (voucher-style) */

/* Voucher-style payment list */
.hwsr-paylist{display:flex;flex-direction:column;gap:12px;margin-top:12px}
.hwsr-payrow{display:flex;align-items:center;gap:14px;padding:16px;border:1px solid rgba(15,23,42,.12);border-radius:16px;background:#fff;cursor:pointer}
.hwsr-payrow__radio{width:18px;height:18px;accent-color:#2563eb}
.hwsr-payrow__icon{width:40px;height:40px;display:flex;align-items:center;justify-content:center;border-radius:999px;background:rgba(15,23,42,.04);color:#0f172a}
.hwsr-payrow__main{display:flex;flex-direction:column;gap:4px;min-width:0}
.hwsr-payrow__title{font-weight:700;font-size:16px;line-height:1.2}
.hwsr-payrow__desc{font-size:13px;color:rgba(15,23,42,.68)}
.hwsr-payrow__tag{margin-left:auto;font-weight:700;font-size:12px;padding:6px 10px;border-radius:999px;border:1px solid rgba(15,23,42,.10);color:rgba(15,23,42,.72);background:rgba(15,23,42,.02)}
.hwsr-payrow__tag--rec{color:#2563eb;border-color:rgba(37,99,235,.22);background:rgba(37,99,235,.08)}
.hwsr-payrow.is-selected{border-color:rgba(37,99,235,.55);box-shadow:0 10px 24px rgba(37,99,235,.12)}


/* Code apply row (coupon/voucher unified) */
.hwsr-code-row{display:flex;gap:12px;align-items:center;}
.hwsr-code-row input{flex:1;}
.hwsr-btn.hwsr-btn--apply{white-space:nowrap;border-radius:999px;padding:12px 16px;}
#hwsr_code_hint{font-size:13px;line-height:1.35;}
#hwsr_code_hint.hwsr-ok{color:#1f7a3d;}
#hwsr_code_hint.hwsr-err{color:#b00020;}


/* Terms checkbox */
.hwsr-terms{display:flex;align-items:center;gap:10px;margin:10px 0 0;color:#333;font-size:14px;}
.hwsr-terms input{width:18px;height:18px;}
#hwsr-booking-submit.is-disabled{opacity:.5;cursor:not-allowed;}


/* AGB Zustimmung Box */
.hwsr-termsbox{
    margin:18px 0 12px;
    padding:14px 16px;
    border-radius:14px;
    border:1px solid rgba(200,170,90,0.35);
    background:linear-gradient(180deg,#fff,#fbf9f3);
    box-shadow:0 2px 6px rgba(0,0,0,0.04);
}

.hwsr-termsbox label{
    display:flex;
    align-items:flex-start;
    gap:12px;
    font-size:14px;
    line-height:1.4;
    color:#111;
    cursor:pointer;
}

.hwsr-termsbox input{
    margin-top:3px;
    transform:scale(1.15);
    accent-color:#000;
}

.hwsr-termsbox a{
    text-decoration:underline;
    font-weight:500;
}


/* ===== Vehicle Detail (Info) Luxury ===== */

.hwsr-vinfo{background:#fff;border:1px solid rgba(0,0,0,.06);border-radius:22px;overflow:hidden}
.hwsr-vinfo-head{display:flex;justify-content:space-between;gap:18px;padding:22px 22px 0 22px;align-items:flex-end}
.hwsr-vinfo .hwsr-h1{font-size:34px;line-height:1.05;margin:6px 0 0 0}
.hwsr-vinfo-sub{color:#6b7280;margin-top:10px}
.hwsr-vinfo-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:18px;padding:18px 22px 22px 22px}
.hwsr-vinfo-media{display:flex;flex-direction:column;gap:14px}
.hwsr-vinfo-heroimg{height:360px;border-radius:18px;background-size:cover;background-position:center;position:relative;box-shadow:0 12px 30px rgba(0,0,0,.08)}
.hwsr-vinfo-heroimg:after{content:"";position:absolute;inset:0;border-radius:18px;background:linear-gradient(180deg,rgba(0,0,0,.00),rgba(0,0,0,.18))}
.hwsr-vinfo-heroimg.is-empty{background:linear-gradient(135deg,#fafafa,#f3f4f6);border:1px dashed rgba(0,0,0,.12);box-shadow:none}
.hwsr-vinfo-heroempty{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;color:#6b7280;font-weight:600}
.hwsr-vinfo-badges{display:flex;flex-wrap:wrap;gap:10px}
.hwsr-chip{display:inline-flex;align-items:center;gap:8px;padding:8px 12px;border-radius:999px;background:#fbf9f3;border:1px solid rgba(200,170,90,.35);font-weight:600}
.hwsr-chip .dot{width:8px;height:8px;border-radius:999px;background:#c8aa5a;display:inline-block}
.hwsr-vinfo-callouts{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.hwsr-vinfo-callout{background:#ffffff;border:1px solid rgba(0,0,0,.06);border-radius:16px;padding:12px 14px}
.hwsr-vinfo-callout .t{color:#6b7280;font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.04em}
.hwsr-vinfo-callout .v{margin-top:6px;font-weight:800;font-size:16px}
.hwsr-vinfo-panel{display:flex;flex-direction:column;gap:12px}
.hwsr-vinfo-card{background:#ffffff;border:1px solid rgba(0,0,0,.06);border-radius:18px;padding:14px 14px}
.hwsr-vinfo-cardtitle{font-weight:900;margin-bottom:10px}
.hwsr-vinfo-specs{display:grid;grid-template-columns:1fr 1fr 1fr;gap:10px}
.hwsr-spec{background:#fafafa;border:1px solid rgba(0,0,0,.05);border-radius:14px;padding:12px}
.hwsr-spec .k{color:#6b7280;font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.04em}
.hwsr-spec .v{margin-top:6px;font-weight:900;font-size:16px}
.hwsr-vinfo-list{margin:0;padding:0;list-style:none;display:flex;flex-direction:column;gap:8px}
.hwsr-vinfo-list li{display:flex;gap:10px;align-items:flex-start;color:#111}
.hwsr-vinfo-list .b{font-weight:900;color:#111}
.hwsr-vinfo-cta{background:linear-gradient(180deg,#fff,#fbf9f3);border:1px solid rgba(200,170,90,.35)}
.hwsr-vinfo-ctatitle{font-weight:1000;font-size:18px}
.hwsr-vinfo-ctasub{color:#6b7280;margin-top:6px;margin-bottom:12px}
.hwsr-btn.wide{width:100%;text-align:center;justify-content:center}
.hwsr-vinfo-footnote{margin-top:10px;color:#6b7280;font-size:12px}
@media (max-width: 920px){
  .hwsr-vinfo-head{flex-direction:column;align-items:flex-start}
  .hwsr-vinfo-grid{grid-template-columns:1fr}
  .hwsr-vinfo-heroimg{height:280px}
  .hwsr-vinfo-specs{grid-template-columns:1fr}
  .hwsr-vinfo-callouts{grid-template-columns:1fr}
}



/* Vehicle Gallery */
.hwsr-gallery{display:flex;flex-direction:column;gap:10px}
.hwsr-gallery-main{height:360px;border-radius:18px;background-size:cover;background-position:center;position:relative;box-shadow:0 12px 30px rgba(0,0,0,.08);overflow:hidden}
.hwsr-gallery-main:after{content:"";position:absolute;inset:0;border-radius:18px;background:linear-gradient(180deg,rgba(0,0,0,.00),rgba(0,0,0,.18))}
.hwsr-gallery-main.is-empty{background:linear-gradient(135deg,#fafafa,#f3f4f6);border:1px dashed rgba(0,0,0,.12);box-shadow:none}
.hwsr-gallery-thumbs{display:flex;gap:10px;flex-wrap:wrap}
.hwsr-thumb{width:66px;height:48px;border-radius:12px;border:1px solid rgba(0,0,0,.10);background:#fff;padding:0;cursor:pointer;position:relative;overflow:hidden}
.hwsr-thumb span{display:block;width:100%;height:100%;background-size:cover;background-position:center;filter:saturate(1.05)}
.hwsr-thumb.is-active{outline:2px solid rgba(220,38,38,.75);border-color:rgba(220,38,38,.55)}
.hwsr-thumb:focus{outline:2px solid rgba(220,38,38,.65);outline-offset:2px}

/* Performance Highlights */
.hwsr-perf{display:grid;grid-template-columns:1fr;gap:14px}
.hwsr-perf-item{padding:14px 14px 12px;border-radius:16px;background:linear-gradient(135deg,#fff,rgba(0,0,0,.02));border:1px solid rgba(0,0,0,.08)}
.hwsr-perf-item .k{font-size:12px;letter-spacing:.08em;text-transform:uppercase;color:#6b7280}
.hwsr-perf-item .v{font-size:20px;font-weight:800;margin-top:2px}
.hwsr-perfbar{height:10px;border-radius:999px;background:rgba(0,0,0,.08);margin-top:10px;position:relative;overflow:hidden}
.hwsr-perfbar:before{content:"";position:absolute;left:0;top:0;bottom:0;width:0%;background:linear-gradient(90deg,rgba(220,38,38,.9),rgba(245,158,11,.85));border-radius:999px;transition:width .8s ease}
.hwsr-perfbar.is-ready:before{width:var(--pct)}
.hwsr-note{margin-top:10px;color:#6b7280;font-size:12px;line-height:1.4}

.hwsr-payrow__tag--pref{color:#16a34a;border-color:rgba(22,163,74,.28);background:rgba(22,163,74,.10)}
