/* ═══════════════════════════════════════════════════════════════
   HyperCloud Order Form — order.css  v3
   Sky-blue theme | Mobile-first | Lightweight
   ═══════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ────────────────────────────────────────────── */
:root {
  /* Brand — sky blue */
  --brand-500:      #38BDF8;
  --brand-600:      #0EA5E9;
  --brand-glow:     rgba(56,189,248,.13);
  --brand-glow2:    rgba(56,189,248,.22);
  --brand-dark:     #0284C7;

  /* Surface */
  --white:          #FFFFFF;
  --bg:             #F7F8FA;
  --card:           #FFFFFF;
  --text:           #1A1A2E;
  --muted:          #6B7280;
  --border:         #EAECEF;

  /* States */
  --success:        #10B981;
  --success-bg:     #ECFDF5;
  --success-bd:     #6EE7B7;
  --error:          #EF4444;
  --error-bg:       #FEF2F2;
  --error-bd:       #FCA5A5;

  /* Geometry */
  --radius:         16px;
  --radius-sm:      10px;
  --shadow:         0 2px 16px rgba(0,0,0,.06);
  --shadow-md:      0 8px 32px rgba(0,0,0,.09);
  --shadow-lg:      0 16px 48px rgba(0,0,0,.13);
  --transition:     .22s ease;
  --font:           'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── RESET ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── HEADER ───────────────────────────────────────────────────── */
.hdr {
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 12px rgba(0,0,0,.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
}

.logo img { height: 36px; width: auto; object-fit: contain; }
.logo-text span { color: var(--brand-500); }

.hdr-secure {
  display: flex; align-items: center; gap: 6px;
  font-size: .78rem; color: var(--muted);
}

/* ── STEPPER ──────────────────────────────────────────────────── */
.stepper-wrap {
  max-width: 740px;
  margin: 1.75rem auto 0;
  padding: 0 1rem;
}

.stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.stepper::before {
  content: '';
  position: absolute;
  top: 19px; left: 8%; right: 8%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.stepper a {
    text-decoration: none;
    color: inherit;
}

.stepper::after {
  content: '';
  position: absolute;
  top: 19px; left: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-600), var(--brand-500));
  z-index: 0;
  width: var(--progress, 0%);
  transition: width .55s cubic-bezier(.4,0,.2,1);
}

.step-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; z-index: 1; flex: 1;
}

.step-bubble {
  width: 38px; height: 38px;
  border-radius: 50%;
  font-weight: 700; font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  border: 2px solid var(--border);
  color: var(--muted);
  transition: background var(--transition), border-color var(--transition),
              box-shadow var(--transition), transform var(--transition);
}

.step-item.active .step-bubble {
  background: linear-gradient(135deg, var(--brand-600), var(--brand-500));
  border-color: var(--brand-500);
  color: white;
  box-shadow: 0 0 0 5px var(--brand-glow2);
  transform: scale(1.1);
}

.step-item.done .step-bubble {
  background: var(--brand-600);
  border-color: var(--brand-600);
  color: white;
}

.step-item.done .step-bubble::after { content: '✓'; }
.step-item.done .step-bubble span   { display: none; }

.step-label {
  font-size: .66rem; font-weight: 600;
  color: var(--muted); text-align: center;
  white-space: nowrap; letter-spacing: .04em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.step-item.active .step-label { color: var(--brand-600); }

@media (max-width: 380px) { .step-label { display: none; } }

/* ── MAIN LAYOUT ──────────────────────────────────────────────── */
.order-wrap {
  max-width: 960px;
  margin: 1.75rem auto;
  padding: 0 1rem 6rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 1.5rem;
  align-items: start;
}

.order-sidebar .card {
  position: sticky;
  top: 76px;
}

@media (max-width: 768px) {
  .order-wrap {
    grid-template-columns: 1fr;
    padding-bottom: 100px;
    gap: 1rem;
  }
  .order-sidebar { display: none; } /* replaced by mobile drawer */
}

/* ── CARD ─────────────────────────────────────────────────────── */
.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

/* Glossy top highlight */
.card::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-600), var(--brand-500), transparent 80%);
  border-radius: var(--radius) var(--radius) 0 0;
  margin: -1.75rem -1.75rem 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover::before { opacity: 1; }
.card:hover { box-shadow: var(--shadow-md); }

.card-title {
  font-size: 1.15rem; font-weight: 700;
  margin-bottom: 1.25rem; color: var(--text);
  letter-spacing: -.01em;
}

/* ── STEP LOADING OVERLAY ─────────────────────────────────────── */
.step-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(247,248,250,.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.step-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.step-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.step-overlay-spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--brand-500);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

.step-overlay-text {
  font-size: .9rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .01em;
}

