/* =========================================================
   HWS Rentals Flow – Premium UI (Gutscheinshop Style)
   Scoped to .hwsr-flow to avoid theme collisions
   ========================================================= */
.hwsr-flow{
  --bg: #f3f3f5;
  --card: #ffffff;
  --text: #0b0f19;
  --muted: #667085;
  --border: #e6e6ea;
  --primary: #0b0f19;
  --primary2:#141a2a;
  --accent: #d4af37;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 10px 30px rgba(15, 23, 42, .08);
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
}
.hwsr-flow *{ box-sizing:border-box; }

.hwsr-flow .hwsr-container{
  max-width: 1150px;
  margin: 0 auto;
  padding: 26px 16px 60px;
}

.hwsr-flow .hwsr-hero{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  padding: 18px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff 0%, #fbfbfd 100%);
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}
.hwsr-flow .hwsr-kicker{ font-size:12px; color: var(--muted); letter-spacing:.06em; text-transform:uppercase; }
.hwsr-flow .hwsr-title{ font-size: 34px; margin: 6px 0 6px; line-height:1.05; }
.hwsr-flow .hwsr-subtitle{ margin:0; color: var(--muted); font-size:14px; max-width: 720px; }

.hwsr-flow .hwsr-badges{ display:flex; gap:10px; flex-wrap:wrap; margin-top:10px; }
.hwsr-flow .hwsr-badge{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 12px;border-radius:999px;border:1px solid var(--border);
  background: rgba(212,175,55,.08);
  color: var(--text); font-size:12px; white-space:nowrap;
}
.hwsr-flow .hwsr-badge::before{
  content:"";width:8px;height:8px;border-radius:50%;
  background: var(--accent); box-shadow:0 0 0 3px rgba(212,175,55,.16);
}

.hwsr-flow .hwsr-stepper{
  display:flex;gap:10px;flex-wrap:wrap;
  padding: 12px 12px;
  border:1px solid var(--border);
  border-radius: 999px;
  background:#fff;
  width: fit-content;
  margin-top: 12px;
}
.hwsr-flow .hwsr-step{
  display:flex;align-items:center;gap:10px;
  padding:8px 12px;border-radius:999px;border:1px solid transparent;
  color: var(--muted); font-weight:800; font-size:13px;
}
.hwsr-flow .hwsr-step .n{
  width:22px;height:22px;border-radius:999px;display:inline-flex;align-items:center;justify-content:center;
  background:#f2f2f6;border:1px solid var(--border); color: var(--muted); font-size:12px;
}
.hwsr-flow .hwsr-step.is-active{ color: var(--text); background: rgba(212,175,55,.10); border-color: rgba(212,175,55,.35); }
.hwsr-flow .hwsr-step.is-active .n{ background: rgba(212,175,55,.18); border-color: rgba(212,175,55,.45); color: var(--text); }

.hwsr-flow .hwsr-grid{
  display:grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 980px){
  .hwsr-flow .hwsr-grid{ grid-template-columns: 1fr; }
  .hwsr-flow .hwsr-title{ font-size: 28px; }
}

