/* ══════════════════════════════════════════════════════
   styles.css — Generador de Webs
   Interfaz de la HERRAMIENTA (consistente con el ecosistema
   Pasión por la Rítmica). Las plantillas que genera son
   completamente independientes de este sistema de diseño.
══════════════════════════════════════════════════════ */

:root {
  --gw-accent:     #7b67cb;
  --gw-accent-dk:  #6a57bb;
  --gw-accent-lt:  #ede9fb;

  --gw-bg:        #fbfaff;
  --gw-bg-alt:    #f3f1fb;
  --gw-bg-card:   #ffffff;
  --gw-bg-hover:  #f0eefa;
  --gw-border:    #e3e0f0;
  --gw-border-dk: #cfc9e8;

  --gw-text:        #211c33;
  --gw-text-muted:  #534b6e;
  --gw-text-label:  #8a82a8;

  --gw-header-h: 64px;
  --gw-radius:    14px;
  --gw-radius-sm: 9px;
  --gw-radius-lg: 22px;
  --gw-sh-sm: 0 1px 4px rgba(123,103,203,.08);
  --gw-sh-md: 0 6px 20px rgba(123,103,203,.14);
  --gw-sh-lg: 0 18px 50px rgba(33,28,51,.18);
}
.dark {
  --gw-bg:        #15121f;
  --gw-bg-alt:    #1c1829;
  --gw-bg-card:   #211c30;
  --gw-bg-hover:  #2a2438;
  --gw-border:    #342c47;
  --gw-border-dk: #423a59;
  --gw-text:        #f3f0fa;
  --gw-text-muted:  #c4bcdc;
  --gw-text-label:  #8e84ab;
  --gw-accent-lt:  rgba(123,103,203,.16);
}

* { box-sizing: border-box; }
body {
  background: var(--gw-bg); color: var(--gw-text);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  line-height: 1.6; margin: 0; transition: background .2s, color .2s;
}
.gw-container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { .gw-container { padding: 0 2rem; } }

/* ── Header ───────────────────────────────────────── */
.gw-header {
  position: sticky; top: 0; z-index: 200; height: var(--gw-header-h);
  background: var(--gw-bg-card); border-bottom: 1px solid var(--gw-border);
  backdrop-filter: blur(10px);
}
.gw-header-inner {
  max-width: 1100px; margin: 0 auto; height: 100%; padding: 0 1.25rem;
  display: flex; align-items: center; gap: 1rem;
}
@media (min-width: 768px) { .gw-header-inner { padding: 0 2rem; } }
.gw-logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.gw-logo-icon {
  width: 36px; height: 36px; border-radius: 10px; background: var(--gw-accent);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.gw-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.gw-logo-name { font-family: 'Fraunces', serif; font-size: 1.02rem; font-weight: 700; color: var(--gw-text); }
.gw-logo-tagline { font-size: .67rem; color: var(--gw-text-label); }
.gw-header-actions { display: flex; align-items: center; gap: .5rem; margin-left: auto; }
.gw-header-link { font-size: .8rem; padding: .4rem .85rem; display: none; }
@media (min-width: 640px) { .gw-header-link { display: inline-flex; } }
.gw-icon-btn {
  width: 36px; height: 36px; border-radius: 8px; border: none; background: transparent;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--gw-text-muted); transition: background .15s, color .15s;
}
.gw-icon-btn:hover { background: var(--gw-bg-hover); color: var(--gw-accent); }