@media (prefers-reduced-motion: reduce) {
  .step-overlay { backdrop-filter: none; -webkit-backdrop-filter: none; transition: none; }
  .step-overlay-spinner { animation: none; border-top-color: var(--brand-500); }
}

/* ── PAGE-ENTER ANIMATION ─────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.page-enter {
  animation: fadeUp .4s cubic-bezier(.22,.68,0,1.2) both;
}

/* ── FORMS ────────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.1rem; }

label {
  display: block;
  font-size: .85rem; font-weight: 600;
  color: var(--text); margin-bottom: 5px;
}

.req { color: var(--brand-600); font-weight: 700; margin-left: 1px; }

input[type=text],
input[type=email],
input[type=password],
input[type=tel],
select, textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font); font-size: .925rem;
  color: var(--text); background: rgba(255,255,255,.92);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
  appearance: none; -webkit-appearance: none;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--brand-500);
  box-shadow: 0 0 0 4px var(--brand-glow);
  background: var(--white);
}

/* Error state */
input.is-invalid, select.is-invalid {
  border-color: var(--error);
  background: var(--error-bg);
}

@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%      { transform: translateX(-4px); }
  60%      { transform: translateX(4px); }
  80%      { transform: translateX(-2px); }
}

.field-err {
  color: var(--error); font-size: .76rem;
  margin-top: 4px;
  animation: fadeIn .2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* 2-column responsive grid */
.grid-2, .reg-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 540px) {
  .grid-2, .reg-grid-2 { grid-template-columns: 1fr; }
}

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font); font-size: .92rem; font-weight: 700;
  cursor: pointer; border: none;
  transition: transform var(--transition), box-shadow var(--transition),
              opacity var(--transition), background var(--transition);
  text-decoration: none; white-space: nowrap;
  min-height: 48px;
  user-select: none;
}

.btn-primary {
  background: linear-gradient(180deg, var(--brand-500) 0%, var(--brand-600) 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(14,165,233,.38), inset 0 1px 0 rgba(255,255,255,.25);
  letter-spacing: .01em;
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14,165,233,.52), inset 0 1px 0 rgba(255,255,255,.25);
}

.btn-primary:active:not(:disabled) { transform: translateY(0); }

.btn-primary:disabled {
  background: linear-gradient(180deg, #D1D5DB 0%, #9CA3AF 100%);
  box-shadow: none;
  cursor: not-allowed;
  opacity: .7;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--brand-500);
  color: var(--brand-600);
}

.btn-outline:hover:not(:disabled) {
  background: var(--brand-glow);
  transform: translateY(-1px);
}

.btn-sm { padding: 8px 16px; font-size: .82rem; min-height: 36px; }
.btn-full { width: 100%; }

/* Mobile: full-width buttons */
@media (max-width: 540px) {
  .btn-mobile-full { width: 100%; }
}