.hwsr-flow .hwsr-card{
  background: var(--card);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hwsr-flow .hwsr-card .inner{ padding: 16px; }

.hwsr-flow .hwsr-vehicle{
  display:flex; gap:14px; align-items:stretch;
}
.hwsr-flow .hwsr-vehicle .media{
  width: 200px; min-width:200px; height: 130px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: radial-gradient(160px 110px at 30% 30%, rgba(212,175,55,.22), rgba(0,0,0,0)), #f6f6f8;
  display:flex;align-items:center;justify-content:center;
  color: var(--muted); font-size:12px;
  overflow:hidden;
}
.hwsr-flow .hwsr-vehicle .media img{ width:100%; height:100%; object-fit:cover; display:block; }
@media (max-width: 600px){
  .hwsr-flow .hwsr-vehicle{ flex-direction:column; }
  .hwsr-flow .hwsr-vehicle .media{ width:100%; min-width:0; height: 180px; }
}

.hwsr-flow .hwsr-h3{ margin:0 0 4px; font-size:18px; }
.hwsr-flow .hwsr-meta{ margin:0; color: var(--muted); font-size:13px; }

.hwsr-flow .hwsr-specs{
  margin-top: 12px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
}
@media (max-width: 600px){
  .hwsr-flow .hwsr-specs{ grid-template-columns: 1fr; }
}
.hwsr-flow .hwsr-spec{
  border:1px solid var(--border);
  border-radius: 16px;
  padding:10px 12px;
  background:#fbfbfd;
}
.hwsr-flow .hwsr-spec span{ display:block; font-size:12px; color: var(--muted); }
.hwsr-flow .hwsr-spec strong{ display:block; margin-top:2px; font-size:14px; }

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

.hwsr-flow .hwsr-note{
  margin-top: 14px;
  padding: 14px;
  border: 1px dashed rgba(212,175,55,.7);
  border-radius: 18px;
  background: rgba(212,175,55,.06);
  color: var(--muted);
  font-size: 13px;
}

.hwsr-flow .hwsr-empty{
  padding: 18px;
  border:1px solid var(--border);
  border-radius: var(--radius);
  background:#fff;
  box-shadow: var(--shadow);
  color: var(--muted);
}



/* -------- Calendar premium styles (JS renders .hwsr-cal-*) -------- */
.hwsr-flow .hwsr-toprow{ display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap; }
.hwsr-flow .hwsr-legend{ display:flex; gap:14px; flex-wrap:wrap; margin: 14px 0 10px; color: var(--muted); font-weight:800; font-size:12px; }
.hwsr-flow .hwsr-legend .item{ display:flex; align-items:center; gap:8px; }
.hwsr-flow .hwsr-legend .dot{ width:10px; height:10px; border-radius:999px; display:inline-block; }
.hwsr-flow .hwsr-legend .dot.free{ background:#e5e7eb; border:1px solid var(--border); }
.hwsr-flow .hwsr-legend .dot.blocked{ background: rgba(239,68,68,.6); }
.hwsr-flow .hwsr-legend .dot.partial{ background: rgba(245,158,11,.90); }
.hwsr-flow .hwsr-legend .dot.sel{ background: rgba(37,99,235,.90); }

.hwsr-flow .hwsr-calendar{ margin-top: 6px; }
.hwsr-flow .hwsr-cal-head{ display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom: 12px; }
.hwsr-flow .hwsr-cal-title{ font-weight:900; font-size:18px; }
.hwsr-flow .hwsr-cal-nav{ display:flex; gap:10px; }

.hwsr-flow .hwsr-cal-grid{ display:grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 8px; }
.hwsr-flow .hwsr-cal-dow{ text-align:center; font-size:12px; color: var(--muted); font-weight:800; padding: 6px 0; }
.hwsr-flow .hwsr-cal-day{
  border:1px solid var(--border);
  border-radius: 14px;
  position: relative;
  background:#fff;
  min-height: 44px;
  display:flex;
  align-items:flex-start;
  justify-content:flex-start;
  padding: 8px 8px;
  font-weight:900;
  cursor:pointer;
  transition: transform .08s ease, background .15s ease, border-color .15s ease;
}
.hwsr-flow .hwsr-cal-day:hover{ background:#fafafe; border-color:#d9d9df; }
.hwsr-flow .hwsr-cal-day:active{ transform: translateY(1px); }
.hwsr-flow .hwsr-cal-day.is-empty{ background: transparent; border-color: transparent; cursor:default; }
.hwsr-flow .hwsr-cal-day.is-blocked,
.hwsr-flow .hwsr-cal-day:disabled{
  background: rgba(239,68,68,.10);
  border-color: rgba(239,68,68,.35);
  color: #9f1239;
  cursor:not-allowed;
  opacity: 1;
}
/* Partially available day (some times blocked) */
.hwsr-flow .hwsr-cal-day.is-partial{
  background: rgba(245,158,11,.10);
  border-color: rgba(245,158,11,.40);
}
.hwsr-flow .hwsr-cal-day.is-partial::after{
  content:'•';
  margin-left:auto;
  margin-top:-2px;
  color: rgba(245,158,11,.95);
  font-size: 18px;
  line-height: 1;
}
/* Selected days (range picking)
   Note: JS uses is-start / is-end / is-range (not is-selected).
*/
.hwsr-flow .hwsr-cal-day.is-selected,
.hwsr-flow .hwsr-cal-day.is-start,
.hwsr-flow .hwsr-cal-day.is-end{
  background: rgba(37,99,235,.16) !important;
  border-color: rgba(37,99,235,.55) !important;
}

.hwsr-flow .hwsr-cal-hint{
  position:absolute;
  right:8px;
  bottom:6px;
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  pointer-events:none;
}
.hwsr-flow .hwsr-cal-day.is-disabled .hwsr-cal-hint{ display:none; }
.hwsr-flow .hwsr-cal-day.is-inrange,
.hwsr-flow .hwsr-cal-day.is-range{
  background: rgba(37,99,235,.10) !important;
  border-color: rgba(37,99,235,.28) !important;
}

.hwsr-flow .hwsr-summarybar{width:100%;
  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-flow .hwsr-summarytext{ color: var(--muted); font-weight:800; font-size:13px; }

/* Forms premium */
.hwsr-flow .hwsr-formgrid{ display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin-top: 12px; }
@media (max-width: 820px){ .hwsr-flow .hwsr-formgrid{ grid-template-columns: 1fr; } }
.hwsr-flow .hwsr-field label{ display:block; font-size:12px; color: var(--muted); font-weight:800; margin: 0 0 6px; }
.hwsr-flow .hwsr-field input{
  width:100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 12px 14px;
  font-size: 14px;
  background:#fff;
  outline:none;
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
}
.hwsr-flow .hwsr-field input:focus{
  border-color: rgba(212,175,55,.55);
  box-shadow: 0 0 0 3px rgba(212,175,55,.18);
}
.hwsr-flow .hwsr-check{
  display:flex; gap:12px; align-items:flex-start;
  padding: 14px;
  border:1px solid var(--border);
  border-radius: 18px;
  background:#fff;
}
.hwsr-flow .hwsr-check input{ width:18px; height:18px; margin-top: 2px; }
.hwsr-flow .hwsr-paybox{
  margin-top: 14px;
  padding: 14px;
  border:1px solid var(--border);
  border-radius: var(--radius-sm);
  background:#fff;
}

/* Price summary (checkout) – premium + scannable */
.hwsr-flow .hwsr-kicker{
  font-weight: 950;
  letter-spacing: .35px;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(0,0,0,.70);
  margin-bottom: 10px;
}
.hwsr-flow .hwsr-kv{
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,0));
}
.hwsr-flow .hwsr-kv > div{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 16px;
  padding: 12px 14px;
  border-top: 1px solid rgba(0,0,0,.08);
}
.hwsr-flow .hwsr-kv > div:first-child{ border-top: none; }
.hwsr-flow .hwsr-kv span{
  font-weight: 850;
  color: rgba(0,0,0,.82);
}
.hwsr-flow .hwsr-kv strong{
  font-weight: 950;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.hwsr-flow .hwsr-kv .is-sub span{ color: var(--muted); font-weight: 800; }
.hwsr-flow .hwsr-kv .is-discount span{ color: rgba(0,0,0,.76); }
.hwsr-flow .hwsr-kv .is-discount strong{ color: rgba(0,0,0,.76); }
.hwsr-flow .hwsr-kv .is-total{ background: rgba(212,175,55,.10); }
.hwsr-flow .hwsr-kv .is-total span{ font-weight: 950; }
.hwsr-flow .hwsr-kv .is-total strong{ font-size: 16px; }
.hwsr-flow .hwsr-radio-row{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 10px; }
.hwsr-flow .hwsr-radio{
  display:flex; align-items:center; gap:10px;
  padding: 12px 14px;
  border:1px solid var(--border);
  border-radius: 16px;
  background:#fff;
  cursor:pointer;
  font-weight:900;
}
.hwsr-flow .hwsr-radio input{ width:18px; height:18px; }

/* Luxury payment selector (combined payment plan + method) */
.hwsr-flow .hwsr-paybox--lux{ padding: 16px; }
.hwsr-flow .hwsr-paysections{display:grid;grid-template-columns:1fr;gap:16px;margin-top:18px;}
.hwsr-flow .hwsr-paysection{ border:1px solid var(--border); border-radius: 18px; padding: 12px; background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,0)); }
.hwsr-flow .hwsr-paysection__head{ display:flex; align-items:baseline; justify-content:space-between; gap:10px; margin-bottom: 10px; }
.hwsr-flow .hwsr-paysection__title{ font-weight:950; font-size: 13px; letter-spacing:.3px; text-transform:uppercase; color: rgba(0,0,0,.78); }
.hwsr-flow .hwsr-paysection__meta{ font-weight:900; font-size: 12px; color: var(--muted); }
.hwsr-flow .hwsr-paygrid{ display:grid; grid-template-columns: 1fr; gap: 10px; }

.hwsr-flow .hwsr-paycard{
  position:relative;
  display:grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 4px 10px;
  padding: 14px 14px;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  cursor:pointer;
  overflow:hidden;
}
.hwsr-flow .hwsr-paycard input{ position:absolute; opacity:0; pointer-events:none; }
.hwsr-flow .hwsr-paycard__brand{ font-weight: 950; }
.hwsr-flow .hwsr-paycard__desc{ font-weight: 800; font-size: 12px; color: var(--muted); }
.hwsr-flow .hwsr-paycard__amount{ grid-column: 2; grid-row: 1 / span 2; align-self:center; justify-self:end; font-weight: 950; white-space:nowrap; }
.hwsr-flow .hwsr-paycard__badge{
  position:absolute; top: 10px; right: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 950;
  font-size: 11px;
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.55);
  color: rgba(0,0,0,.78);
}
.hwsr-flow .hwsr-paycard__icon{
  position:absolute; left: 12px; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 12px;
  background: rgba(0,0,0,.04);
  font-weight: 950;
  opacity: .85;
}
.hwsr-flow .hwsr-paycard{ padding-left: 58px; }
.hwsr-flow .hwsr-paycard:hover{ border-color: rgba(0,0,0,.24); box-shadow: 0 10px 24px rgba(0,0,0,.06); transform: translateY(-1px); }
.hwsr-flow .hwsr-paycard.is-selected{ border-color: rgba(212,175,55,.85); box-shadow: 0 0 0 3px rgba(212,175,55,.18); }
.hwsr-flow .hwsr-paycard--muted{ background: rgba(0,0,0,.01); }