/* ── Buttons ──────────────────────────────────────── */
.gw-btn-primary {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--gw-accent); color: white; text-decoration: none; border: none;
  border-radius: 50px; padding: .65rem 1.5rem; font-size: .85rem; font-weight: 700;
  cursor: pointer; transition: background .15s, transform .15s;
}
.gw-btn-primary:hover { background: var(--gw-accent-dk); transform: translateY(-1px); }
.gw-btn-primary:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.gw-btn-lg { padding: .9rem 2.2rem; font-size: .95rem; }
.gw-btn-outline {
  display: inline-flex; align-items: center; gap: .4rem;
  background: transparent; color: var(--gw-text-muted); text-decoration: none;
  border: 1.5px solid var(--gw-border-dk); border-radius: 50px; padding: .6rem 1.4rem;
  font-size: .85rem; font-weight: 600; cursor: pointer; transition: background .15s, color .15s;
}
.gw-btn-outline:hover { background: var(--gw-bg-hover); color: var(--gw-accent); }
.gw-btn-outline:disabled { opacity: .45; cursor: not-allowed; }
.gw-btn-text {
  background: none; border: none; color: var(--gw-text-label); font-size: .8rem;
  text-decoration: underline; cursor: pointer; margin-left: .75rem;
}

/* ── Intro hero ───────────────────────────────────── */
.gw-intro { padding: 3.5rem 1.25rem 2.5rem; text-align: center; background: linear-gradient(180deg, var(--gw-accent-lt), transparent); }
.gw-intro-inner { max-width: 640px; margin: 0 auto; }
.gw-eyebrow {
  font-family: 'JetBrains Mono', monospace; font-size: .72rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gw-accent-dk); display: inline-block; margin-bottom: 1rem;
}
.dark .gw-eyebrow { color: var(--gw-accent); }
.gw-intro-title {
  font-family: 'Fraunces', serif; font-weight: 300; font-size: clamp(1.9rem, 5vw, 2.8rem);
  line-height: 1.15; color: var(--gw-text); margin: 0 0 1rem;
}
.gw-intro-title em { font-style: italic; font-weight: 500; color: var(--gw-accent); }
.gw-intro-sub { font-size: .95rem; color: var(--gw-text-muted); line-height: 1.7; }