/* ── BILLING CYCLE CARDS ──────────────────────────────────────── */
.cycle-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.cycle-card {
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 14px 10px;
  cursor: pointer;
  text-align: center;
  transition: border-color var(--transition), background var(--transition),
              transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.cycle-card:hover { border-color: var(--brand-500); transform: translateY(-2px); }
.cycle-card.selected {
  border-color: var(--brand-500);
  background: var(--brand-glow);
  box-shadow: 0 0 0 3px var(--brand-glow2);
}

.cycle-card input { display: none; }
.cycle-name { font-weight: 700; font-size: .95rem; }
.cycle-price { font-size: .88rem; font-weight: 700; color: var(--brand-600); margin-top: 2px; }
.cycle-badge {
  display: inline-block; margin-top: 5px;
  padding: 2px 9px;
  background: var(--brand-600); color: white;
  border-radius: 20px; font-size: .68rem; font-weight: 700;
}

/* ── PRODUCT DESCRIPTION ──────────────────────────────────────── */
.product-desc-card {
  background: linear-gradient(135deg, var(--brand-glow), rgba(14,165,233,.04));
  border: 1.5px solid rgba(56,189,248,.3);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.product-desc-text {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.65;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.product-desc-text.expanded {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
}

.desc-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: .8rem;
  font-weight: 700;
  color: var(--brand-600);
  padding: 4px 0 0;
  text-decoration: underline;
  text-underline-offset: 2px;
  display: block;
  margin-top: 6px;
  font-family: var(--font);
}

/* ── DOMAIN SEGMENT CONTROL ───────────────────────────────────── */
.domain-segment {
  display: flex;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 4px;
  gap: 3px;
  margin-bottom: 1.25rem;
}

.domain-seg-opt { flex: 1; min-width: 0; }
.domain-seg-opt input[type=radio] { display: none; }
.domain-seg-opt label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  border-radius: 9px;
  border: none;
  text-align: center;
  cursor: pointer;
  font-size: .82rem; font-weight: 600;
  color: var(--muted);
  transition: background var(--transition), color var(--transition),
              box-shadow var(--transition), transform var(--transition);
  margin-bottom: 0;
  line-height: 1.3;
  white-space: normal;
}

.domain-seg-opt input:checked + label {
  background: var(--white);
  color: var(--brand-600);
  box-shadow: 0 2px 10px rgba(0,0,0,.09);
  transform: scale(1.02);
}

.domain-seg-opt label .seg-icon {
  font-size: 1.05rem;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .domain-segment { flex-direction: column; }
  .domain-seg-opt { flex: none; }
}

/* ── DOMAIN INPUT ROW ─────────────────────────────────────────── */
.domain-input-row {
  display: grid;
  grid-template-columns: 1fr 130px auto;
  gap: 8px;
  align-items: stretch;
}

@media (max-width: 540px) {
  .domain-input-row {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }
  .domain-input-row .tld-select {
    grid-column: 2;
    grid-row: 1;
  }
  .domain-input-row .check-btn {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
  }
}

@media (max-width: 375px) {
  .domain-input-row {
    grid-template-columns: 1fr;
  }
  .domain-input-row .tld-select { grid-column: 1; grid-row: 2; }
  .domain-input-row .check-btn  { grid-column: 1; grid-row: 3; }
}

/* ── EPP SLIDE-DOWN ───────────────────────────────────────────── */
@keyframes slideDown {
  from { opacity: 0; max-height: 0; transform: translateY(-6px); }
  to   { opacity: 1; max-height: 200px; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 1; max-height: 200px; }
  to   { opacity: 0; max-height: 0; }
}

.epp-group { overflow: hidden; }

.epp-group.epp-visible {
  animation: slideDown .28s cubic-bezier(.4,0,.2,1) forwards;
}

.epp-group.epp-hidden {
  animation: slideUp .22s ease forwards;
  pointer-events: none;
}

/* ── AVAILABILITY RESULT STATES ───────────────────────────────── */
.avail-result {
  margin-top: 10px;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity .22s ease, transform .22s ease;
  transform: translateY(-4px);
  min-height: 0;
}

.avail-result.visible {
  opacity: 1;
  transform: translateY(0);
}

.avail-result.checking {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: #F3F4F6; border: 1px solid var(--border);
  color: var(--muted);
}

.avail-result.available {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 14px;
  background: var(--success-bg);
  border: 1.5px solid var(--success-bd);
  color: #065F46;
}

.avail-result.unavailable {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 14px;
  background: var(--error-bg);
  border: 1.5px solid var(--error-bd);
  color: #991B1B;
}

.avail-result.error-state {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: var(--brand-glow);
  border: 1px solid rgba(56,189,248,.35);
  color: #0369A1;
}

.avail-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  font-size: .8rem; font-weight: 700; flex-shrink: 0; margin-top: 1px;
}

.avail-result.available   .avail-badge { background: var(--success); color: white; }
.avail-result.unavailable .avail-badge { background: var(--error);   color: white; }

/* Spinner */
@keyframes spin { to { transform: rotate(360deg); } }
.spinner {
  width: 16px; height: 16px;
  border: 2px solid var(--border);
  border-top-color: var(--brand-500);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  flex-shrink: 0;
}

/* ── SLD HINT ─────────────────────────────────────────────────── */
.sld-hint {
  display: none;
  margin-top: 4px;
  font-size: .75rem;
  color: var(--brand-dark);
  background: var(--brand-glow);
  border: 1px solid rgba(56,189,248,.28);
  border-radius: 6px;
  padding: 4px 9px;
  animation: fadeIn .18s ease;
}

/* ── OLD DOMAIN OPTS (backward compat) ───────────────────────── */
.domain-opts { display: flex; gap: 10px; margin-bottom: 1rem; flex-wrap: wrap; }
.domain-opt { flex: 1; min-width: 100px; }
.domain-opt input[type=radio] { display: none; }
.domain-opt label {
  display: block; padding: 12px;
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  text-align: center; cursor: pointer; font-weight: 600; font-size: .85rem;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
  margin-bottom: 0;
}
.domain-opt input:checked + label {
  border-color: var(--brand-500);
  background: var(--brand-glow);
  color: var(--brand-600);
}

/* ── AUTH TABS ────────────────────────────────────────────────── */
.auth-tabs {
  display: flex;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--border);
}

.auth-tab {
  flex: 1; padding: 11px 10px;
  text-align: center; font-weight: 600; font-size: .88rem;
  cursor: pointer;
  background: var(--bg); color: var(--muted);
  border: none; transition: background var(--transition), color var(--transition);
  font-family: var(--font);
}

.auth-tab.active {
  background: linear-gradient(180deg, var(--brand-500) 0%, var(--brand-600) 100%);
  color: white;
}

