/* ================================================================
   SAAPHONE — Réservation wizard (mobile-first)
   Council Codex 2026-05-09 : layout vertical mobile, gros boutons
   ================================================================ */

/* ----------------------------------------------------------------
   HERO
   ---------------------------------------------------------------- */
.resa-hero {
  background: linear-gradient(180deg, #FEF2F2 0%, #FFFFFF 100%);
  padding: 56px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.resa-hero h1 {
  font-size: clamp(1.7rem, 5vw, 2.6rem);
  line-height: 1.15;
  margin: 14px 0 12px;
  font-weight: 800;
  color: var(--dark, #0A1628);
}
.resa-hero h1 .gradient-text {
  background: linear-gradient(135deg, #DC2626, #991B1B);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.resa-hero-sub {
  font-size: 1rem;
  color: var(--text-light, #475569);
  max-width: 700px;
  margin: 0 auto 28px;
  line-height: 1.6;
  padding: 0 16px;
  font-weight: 500;
}
.resa-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 38, 38, 0.1);
  color: #DC2626;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.resa-hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  margin-top: 24px;
  padding: 0 16px;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text, #0A1628);
}
.trust-item i {
  color: var(--accent, #D4AF37);
  font-size: 0.95rem;
}
.trust-item strong {
  color: #DC2626;
  font-weight: 800;
}

/* ----------------------------------------------------------------
   WIZARD SECTION
   ---------------------------------------------------------------- */
.resa-wizard-section {
  padding: 24px 0 48px;
}

/* PIPS PROGRESS */
.wiz-pips {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 28px;
  padding: 0 8px;
  flex-wrap: wrap;
}
.pip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.pip .num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F1F5F9;
  color: #94A3B8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: all 0.3s;
}
.pip .label {
  font-size: 0.74rem;
  color: #94A3B8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.pip.current .num {
  background: linear-gradient(135deg, #DC2626, #991B1B);
  color: white;
  border-color: rgba(220, 38, 38, 0.25);
  box-shadow: 0 6px 18px rgba(220, 38, 38, 0.4);
  transform: scale(1.06);
}
.pip.current .label {
  color: #DC2626;
  font-weight: 800;
}
.pip.done .num {
  background: #10B981;
  color: white;
}
.pip.done .num::after {
  content: "✓";
}
.pip.done .num > * {
  display: none;
}
.pip-line {
  flex: 1;
  height: 2px;
  background: #E2E8F0;
  max-width: 36px;
  margin-top: -22px;
}

@media (max-width: 600px) {
  .wiz-pips { gap: 2px; }
  .pip .num { width: 30px; height: 30px; font-size: 0.85rem; }
  .pip .label { font-size: 0.65rem; }
  .pip-line { max-width: 16px; }
}

/* ----------------------------------------------------------------
   GRID (wizard + recap latéral)
   ---------------------------------------------------------------- */
.wiz-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
}
.wiz-page {
  background: white;
  border-radius: 18px;
  box-shadow: 0 12px 36px rgba(10, 22, 40, 0.07);
  padding: 32px 28px;
  border: 1px solid #F1F5F9;
  min-height: 480px;
  position: relative;
}
@media (max-width: 920px) {
  .wiz-grid { grid-template-columns: 1fr; }
  .wiz-page { padding: 22px 18px; min-height: 0; }
}

/* ----------------------------------------------------------------
   STEPS (cachées sauf .active)
   ---------------------------------------------------------------- */
.step {
  display: none;
  animation: fadeIn 0.25s ease-out;
}
.step.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.step-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--dark, #0A1628);
  line-height: 1.25;
}
.step-sub {
  margin: 0 0 22px;
  color: var(--text-light, #64748B);
  font-size: 0.96rem;
  line-height: 1.55;
}
.step-helper {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--text-light, #64748B);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  background: rgba(14, 165, 233, 0.06);
  padding: 12px 14px;
  border-radius: 10px;
  line-height: 1.5;
}
.step-helper i { color: #0EA5E9; flex-shrink: 0; margin-top: 2px; }

/* ----------------------------------------------------------------
   ÉTAPE 1 — BRAND BUTTONS + SEARCH
   ---------------------------------------------------------------- */
.brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.brand-btn {
  border: 1.5px solid #E2E8F0;
  background: white;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  color: var(--text, #0A1628);
  transition: all 0.18s;
}
.brand-btn:hover { border-color: #DC2626; color: #DC2626; }
.brand-btn.selected {
  background: linear-gradient(135deg, #DC2626, #991B1B);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.3);
}

.search-box {
  position: relative;
  margin-bottom: 14px;
}
.search-box .search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #94A3B8;
  font-size: 0.95rem;
}
.search-box input {
  width: 100%;
  padding: 14px 44px 14px 44px;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  background: #F8FAFC;
  color: var(--text, #0A1628);
}
.search-box input:focus {
  outline: none;
  border-color: #DC2626;
  background: white;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}
.search-box .clear-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: #E2E8F0;
  border: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  color: #64748B;
}
.search-box.has-value .clear-btn { display: flex; }
.search-box .clear-btn:hover { background: #DC2626; color: white; }

.models-list {
  max-height: 280px;
  overflow-y: auto;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  background: white;
}
.model-item {
  padding: 12px 16px;
  cursor: pointer;
  font-size: 0.92rem;
  border-bottom: 1px solid #F1F5F9;
  transition: all 0.15s;
}
.model-item:last-child { border-bottom: none; }
.model-item:hover { background: var(--bg-soft, #FEF2F2); color: #DC2626; font-weight: 600; }
.model-item.empty { color: var(--text-light, #94A3B8); font-style: italic; cursor: default; }
.model-item.empty:hover { background: white; color: var(--text-light, #94A3B8); font-weight: 400; }
.model-item mark {
  background: rgba(220, 38, 38, 0.15);
  color: #DC2626;
  font-weight: 800;
  padding: 0 2px;
  border-radius: 3px;
}

.model-list-head {
  padding: 10px 16px;
  font-size: 0.78rem;
  color: var(--text-light, #64748B);
  background: var(--bg-light, #F8FAFC);
  border-bottom: 1px solid #E2E8F0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ----------------------------------------------------------------
   ÉTAPE 2 — PANNE GRID
   ---------------------------------------------------------------- */
.panne-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}
.panne-card {
  background: white;
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  padding: 18px 16px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.panne-card:hover {
  border-color: #DC2626;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.12);
}
.panne-card.selected {
  border-color: #DC2626;
  background: linear-gradient(135deg, #FEF2F2 0%, #FFFFFF 60%);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.18);
}
.panne-card.selected::after {
  content: "✓";
  position: absolute;
  top: 12px;
  right: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #DC2626;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
}
.panne-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(220, 38, 38, 0.08);
  color: #DC2626;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.panne-card strong {
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--dark, #0A1628);
  line-height: 1.2;
}
.panne-desc {
  font-size: 0.78rem;
  color: var(--text-light, #64748B);
  line-height: 1.4;
}
.panne-price {
  margin-top: auto;
  padding-top: 8px;
  font-size: 0.92rem;
  font-weight: 800;
  color: #DC2626;
  border-top: 1px dashed #FECACA;
}
.panne-price.devis { color: var(--text-light, #94A3B8); font-weight: 600; font-style: italic; }
.panne-price.empty { color: #CBD5E1; }

/* Avertissement Face ID (apparaît si modèle concerné + panne caméra/écran) */
.faceid-warning {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: linear-gradient(135deg, #FEF3C7 0%, #FFFBEB 100%);
  border: 1.5px solid #F59E0B;
  border-radius: 12px;
  padding: 14px 18px;
  margin-top: 18px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #78350F;
}
.faceid-warning i {
  color: #F59E0B;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.faceid-warning span {
  flex: 1;
  font-weight: 500;
}

/* ----------------------------------------------------------------
   ÉTAPE 3 — SLOTS
   ---------------------------------------------------------------- */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}
.slot-btn {
  background: white;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: inherit;
  transition: all 0.18s;
  position: relative;
}
.slot-btn:hover {
  border-color: #DC2626;
  background: var(--bg-soft, #FEF2F2);
}
.slot-btn.selected {
  border-color: #DC2626;
  background: linear-gradient(135deg, #FEF2F2 0%, #FFFFFF 60%);
  box-shadow: 0 6px 18px rgba(220, 38, 38, 0.15);
}
.slot-btn.selected::after {
  content: "✓";
  position: absolute;
  top: 10px;
  right: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #DC2626;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
}
.slot-btn i { color: #DC2626; font-size: 0.95rem; align-self: flex-start; }
.slot-label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark, #0A1628);
}
.slot-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
  background: linear-gradient(135deg, #DC2626, #991B1B);
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 700;
  align-self: flex-start;
  margin-top: 2px;
}

.slots-other {
  background: var(--bg-light, #F8FAFC);
  border: 1px dashed #CBD5E1;
  border-radius: 12px;
  padding: 14px 16px;
}
.slots-other summary {
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-light, #475569);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.slots-other summary::-webkit-details-marker { display: none; }
.slots-other summary i { color: #DC2626; }
.slots-other input {
  margin-top: 12px;
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  background: white;
}
.slots-other input:focus {
  outline: none;
  border-color: #DC2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* ----------------------------------------------------------------
   ÉTAPE 4 — FORM COORDONNÉES
   ---------------------------------------------------------------- */
.resa-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.resa-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.resa-form label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text, #0A1628);
}
.resa-form label .optional {
  color: var(--text-light, #94A3B8);
  font-weight: 500;
  font-size: 0.78rem;
}
.resa-form input,
.resa-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  font-size: 0.96rem;
  font-family: inherit;
  background: white;
  color: var(--text, #0A1628);
  resize: vertical;
}
.resa-form input:focus,
.resa-form textarea:focus {
  outline: none;
  border-color: #DC2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* ----------------------------------------------------------------
   ÉTAPE 5 — CONFIRMATION
   ---------------------------------------------------------------- */
.resa-confirm-card {
  text-align: center;
}
.confirm-check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10B981, #059669);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
}
.resa-confirm-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 8px;
}
.resa-confirm-card > p {
  color: var(--text-light, #64748B);
  margin: 0 0 22px;
  font-size: 0.95rem;
}
.confirm-summary {
  background: var(--bg-light, #F8FAFC);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.confirm-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 8px;
  border-bottom: 1px dashed #E2E8F0;
}
.confirm-row:last-child { border-bottom: none; padding-bottom: 0; }
.confirm-lbl {
  font-size: 0.82rem;
  color: var(--text-light, #64748B);
  font-weight: 600;
  flex-shrink: 0;
}
.confirm-val {
  text-align: right;
  font-weight: 700;
  color: var(--dark, #0A1628);
  font-size: 0.92rem;
  word-break: break-word;
}

.confirm-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.btn-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 14px;
  text-decoration: none;
  text-align: left;
  border: 2px solid transparent;
  font-family: inherit;
  cursor: pointer;
  background: white;
  transition: all 0.2s;
}
.btn-cta i {
  font-size: 1.6rem;
  width: 32px;
  flex-shrink: 0;
}
.btn-cta strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark, #0A1628);
  margin-bottom: 2px;
}
.btn-cta small {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light, #64748B);
}
.btn-cta.whatsapp {
  background: linear-gradient(135deg, #25D366, #1DA851);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}
.btn-cta.whatsapp i,
.btn-cta.whatsapp strong,
.btn-cta.whatsapp small { color: white; }
.btn-cta.whatsapp small { opacity: 0.9; }
.btn-cta.whatsapp:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4); }
.btn-cta.sms {
  border-color: #E2E8F0;
}
.btn-cta.sms i { color: #0EA5E9; }
.btn-cta.sms:hover { border-color: #0EA5E9; transform: translateY(-2px); }
.btn-cta.email {
  border-color: #E2E8F0;
}
.btn-cta.email i { color: var(--accent, #D4AF37); }
.btn-cta.email:hover { border-color: var(--accent, #D4AF37); transform: translateY(-2px); }

.btn-link {
  background: none;
  border: none;
  color: var(--text-light, #94A3B8);
  font-size: 0.85rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  margin-top: 8px;
}
.btn-link:hover { color: #DC2626; }

/* ----------------------------------------------------------------
   RECAP LATÉRAL
   ---------------------------------------------------------------- */
.wiz-recap {
  background: white;
  border-radius: 18px;
  padding: 22px 24px;
  border: 1px solid #F1F5F9;
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.05);
  position: sticky;
  top: 90px;
}
.wiz-recap h3 {
  font-size: 0.98rem;
  font-weight: 800;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-light, #64748B);
}
.wiz-recap ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wiz-recap-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s;
  border: 1px solid transparent;
}
.wiz-recap-item:hover {
  background: var(--bg-light, #F8FAFC);
  border-color: #E2E8F0;
}
.wiz-recap-item.done {
  background: rgba(16, 185, 129, 0.05);
  border-color: rgba(16, 185, 129, 0.15);
}
.wiz-recap-item .lbl {
  font-size: 0.76rem;
  color: var(--text-light, #64748B);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.wiz-recap-item .value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark, #0A1628);
  line-height: 1.3;
}
.wiz-recap-item .value.empty { color: #CBD5E1; }

.recap-trust {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed #E2E8F0;
  display: flex;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-light, #64748B);
  line-height: 1.45;
}
.recap-trust i { color: #10B981; flex-shrink: 0; margin-top: 3px; }

@media (max-width: 920px) {
  .wiz-recap { position: static; }
}

/* ----------------------------------------------------------------
   NAV BUTTONS
   ---------------------------------------------------------------- */
.wiz-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 0;
}
.wiz-nav.hidden { display: none; }
.wiz-nav .btn {
  flex: 1;
  max-width: 240px;
  font-size: 1rem;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid transparent;
  font-family: inherit;
  transition: all 0.2s;
}
.wiz-nav .btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.wiz-nav .btn-outline {
  background: white;
  color: var(--text, #0A1628);
  border-color: #E2E8F0;
}
.wiz-nav .btn-outline:not(:disabled):hover {
  border-color: #DC2626;
  color: #DC2626;
}
.wiz-nav .btn-primary {
  background: linear-gradient(135deg, #DC2626, #991B1B);
  color: white;
  box-shadow: 0 6px 18px rgba(220, 38, 38, 0.3);
}
.wiz-nav .btn-primary:not(:disabled):hover {
  box-shadow: 0 8px 22px rgba(220, 38, 38, 0.4);
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .wiz-nav .btn { font-size: 0.9rem; padding: 12px 16px; }
}

/* ----------------------------------------------------------------
   STORE INFO
   ---------------------------------------------------------------- */
.resa-store-info {
  padding: 32px 0;
  background: var(--bg-light, #FAFAFA);
}
.store-info-card {
  background: white;
  border-radius: 18px;
  padding: 28px 32px;
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.05);
  max-width: 800px;
  margin: 0 auto;
  border-left: 4px solid #DC2626;
}
.store-info-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.store-info-header i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #DC2626, #991B1B);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.store-info-header h2 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.3;
}
.store-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.store-info-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.92rem;
  color: var(--text, #0A1628);
}
.store-info-list i {
  color: #DC2626;
  width: 20px;
  flex-shrink: 0;
}
.store-info-list a { color: #DC2626; font-weight: 700; text-decoration: none; }
.store-info-list a:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .store-info-card { padding: 22px 18px; }
  .store-info-header h2 { font-size: 1rem; }
}

/* ----------------------------------------------------------------
   TOAST
   ---------------------------------------------------------------- */
.toast {
  position: fixed;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--dark, #0A1628);
  color: white;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-out;
  z-index: 2000;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.toast i { color: var(--accent, #D4AF37); }