/* ── Verify step (Paso 0) ─────────────────────────── */
.verify-step { max-width: 560px; margin: 0 auto; padding: 1rem 0 4rem; text-align: center; }
.verify-icon { font-size: 2.2rem; margin-bottom: .5rem; }
.verify-title { font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 700; margin-bottom: .6rem; }
.verify-text { font-size: .88rem; color: var(--gw-text-muted); line-height: 1.7; margin-bottom: 1.75rem; }
.verify-search-box {
  display: flex; align-items: center; gap: .6rem;
  background: var(--gw-bg-card); border: 1.5px solid var(--gw-border-dk);
  border-radius: 50px; padding: .7rem 1.2rem; transition: border-color .15s;
}
.verify-search-box:focus-within { border-color: var(--gw-accent); }
.verify-search-box svg { color: var(--gw-text-label); flex-shrink: 0; }
.verify-search-box input { flex: 1; border: none; background: transparent; outline: none; font-size: .92rem; color: var(--gw-text); }
.verify-results { display: flex; flex-direction: column; gap: .5rem; margin-top: 1rem; text-align: left; }
.verify-result-item {
  display: flex; align-items: center; gap: .8rem; width: 100%;
  background: var(--gw-bg-card); border: 1.5px solid var(--gw-border); border-radius: var(--gw-radius);
  padding: .85rem 1.1rem; cursor: pointer; transition: border-color .15s, background .15s;
}
.verify-result-item:hover { border-color: var(--gw-accent); background: var(--gw-bg-hover); }
.verify-result-icon {
  width: 36px; height: 36px; border-radius: 10px; background: var(--gw-accent-lt);
  display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0;
  overflow: hidden;
}
.verify-result-logo-img { width: 100%; height: 100%; object-fit: cover; }
.verify-result-info { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.verify-result-name { font-size: .88rem; font-weight: 700; color: var(--gw-text); }
.verify-result-city { font-size: .76rem; color: var(--gw-text-label); }
.verify-result-item svg { color: var(--gw-text-label); flex-shrink: 0; }

.verify-not-found { margin-top: 1.5rem; }
.verify-nf-box {
  background: var(--gw-bg-card); border: 1.5px dashed var(--gw-border-dk);
  border-radius: var(--gw-radius-lg); padding: 2rem 1.75rem;
}
.verify-nf-icon { font-size: 2rem; display: block; margin-bottom: .5rem; }
.verify-nf-title { font-weight: 700; font-size: 1rem; margin-bottom: .4rem; }
.verify-nf-text { font-size: .85rem; color: var(--gw-text-muted); line-height: 1.7; margin-bottom: 1.25rem; }
.verify-nf-actions { display: flex; flex-direction: column; align-items: center; gap: .6rem; }

/* ── Wizard layout ────────────────────────────────── */
.wizard-layout { display: grid; grid-template-columns: 1fr; gap: 1.5rem; padding: 1.5rem 0 4rem; }
@media (min-width: 900px) { .wizard-layout { grid-template-columns: 260px 1fr; align-items: start; } }

.wizard-steps {
  display: flex; flex-direction: column; gap: .35rem;
}
@media (min-width: 900px) { .wizard-steps { position: sticky; top: calc(var(--gw-header-h) + 1.5rem); } }

.wizard-club-badge {
  display: flex; align-items: center; gap: .65rem;
  background: var(--gw-accent-lt); border-radius: var(--gw-radius); padding: .8rem 1rem; margin-bottom: .75rem;
}
.wizard-club-icon { font-size: 1.3rem; flex-shrink: 0; }
.wizard-club-name { font-size: .85rem; font-weight: 700; color: var(--gw-text); line-height: 1.3; }
.wizard-club-city { font-size: .73rem; color: var(--gw-text-label); }

.wizard-steps-list { display: flex; flex-direction: column; gap: .15rem; }
.wizard-step-item {
  display: flex; align-items: center; gap: .65rem; width: 100%; text-align: left;
  background: transparent; border: none; border-radius: var(--gw-radius-sm);
  padding: .65rem .8rem; cursor: pointer; transition: background .15s, color .15s;
  font-size: .82rem; color: var(--gw-text-muted);
}
.wizard-step-item:hover:not(:disabled) { background: var(--gw-bg-hover); }
.wizard-step-item.active { background: var(--gw-bg-card); color: var(--gw-text); font-weight: 700; box-shadow: var(--gw-sh-sm); }
.wizard-step-item.done { color: var(--gw-accent-dk); }
.wizard-step-item:disabled { opacity: .4; cursor: not-allowed; }
.wizard-step-num {
  width: 22px; height: 22px; border-radius: 50%; background: var(--gw-border);
  display: flex; align-items: center; justify-content: center; font-size: .68rem; font-weight: 700;
  flex-shrink: 0; color: var(--gw-text-muted);
}
.wizard-step-item.active .wizard-step-num { background: var(--gw-accent); color: white; }
.wizard-step-item.done .wizard-step-num { background: var(--gw-accent-lt); color: var(--gw-accent-dk); }
.wizard-autosave-hint {
  font-size: .72rem; color: var(--gw-text-label); text-align: center;
  margin-top: 1rem; padding-top: .75rem; border-top: 1px solid var(--gw-border); line-height: 1.5;
}

.wizard-main { min-width: 0; }
.wizard-body {
  background: var(--gw-bg-card); border: 1px solid var(--gw-border);
  border-radius: var(--gw-radius-lg); padding: 1.75rem 1.5rem; box-shadow: var(--gw-sh-sm);
}
@media (min-width: 640px) { .wizard-body { padding: 2.25rem 2.25rem; } }
.wizard-footer {
  display: flex; align-items: center; gap: 1rem; margin-top: 1.25rem;
}
.wizard-footer-progress { font-size: .78rem; color: var(--gw-text-label); margin-left: auto; }

.step-title { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 700; margin: 0 0 .4rem; }
.step-hint { font-size: .85rem; color: var(--gw-text-muted); margin: 0 0 1.5rem; line-height: 1.6; }

/* ── Form fields ──────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: .35rem; }
.form-field-full { grid-column: 1 / -1; }
.form-field label { font-size: .76rem; font-weight: 700; color: var(--gw-text-muted); }
.form-optional, .form-hint-inline { font-weight: 400; color: var(--gw-text-label); }
.form-field input, .form-field textarea {
  padding: .65rem .85rem; border-radius: var(--gw-radius-sm); border: 1.5px solid var(--gw-border);
  background: var(--gw-bg-alt); color: var(--gw-text); font-size: .88rem; font-family: inherit; outline: none;
  transition: border-color .15s;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--gw-accent); }
.form-field textarea { resize: vertical; }
.form-char-count { font-size: .7rem; color: var(--gw-text-label); text-align: right; }

/* ── Repeatable rows (horarios) ───────────────────── */
.repeat-list { display: flex; flex-direction: column; gap: .6rem; }
.repeat-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: .6rem; align-items: center;
}
@media (max-width: 640px) { .repeat-row { grid-template-columns: 1fr; } }
.repeat-row input {
  padding: .6rem .8rem; border-radius: var(--gw-radius-sm); border: 1.5px solid var(--gw-border);
  background: var(--gw-bg-alt); color: var(--gw-text); font-size: .85rem; outline: none;
}
.repeat-row input:focus { border-color: var(--gw-accent); }
.repeat-remove-btn {
  width: 34px; height: 34px; border-radius: 8px; border: none; background: var(--gw-bg-hover);
  color: var(--gw-text-label); cursor: pointer; font-size: .9rem; flex-shrink: 0;
}
.repeat-remove-btn:hover:not(:disabled) { background: #fde2e2; color: #c0392b; }
.repeat-remove-btn:disabled { opacity: .3; cursor: not-allowed; }

/* ── Equipo ───────────────────────────────────────── */
.equipo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; }
.equipo-card {
  background: var(--gw-bg-alt); border: 1.5px solid var(--gw-border); border-radius: var(--gw-radius);
  padding: 1rem; display: flex; flex-direction: column; gap: .55rem;
}
.equipo-photo-wrap { position: relative; align-self: center; }
.equipo-photo, .equipo-photo-placeholder {
  width: 84px; height: 84px; border-radius: 50%; object-fit: cover;
}
.equipo-photo-placeholder {
  background: var(--gw-bg-hover); display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
}
.equipo-photo-upload {
  position: absolute; bottom: -2px; right: -2px; width: 28px; height: 28px; border-radius: 50%;
  background: var(--gw-accent); display: flex; align-items: center; justify-content: center;
  font-size: .8rem; cursor: pointer; border: 2px solid var(--gw-bg-card);
}
.equipo-card input {
  padding: .5rem .7rem; border-radius: var(--gw-radius-sm); border: 1.5px solid var(--gw-border);
  background: var(--gw-bg-card); color: var(--gw-text); font-size: .82rem; outline: none; text-align: center;
}
.equipo-card input:focus { border-color: var(--gw-accent); }
.equipo-remove-btn {
  background: none; border: none; color: var(--gw-text-label); font-size: .75rem; cursor: pointer;
  margin-top: .2rem;
}
.equipo-remove-btn:hover { color: #c0392b; }

/* ── Galería ──────────────────────────────────────── */
.galeria-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: .75rem; }
.galeria-item { position: relative; border-radius: var(--gw-radius-sm); overflow: hidden; aspect-ratio: 1; }
.galeria-item img { width: 100%; height: 100%; object-fit: cover; }
.galeria-remove-btn {
  position: absolute; top: 6px; right: 6px; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(0,0,0,.6); color: white; border: none; cursor: pointer; font-size: .75rem;
}
.galeria-upload-btn {
  aspect-ratio: 1; border: 2px dashed var(--gw-border-dk); border-radius: var(--gw-radius-sm);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  font-size: .8rem; color: var(--gw-text-label); text-align: center; padding: .5rem;
  transition: border-color .15s, color .15s;
}
.galeria-upload-btn:hover { border-color: var(--gw-accent); color: var(--gw-accent); }