@media (max-width: 860px){
  .hwsr-flow .hwsr-paysections{display:grid;grid-template-columns:1fr;gap:16px;margin-top:18px;}
}

/* Compatibility for old button class names used by JS */
.hwsr-flow .hwsr-btn-secondary{ background:#fff; color: var(--text); border-color: var(--border); }
.hwsr-flow .hwsr-btn-secondary:hover{ background:#f7f7fa; border-color:#d9d9df; }
.hwsr-flow .hwsr-btn-primary{ background: var(--primary); border-color: var(--primary); color:#fff; }
.hwsr-flow .hwsr-btn-primary:hover{ background: var(--primary2); border-color: var(--primary2); }


/* Calendar controls */
.hwsr-flow #hwsr-cal-reset{ padding:10px 14px; }

/* Price pill */
.hwsr-flow .hwsr-price-pill{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  padding: 10px 12px;
  border: 1px solid rgba(212,175,55,.55);
  border-radius: 16px;
  background: rgba(212,175,55,.08);
  min-width: 180px;
}
.hwsr-flow .hwsr-price-pill span{ color: var(--muted); font-weight:900; font-size:12px; white-space:nowrap; }
.hwsr-flow .hwsr-price-pill strong{ font-weight:950; white-space:nowrap; }

.hwsr-flow .hwsr-price-mini{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding: 10px 12px;
  border: 1px solid rgba(212,175,55,.55);
  border-radius: 16px;
  background: rgba(212,175,55,.08);
  min-width: 220px;
}
.hwsr-flow .hwsr-price-mini .label{ color: var(--muted); font-weight: 900; font-size: 12px; white-space:nowrap; }
.hwsr-flow .hwsr-price-mini .value{ font-weight: 950; font-size: 16px; white-space:nowrap; }

.hwsr-flow .hwsr-cal-day.is-past{ opacity:.45; cursor:not-allowed; }

/* Checkout summary cards like Gutscheinshop */
.hwsr-summary-cards{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 14px 0 18px 0;
}
@media (max-width: 768px){
  .hwsr-summary-cards{ grid-template-columns: 1fr; }
}
.hwsr-scard{
  padding: 18px 18px;
  border-radius: 18px;
  background: #f7f8fb;
  border: 1px solid rgba(0,0,0,.06);
}
.hwsr-scard-k{
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(0,0,0,.55);
  font-weight: 800;
}
.hwsr-scard-title{
  font-size: 18px;
  font-weight: 900;
  margin-top: 10px;
}
.hwsr-scard-meta{
  color: rgba(0,0,0,.55);
  margin-top: 8px;
  font-weight: 650;
}
.hwsr-scard-date{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top: 14px;
  font-weight: 900;
}
.hwsr-ic{ font-size: 16px; }

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

/* Time pickers */
.hwsr-time-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 14px 0 6px 0;
}
@media (max-width:768px){
  .hwsr-time-row{ grid-template-columns: 1fr; }
}
.hwsr-time-row select{
  width:100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.12);
  background:#fff;
  font-weight: 700;
}

/* --- Reset calendar styles (safe) --- */
.hwsr-cal-header{display:flex;align-items:center;justify-content:space-between;margin:10px 0 14px 0;}
.hwsr-cal-title{font-weight:800;font-size:18px;}
.hwsr-cal-nav{border:1px solid rgba(0,0,0,.12);background:#fff;border-radius:12px;padding:8px 12px;font-weight:900;cursor:pointer;}
.hwsr-cal-grid{display:grid;grid-template-columns:repeat(7,1fr);gap:10px;margin-top:10px;}
.hwsr-cal-weekday{font-weight:800;opacity:.6;padding:6px 2px;text-align:center;}
.hwsr-cal-blank{height:44px;}
.hwsr-cal-day{height:44px;border-radius:14px;border:1px solid rgba(0,0,0,.12);background:#fff;font-weight:800;cursor:pointer;}
.hwsr-cal-day.is-range{background:rgba(207, 173, 78, .18);border-color:rgba(207, 173, 78, .35);}
.hwsr-cal-day.is-start,.hwsr-cal-day.is-end{background:rgba(207, 173, 78, .28);border-color:rgba(207, 173, 78, .6);}

.hwsr-cal-day.is-disabled{opacity:.35; cursor:not-allowed; background:rgba(0,0,0,.03);}
.hwsr-resetlink{font-weight:700;font-size:13px;opacity:.75;text-decoration:none;}
.hwsr-resetlink:hover{opacity:1;text-decoration:underline;}


/* Cancellation request (Thank you page) */

.hwsr2-cancelwrap{margin-top:18px;}
.hwsr2-cancelcard{border:1px solid rgba(255,255,255,0.08);background:rgba(255,255,255,0.03);border-radius:16px;padding:16px 16px 14px;}
.hwsr2-cancelcard-title{font-weight:700;font-size:16px;margin-bottom:4px;}
.hwsr2-cancelcard-sub{color:rgba(255,255,255,0.75);font-size:13px;margin-bottom:12px;}
.hwsr2-cancel-label{display:block;font-size:12px;color:rgba(255,255,255,0.75);margin:0 0 6px;}
.hwsr2-cancel-text{width:100%;border-radius:12px;border:1px solid rgba(255,255,255,0.10);background:rgba(0,0,0,0.20);color:#fff;padding:10px 12px;outline:none;resize:vertical;}
.hwsr2-cancel-text:focus{border-color:rgba(255,255,255,0.25);}
.hwsr2-btn-danger{width:100%;margin-top:10px;border:none;border-radius:14px;padding:12px 14px;font-weight:700;cursor:pointer;background:#d63638;color:#fff;}
.hwsr2-btn-danger:hover{filter:brightness(1.05);}
.hwsr2-btn-danger:disabled{opacity:0.7;cursor:not-allowed;}
.hwsr2-cancel-msg{margin-top:10px;font-size:13px;color:rgba(255,255,255,0.80);}
.hwsr2-cancelinfo{border:1px solid rgba(255,255,255,0.08);background:rgba(255,255,255,0.02);border-radius:16px;padding:14px 16px;}
.hwsr2-cancelinfo-title{font-weight:700;margin-bottom:4px;}
.hwsr2-cancelinfo-sub{color:rgba(255,255,255,0.75);font-size:13px;}


/* Unified code bar */
.hwsr-codebar{display:flex;gap:10px;align-items:center;margin:14px 0 6px;}
.hwsr-codebar input{flex:1;min-width:0;padding:14px 14px;border:1px solid #e6e9ef;border-radius:14px;font-size:16px;}
.hwsr-codebar button{white-space:nowrap;padding:12px 16px;border-radius:14px;border:1px solid #e6e9ef;background:#fff;font-weight:700;cursor:pointer;}
.hwsr-codebar button:hover{box-shadow:0 6px 18px rgba(15,23,42,.08);} 
.hwsr-codebar .hwsr-code-status{font-size:13px;margin-top:6px;color:#475569;}
@media(max-width:720px){.hwsr-codebar{flex-direction:column;align-items:stretch;}}