.auth-panel { display: none; }
.auth-panel.active {
  display: block;
  animation: fadeIn .22s ease;
}

/* ── PRODUCT HIGHLIGHT BOX ────────────────────────────────────── */
.product-highlight {
  background: linear-gradient(135deg, var(--brand-glow), rgba(14,165,233,.06));
  border: 1.5px solid rgba(56,189,248,.4);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  margin-bottom: 1rem;
}

.product-highlight .pname { font-weight: 700; font-size: 1.05rem; }
.product-highlight .pid   { color: var(--muted); font-size: .82rem; margin-top: 3px; }

/* ── SUMMARY SIDEBAR ──────────────────────────────────────────── */
.summary-title {
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--muted); margin-bottom: .9rem;
}

.summary-item {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 8px 0; font-size: .88rem;
  border-bottom: 1px solid var(--border);
}

.summary-item:last-of-type { border-bottom: none; }
.summary-label { color: var(--muted); padding-right: 8px; }
.summary-value { font-weight: 600; text-align: right; }

.summary-total {
  margin-top: .9rem; padding-top: .9rem;
  border-top: 2px solid var(--brand-500);
  display: flex; justify-content: space-between;
  font-weight: 700; font-size: 1.05rem;
}

.summary-total .amount { color: var(--brand-600); font-size: 1.2rem; }

.secure-badge {
  display: flex; align-items: center; gap: 7px;
  font-size: .76rem; color: var(--muted);
  margin-top: .9rem; padding-top: .9rem;
  border-top: 1px solid var(--border);
}

.secure-badge svg { color: var(--success); }

/* ── MOBILE SUMMARY DRAWER ────────────────────────────────────── */
.drawer-trigger {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,.10);
  padding: .85rem 1.25rem;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.drawer-trigger .dt-label { font-size: .82rem; color: var(--muted); font-weight: 500; }
.drawer-trigger .dt-toggle {
  display: flex; align-items: center; gap: 6px;
  font-size: .85rem; font-weight: 700; color: var(--brand-600);
}

.drawer-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 300;
  opacity: 0;
  transition: opacity .28s ease;
}
.drawer-overlay.visible { opacity: 1; }

.drawer-panel {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 400;
  background: var(--white);
  border-radius: 20px 20px 0 0;
  padding: 1.25rem 1.5rem 2rem;
  box-shadow: 0 -10px 40px rgba(0,0,0,.15);
  transform: translateY(100%);
  transition: transform .32s cubic-bezier(.32,.72,0,1);
  max-height: 80vh;
  overflow-y: auto;
}
.drawer-panel.open { transform: translateY(0); }

.drawer-handle {
  width: 40px; height: 4px;
  background: var(--border);
  border-radius: 4px;
  margin: 0 auto .9rem;
}

.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem;
}

.drawer-close {
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 1.4rem; line-height: 1; padding: 4px;
}

@media (max-width: 768px) { .drawer-trigger { display: flex; } }

/* ── ALERTS ───────────────────────────────────────────────────── */
.alert {
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  margin-bottom: 1rem;
  display: flex; gap: 9px; align-items: flex-start;
}

.alert-error   { background: var(--error-bg); border: 1px solid var(--error-bd); color: var(--error); }
.alert-success { background: var(--success-bg); border: 1px solid var(--success-bd); color: #065F46; }
.alert-info    { background: var(--brand-glow); border: 1px solid rgba(56,189,248,.35); color: #0369A1; }

/* ── REVIEW ROWS ──────────────────────────────────────────────── */
.review-row {
  display: flex; justify-content: space-between;
  padding: 9px 0; border-bottom: 1px solid var(--border);
  font-size: .9rem;
}
.review-row:last-child { border: none; }
.review-row .key { color: var(--muted); }
.review-row .val { font-weight: 600; }

/* ── ERROR MSG ────────────────────────────────────────────────── */
.error-msg {
  color: var(--error); font-size: .8rem;
  margin-top: 4px; display: flex; align-items: center; gap: 4px;
}

/* ── PAYMENT NOTICE ───────────────────────────────────────────── */
.payment-notice {
  background: var(--brand-glow);
  border: 1.5px solid rgba(56,189,248,.4);
  border-radius: var(--radius-sm);
  padding: .9rem 1rem;
  margin-bottom: 1rem;
  font-size: .85rem;
}

/* ── PREFS: REDUCED MOTION ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ── FOCUS VISIBILITY ─────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--brand-500);
  outline-offset: 2px;
}




.checkout-block {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.72);
  padding: 1rem;
  margin-top: 1rem;
}

.checkout-block-title {
  font-size: .92rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .85rem;
}

.checkout-help {
  color: var(--muted);
  font-size: .8rem;
  margin-top: 6px;
}