/* ── Logo y color ─────────────────────────────────── */
.step-divider { border: none; border-top: 1px solid var(--gw-border); margin: 1.75rem 0; }
.logo-upload-row { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 0; }
.logo-preview {
  width: 100px; height: 100px; border-radius: var(--gw-radius); background: var(--gw-bg-alt);
  border: 1.5px dashed var(--gw-border-dk); display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.logo-preview img { width: 100%; height: 100%; object-fit: contain; }
.logo-preview span { font-size: .72rem; color: var(--gw-text-label); text-align: center; padding: 0 .3rem; }

.hero-upload-section { margin-top: .25rem; }
.hero-upload-row { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-top: .75rem; }
.hero-preview {
  width: 160px; height: 100px; border-radius: var(--gw-radius); background: var(--gw-bg-alt);
  border: 1.5px dashed var(--gw-border-dk); display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.hero-preview img { width: 100%; height: 100%; object-fit: cover; }
.hero-preview span { font-size: .68rem; color: var(--gw-text-label); text-align: center; padding: 0 .5rem; }

.color-picker-section { margin-top: 0; }
.color-swatches { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.color-swatch {
  width: 38px; height: 38px; border-radius: 50%; border: 3px solid transparent; cursor: pointer;
  transition: transform .15s, border-color .15s;
}
.color-swatch:hover { transform: scale(1.1); }
.color-swatch.active { border-color: var(--gw-text); }
#color-custom { width: 38px; height: 38px; border-radius: 50%; border: none; cursor: pointer; padding: 0; }

/* ── Template picker ──────────────────────────────── */
.template-picker { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin-bottom: 1.75rem; }
.template-card {
  background: var(--gw-bg-alt); border: 2px solid var(--gw-border); border-radius: var(--gw-radius);
  overflow: hidden; cursor: pointer; text-align: left; padding: 0; transition: border-color .15s, transform .15s;
}
.template-card:hover { transform: translateY(-2px); }
.template-card.active { border-color: var(--gw-accent); }
.template-card-swatch { height: 80px; }
.template-card-body { padding: .85rem 1rem; display: flex; flex-direction: column; gap: .2rem; }
.template-card-name { font-family: 'Fraunces', serif; font-weight: 700; font-size: .95rem; color: var(--gw-text); }
.template-card-desc { font-size: .75rem; color: var(--gw-text-label); line-height: 1.4; }

.template-fs-reopen-btn { display: inline-flex; align-items: center; gap: .4rem; }

/* ── Vista previa a pantalla completa ─────────────── */
.tpl-fullscreen {
  position: fixed; inset: 0; z-index: 500;
  background: var(--gw-bg); display: flex; flex-direction: column;
}
.tpl-fs-topbar {
  display: flex; align-items: center; gap: .75rem; padding: .65rem 1rem;
  border-bottom: 1px solid var(--gw-border); background: var(--gw-bg-card); flex-shrink: 0;
}
.tpl-fs-close {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 10px; border: none;
  background: var(--gw-bg-hover); color: var(--gw-text-muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background .15s, color .15s;
}
.tpl-fs-close:hover { background: var(--gw-accent-lt); color: var(--gw-accent); }
.tpl-fs-pills {
  display: flex; gap: .4rem; overflow-x: auto; flex: 1; padding: 2px 2px 4px;
  scrollbar-width: thin;
}
.tpl-fs-pill {
  flex-shrink: 0; white-space: nowrap; border: 1.5px solid var(--gw-border); background: var(--gw-bg-alt);
  color: var(--gw-text-muted); border-radius: 50px; padding: .5rem 1.1rem; font-size: .8rem; font-weight: 700;
  cursor: pointer; transition: background .15s, color .15s, border-color .15s;
}
.tpl-fs-pill:hover { background: var(--gw-bg-hover); }
.tpl-fs-pill.active { background: var(--gw-accent); border-color: var(--gw-accent); color: white; }
.tpl-fs-zoom { display: flex; gap: .3rem; flex-shrink: 0; }
.tpl-fs-zoom-btn {
  background: transparent; border: 1px solid var(--gw-border-dk); border-radius: 7px; padding: .4rem .7rem;
  font-size: .78rem; cursor: pointer; color: var(--gw-text-muted);
}
.tpl-fs-zoom-btn.active { background: var(--gw-accent); border-color: var(--gw-accent); color: white; }
.tpl-fs-body { flex: 1; overflow-y: auto; background: #e9e7f3; display: flex; justify-content: center; padding: 1.5rem; }
.dark .tpl-fs-body { background: #0d0a16; }
.tpl-fs-iframe {
  width: 100%; height: 100%; min-height: 600px; border: none; background: white;
  border-radius: 8px; box-shadow: var(--gw-sh-lg); transition: width .25s;
}
@media (max-width: 640px) {
  .tpl-fs-topbar { flex-wrap: wrap; }
  .tpl-fs-pills { order: 3; width: 100%; }
  .tpl-fs-body { padding: .75rem; }
}

/* ── Descarga ─────────────────────────────────────── */
.descarga-summary {
  background: var(--gw-bg-alt); border-radius: var(--gw-radius); padding: 1.25rem 1.5rem; margin-bottom: 1.5rem;
}
.descarga-summary-row {
  display: flex; justify-content: space-between; padding: .5rem 0; font-size: .85rem;
  border-bottom: 1px solid var(--gw-border);
}
.descarga-summary-row:last-child { border-bottom: none; }
.descarga-summary-row span { color: var(--gw-text-label); }
.descarga-steps { margin-top: 2rem; }
.descarga-steps h3 { font-family: 'Fraunces', serif; font-size: 1.05rem; margin-bottom: .75rem; }
.descarga-steps ol { padding-left: 1.3rem; display: flex; flex-direction: column; gap: .5rem; font-size: .85rem; color: var(--gw-text-muted); }
.descarga-steps code { background: var(--gw-bg-alt); padding: .1em .4em; border-radius: 4px; font-family: 'JetBrains Mono', monospace; font-size: .85em; }

/* ── Footer ───────────────────────────────────────── */
.gw-footer { border-top: 1px solid var(--gw-border); background: var(--gw-bg-alt); padding: 1.75rem 0; margin-top: 2rem; }
.gw-footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .8rem; color: var(--gw-text-label); }
.gw-footer-nav { display: flex; gap: 1.25rem; }
.gw-footer-nav a { color: var(--gw-text-muted); text-decoration: none; }
.gw-footer-nav a:hover { color: var(--gw-accent); }

/* ── Toast ────────────────────────────────────────── */
#toast-container { position: fixed; bottom: 1.5rem; right: 1rem; z-index: 9999; display: flex; flex-direction: column; gap: .4rem; pointer-events: none; }
.toast {
  display: flex; align-items: center; gap: .5rem; padding: .6rem 1rem; border-radius: 10px;
  font-size: .82rem; font-weight: 500; max-width: 320px; opacity: 0; transform: translateX(16px);
  transition: opacity .25s, transform .25s; box-shadow: var(--gw-sh-md); pointer-events: auto;
}
.toast.show { opacity: 1; transform: translateX(0); }
.toast-success { background: #e8f5e0; border: 1.5px solid #8bc06a; color: #2a5a10; }
.toast-error   { background: #fff0f0; border: 1.5px solid #f0b0b0; color: #c0392b; }
.toast-warning { background: #fdf6e3; border: 1.5px solid #e8c87a; color: #8a6200; }
.toast-info    { background: var(--gw-accent-lt); border: 1.5px solid rgba(123,103,203,.4); color: var(--gw-accent-dk); }
.dark .toast-success { background: #1a3010; border-color: #4a7a30; color: #8adf5a; }
.dark .toast-error   { background: #3a0d12; border-color: #7a2020; color: #f0a0a0; }
.dark .toast-warning { background: #3a2a04; border-color: #8a6a20; color: #e8c87a; }
