/* SITI · Paso a paso (wizard) compartido.
 *
 * Una pregunta por pantalla, palabras simples, el botón siempre visible.
 * Nace del arranque guiado de Reservas (`vb-*` en reservas.css) y lo
 * generaliza para cualquier alta del portal: promociones, eventos,
 * lugares, vacantes, recompensas, datos del negocio.
 *
 * Prefijo `sw-` (steps wizard). No depende de los tokens del portal para
 * que se vea igual en cualquier portal (negocios, médico, vet, escuela).
 */

/* Todo el paso a paso mide con el borde incluido: sin esto, un campo al
 * 100% de ancho más su relleno se sale y aparece una barra horizontal.
 * Se declara aquí y no se hereda del portal para que funcione suelto. */
.sw-overlay, .sw-overlay *, .sw-overlay *::before, .sw-overlay *::after,
.sw-empty, .sw-empty * { box-sizing: border-box; }

/* ── Fondo ────────────────────────────────────────────────────────── */

.sw-overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;           /* sobre los modales normales (1000), bajo el recortador (1100) */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: radial-gradient(
    ellipse at center,
    rgba(15, 23, 42, .55) 0%,
    rgba(2, 6, 23, .82) 70%
  );
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  animation: swFade .22s cubic-bezier(.22, 1, .36, 1);
}
.sw-overlay.sw-hidden { display: none; }

@keyframes swFade { from { opacity: 0; } to { opacity: 1; } }

/* ── Tarjeta ──────────────────────────────────────────────────────── */

.sw-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 560px;
  max-height: min(86vh, 760px);
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf8 100%);
  border: 1px solid rgba(15, 23, 42, .06);
  border-radius: 24px;
  color: #0f172a;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .9) inset,
    0 30px 70px -20px rgba(15, 23, 42, .35),
    0 8px 24px -8px rgba(249, 115, 22, .18);
  animation: swIn .4s cubic-bezier(.22, 1.18, .36, 1);
}

@keyframes swIn {
  from { opacity: 0; transform: translateY(14px) scale(.96); }
  60%  { opacity: 1; }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Franja de acento arriba. */
.sw-card::before {
  content: "";
  position: absolute;
  top: 0; left: 20px; right: 20px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #F97316 0%, #FB923C 50%, #FDBA74 100%);
  opacity: .9;
  z-index: 2;
}

/* ── Encabezado ───────────────────────────────────────────────────── */

.sw-head { padding: 22px 26px 0; flex: none; }

.sw-head-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sw-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #94a3b8;
}

.sw-close {
  width: 32px; height: 32px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, .04);
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 999px;
  color: #64748b;
  font-size: 19px;
  line-height: 1;
  cursor: pointer;
  transition: background .15s, color .15s, transform .12s, border-color .15s;
}
.sw-close:hover {
  background: rgba(249, 115, 22, .1);
  border-color: rgba(249, 115, 22, .3);
  color: #ea580c;
}
.sw-close:active { transform: scale(.92); }

/* Barritas de avance. */
.sw-bars { display: flex; gap: 6px; margin: 16px 0 0; }
.sw-bars:empty { display: none; }   /* un solo paso: sin barra ni hueco */
.sw-bar {
  flex: 1;
  height: 5px;
  border-radius: 999px;
  background: #e9edf3;
  transition: background .25s ease;
}
.sw-bar.is-done { background: #fdba74; }
.sw-bar.is-active { background: linear-gradient(90deg, #F97316, #FB923C); }

/* ── Cuerpo ───────────────────────────────────────────────────────── */

.sw-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 22px 26px 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(148, 163, 184, .3) transparent;
}
.sw-body::-webkit-scrollbar { width: 8px; }
.sw-body::-webkit-scrollbar-track { background: transparent; }
.sw-body::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, .25);
  border-radius: 10px;
}
.sw-body::-webkit-scrollbar-thumb:hover { background: rgba(249, 115, 22, .45); }

.sw-title {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.4px;
  line-height: 1.25;
  color: #0f172a;
}
.sw-sub {
  margin: 7px 0 22px;
  font-size: 13.5px;
  line-height: 1.5;
  color: #64748b;
}
.sw-sub:last-child { margin-bottom: 0; }

/* Animación al cambiar de paso. */
.sw-step-anim { animation: swStepIn .26s cubic-bezier(.22, 1, .36, 1); }
@keyframes swStepIn {
  from { opacity: 0; transform: translateX(10px); }
  to   { opacity: 1; transform: translateX(0); }
}
.sw-step-anim-back { animation: swStepInBack .26s cubic-bezier(.22, 1, .36, 1); }
@keyframes swStepInBack {
  from { opacity: 0; transform: translateX(-10px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Campos ───────────────────────────────────────────────────────── */

.sw-field { margin-bottom: 18px; }
.sw-field:last-child { margin-bottom: 4px; }

.sw-label {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -.1px;
}
.sw-label .sw-opt {
  margin-left: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #94a3b8;
  letter-spacing: 0;
}

.sw-hint {
  margin: 7px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: #94a3b8;
}

.sw-input,
.sw-overlay textarea.sw-input,
.sw-overlay select.sw-input {
  width: 100%;
  padding: 13px 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 13px;
  font: inherit;
  font-size: 14.5px;
  color: #0f172a;
  transition: background .18s, border-color .18s, box-shadow .18s;
}
.sw-overlay textarea.sw-input {
  min-height: 92px;
  line-height: 1.5;
  resize: vertical;
}
.sw-input:hover:not(:focus) { background: #f1f5f9; border-color: #cbd5e1; }
.sw-input:focus {
  outline: none;
  background: #fff7ed;
  border-color: rgba(249, 115, 22, .6);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, .12);
}
.sw-input::placeholder { color: #a8b3c2; }
.sw-input.sw-invalid {
  border-color: #f87171;
  background: #fef2f2;
}

/* Contador de caracteres. */
.sw-counter {
  float: right;
  font-size: 11px;
  font-weight: 600;
  color: #cbd5e1;
  margin-top: 6px;
}

/* Renglón de dos columnas. */
.sw-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Prefijo (por ejemplo el signo de pesos). */
.sw-prefixed { position: relative; }
.sw-prefixed .sw-prefix {
  position: absolute;
  left: 15px; top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  font-size: 14.5px;
  color: #94a3b8;
  pointer-events: none;
}
.sw-prefixed .sw-input { padding-left: 32px; }

/* ── Píldoras ─────────────────────────────────────────────────────── */

.sw-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.sw-chip {
  padding: 9px 17px;
  border-radius: 999px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  color: #475569;
  font: inherit;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s, transform .12s;
}
.sw-chip:hover { border-color: rgba(249, 115, 22, .45); color: #0f172a; }
.sw-chip:active { transform: scale(.97); }
.sw-chip.is-active {
  background: linear-gradient(135deg, #F97316, #FB923C);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 16px -8px rgba(249, 115, 22, .7);
}

/* ── Tarjetas de elección ─────────────────────────────────────────── */

.sw-choice { display: grid; gap: 11px; }
.sw-choice.sw-cols2 { grid-template-columns: 1fr 1fr; }

.sw-choice-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  padding: 17px;
  text-align: left;
  background: #fff;
  border: 2px solid #e9edf3;
  border-radius: 16px;
  cursor: pointer;
  font: inherit;
  transition: border-color .16s, background .16s, transform .16s, box-shadow .16s;
}
.sw-choice-card:hover {
  border-color: rgba(249, 115, 22, .4);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -14px rgba(15, 23, 42, .35);
}
.sw-choice-card.is-active {
  border-color: #F97316;
  background: linear-gradient(135deg, rgba(249, 115, 22, .07), rgba(249, 115, 22, .03));
}
.sw-choice-ic { font-size: 26px; line-height: 1.1; }
.sw-choice-name { font-size: 15px; font-weight: 700; color: #0f172a; }
.sw-choice-desc { font-size: 12.5px; line-height: 1.45; color: #64748b; }

/* Etiqueta "lo que ya tienes guardado" dentro de una tarjeta de elección. */
.sw-choice-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(34, 197, 94, .13);
  color: #15803d;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  vertical-align: 1px;
}

/* Fila compacta (lista vertical con icono a la izquierda). */
.sw-choice.sw-rows .sw-choice-card {
  flex-direction: row;
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
}
.sw-choice.sw-rows .sw-choice-ic { font-size: 22px; }
.sw-choice.sw-rows .sw-choice-txt { display: flex; flex-direction: column; gap: 2px; }

/* ── Interruptor ──────────────────────────────────────────────────── */

.sw-toggle {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  cursor: pointer;
}
.sw-toggle-txt { flex: 1; }
.sw-toggle-name { display: block; font-size: 14px; font-weight: 600; color: #1e293b; }
.sw-toggle-desc { display: block; margin-top: 2px; font-size: 12px; color: #94a3b8; }

.sw-switch { position: relative; width: 46px; height: 27px; flex: none; }
.sw-switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.sw-switch-track {
  position: absolute;
  inset: 0;
  background: #dfe5ec;
  border-radius: 999px;
  transition: background .2s;
}
.sw-switch-track::before {
  content: "";
  position: absolute;
  width: 21px; height: 21px;
  left: 3px; top: 3px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(15, 23, 42, .25);
  transition: transform .2s cubic-bezier(.22, 1.18, .36, 1);
}
.sw-switch input:checked + .sw-switch-track {
  background: linear-gradient(135deg, #F97316, #FB923C);
}
.sw-switch input:checked + .sw-switch-track::before { transform: translateX(19px); }

/* ── Horario semanal ──────────────────────────────────────────────── */

.sw-hours-modes { margin-bottom: 12px; }

.sw-hours-grid { display: flex; flex-direction: column; gap: 8px; }

.sw-hours-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 11px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 13px;
}
.sw-hours-row.is-open { background: #fff; border-color: rgba(249, 115, 22, .3); }

.sw-hours-day {
  flex: none;
  width: 54px;
  padding: 9px 0;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  color: #94a3b8;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}
.sw-hours-day:hover { border-color: rgba(249, 115, 22, .45); color: #0f172a; }
.sw-hours-row.is-open .sw-hours-day {
  background: linear-gradient(135deg, #F97316, #FB923C);
  border-color: transparent;
  color: #fff;
}

.sw-hours-times { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 7px; }
.sw-hours-range { display: flex; align-items: center; gap: 7px; }
/* El input nativo o, si el selector compartido lo mejoró, su disparador. */
.sw-hours-range .sw-input,
.sw-hours-range .siti-tp { flex: 1; min-width: 0; }
.sw-hours-range .sw-input { padding: 9px 11px; font-size: 13.5px; }
.sw-hours-sep { flex: none; font-size: 12.5px; color: #94a3b8; }
.sw-hours-closed { padding: 9px 2px; font-size: 13px; font-style: italic; color: #a8b3c2; }

.sw-hours-x,
.sw-hours-add,
.sw-hours-week { border: none; background: none; font: inherit; cursor: pointer; }

.sw-hours-x {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 9px;
  font-size: 16px;
  color: #94a3b8;
}
.sw-hours-x:hover { background: #fef2f2; color: #ef4444; }

.sw-hours-add {
  align-self: flex-start;
  padding: 2px 0;
  font-size: 12px;
  font-weight: 600;
  color: #F97316;
}
.sw-hours-add:hover { text-decoration: underline; }

.sw-hours-week {
  margin-top: 11px;
  font-size: 12.5px;
  font-weight: 600;
  color: #64748b;
  text-decoration: underline;
}
.sw-hours-week:hover { color: #0f172a; }

/* ── Foto ─────────────────────────────────────────────────────────── */

.sw-photo { display: flex; flex-direction: column; gap: 10px; }

.sw-photo-drop {
  width: 100%;            /* un <button> se encoge al contenido si no se fija */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 30px 20px;
  background: linear-gradient(135deg, rgba(249, 115, 22, .045), rgba(249, 115, 22, .02)), #fff;
  border: 1.5px dashed rgba(249, 115, 22, .38);
  border-radius: 16px;
  cursor: pointer;
  text-align: center;
  transition: border-color .2s, background .2s, transform .15s, box-shadow .2s;
}
.sw-photo-drop:hover {
  border-color: rgba(249, 115, 22, .65);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -12px rgba(249, 115, 22, .4);
}
.sw-photo-drop.is-over {
  border-color: #F97316;
  background: linear-gradient(135deg, rgba(249, 115, 22, .12), rgba(249, 115, 22, .05)), #fff;
}
.sw-photo-drop-ic { font-size: 30px; line-height: 1; }
.sw-photo-drop-txt { font-size: 14px; font-weight: 700; color: #334155; }
.sw-photo-drop-sub { font-size: 12px; color: #94a3b8; }

.sw-photo-preview { position: relative; border-radius: 16px; overflow: hidden; background: #f1f5f9; }
.sw-photo-preview img { display: block; width: 100%; height: auto; }
.sw-photo-preview.sw-square img { aspect-ratio: 1 / 1; object-fit: cover; }
.sw-photo-actions { display: flex; gap: 8px; }

.sw-photo-busy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 26px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: #64748b;
}
.sw-spin {
  width: 17px; height: 17px;
  border: 2.5px solid #fed7aa;
  border-top-color: #F97316;
  border-radius: 50%;
  animation: swSpin .7s linear infinite;
}
@keyframes swSpin { to { transform: rotate(360deg); } }

/* ── Galería ──────────────────────────────────────────────────────── */

.sw-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(88px, 1fr)); gap: 9px; }
.sw-gallery-cell { position: relative; aspect-ratio: 1 / 1; border-radius: 12px; overflow: hidden; background: #f1f5f9; }
.sw-gallery-cell img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sw-gallery-del {
  position: absolute;
  top: 5px; right: 5px;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(15, 23, 42, .62);
  border: none;
  border-radius: 999px;
  color: #fff;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: background .15s, transform .12s;
}
.sw-gallery-del:hover { background: #dc2626; }
.sw-gallery-del:active { transform: scale(.9); }
.sw-gallery-add {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px;
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 1.5px dashed rgba(249, 115, 22, .38);
  border-radius: 12px;
  color: #94a3b8;
  font: inherit;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .16s, color .16s;
}
.sw-gallery-add:hover { border-color: rgba(249, 115, 22, .7); color: #ea580c; }
.sw-gallery-add span { font-size: 20px; line-height: 1; }

/* ── Nota informativa ─────────────────────────────────────────────── */

.sw-note {
  display: flex;
  gap: 11px;
  padding: 14px 16px;
  margin-bottom: 18px;
  background: #f8fafc;
  border: 1px solid #e9edf3;
  border-left: 3px solid #FB923C;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
  color: #475569;
}
.sw-note-ic { font-size: 16px; line-height: 1.3; flex: none; }
.sw-note b, .sw-note strong { color: #1e293b; }

/* ── Vista previa (así se verá en la app) ─────────────────────────── */

.sw-preview { margin-top: 4px; }
.sw-preview-cap {
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #b6c0cd;
}
.sw-preview-card {
  display: flex;
  gap: 12px;
  padding: 13px;
  background: #fff;
  border: 1px solid #e9edf3;
  border-radius: 16px;
  box-shadow: 0 8px 22px -16px rgba(15, 23, 42, .4);
}
.sw-preview-thumb {
  width: 62px; height: 62px;
  flex: none;
  border-radius: 12px;
  background: #f1f5f9 no-repeat center / cover;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: #cbd5e1;
}
.sw-preview-body { min-width: 0; flex: 1; }
.sw-preview-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sw-preview-meta { margin-top: 3px; font-size: 12px; color: #94a3b8; line-height: 1.4; }
.sw-preview-tag {
  display: inline-block;
  margin-top: 6px;
  padding: 3px 10px;
  background: linear-gradient(135deg, #F97316, #FB923C);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 800;
  color: #fff;
}

/* ── Resumen ──────────────────────────────────────────────────────── */

.sw-summary {
  background: #f8fafc;
  border: 1px solid #e9edf3;
  border-radius: 14px;
  overflow: hidden;
}
.sw-summary-row {
  display: flex;
  gap: 12px;
  padding: 12px 15px;
  border-bottom: 1px solid #edf1f6;
  font-size: 13.5px;
}
.sw-summary-row:last-child { border-bottom: none; }
.sw-summary-k { flex: none; width: 42%; color: #94a3b8; font-weight: 600; }
.sw-summary-v { flex: 1; color: #1e293b; font-weight: 600; word-break: break-word; }

/* ── Pie ──────────────────────────────────────────────────────────── */

.sw-foot {
  flex: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px 20px;
  background: linear-gradient(180deg, rgba(251, 250, 248, 0), #fbfaf8 55%);
  border-top: 1px solid rgba(15, 23, 42, .06);
}
.sw-foot-spacer { flex: 1; }

.sw-btn {
  padding: 13px 22px;
  border-radius: 13px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .14s, box-shadow .15s, filter .15s, background .15s;
}
.sw-btn:active { transform: scale(.98); }
.sw-btn:disabled { cursor: not-allowed; filter: grayscale(.45) opacity(.7); transform: none; }

.sw-btn-primary {
  min-width: 132px;
  background: linear-gradient(135deg, #F97316 0%, #FB923C 100%);
  color: #fff;
  box-shadow: 0 8px 22px -10px rgba(249, 115, 22, .6);
}
.sw-btn-primary:hover:not(:disabled) {
  filter: brightness(1.06);
  box-shadow: 0 14px 28px -10px rgba(249, 115, 22, .72);
}

.sw-btn-ghost { background: transparent; color: #64748b; padding-left: 4px; padding-right: 12px; }
.sw-btn-ghost:hover { color: #0f172a; }

.sw-btn-soft { background: #f1f5f9; border-color: #e2e8f0; color: #334155; }
.sw-btn-soft:hover { background: #e6ebf1; }
.sw-btn-sm { padding: 9px 15px; font-size: 13px; border-radius: 11px; }
.sw-btn-danger { color: #dc2626; }

.sw-skip {
  background: none;
  border: none;
  padding: 4px 2px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.sw-skip:hover { color: #64748b; }

/* ── Pantalla de cierre ───────────────────────────────────────────── */

.sw-done { text-align: center; padding: 34px 20px 26px; }
.sw-done-ic { font-size: 54px; line-height: 1; animation: swPop .45s cubic-bezier(.2, .8, .2, 1); }
.sw-done-title { margin: 14px 0 0; font-size: 21px; font-weight: 800; letter-spacing: -.3px; }
.sw-done-sub { margin: 9px 0 0; font-size: 14px; line-height: 1.5; color: #64748b; }
@keyframes swPop { from { transform: scale(.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ── Estado vacío con invitación (fuera del modal) ────────────────── */

.sw-empty {
  max-width: 460px;
  margin: 34px auto;
  padding: 40px 30px;
  text-align: center;
  background: var(--bg-card-solid, #fff);
  border: 1px solid var(--border, #e9edf3);
  border-radius: 20px;
  box-shadow: var(--shadow, 0 10px 30px -20px rgba(15, 23, 42, .3));
}
.sw-empty-ic { font-size: 48px; line-height: 1; margin-bottom: 12px; }
.sw-empty-title {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.35px;
  color: var(--text, #0f172a);
}
.sw-empty-sub {
  margin: 9px 0 22px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary, #64748b);
}
.sw-empty-cta {
  padding: 13px 28px;
  border: none;
  border-radius: 13px;
  background: linear-gradient(135deg, #F97316 0%, #FB923C 100%);
  font: inherit;
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 22px -10px rgba(249, 115, 22, .6);
  transition: transform .14s, filter .15s, box-shadow .15s;
}
.sw-empty-cta:hover { filter: brightness(1.06); transform: translateY(-1px); }
.sw-empty-cta:active { transform: scale(.98); }
.sw-empty-foot { margin-top: 14px; font-size: 12.5px; color: var(--text-muted, #94a3b8); }

/* ── Pantallas chicas y menos movimiento ──────────────────────────── */

@media (max-width: 560px) {
  .sw-overlay { padding: 0; align-items: stretch; }
  .sw-card { max-width: none; max-height: 100%; border-radius: 0; }
  .sw-head { padding: 18px 18px 0; }
  .sw-body { padding: 18px 18px 4px; }
  .sw-foot { padding: 14px 18px 18px; }
  .sw-title { font-size: 20px; }
  .sw-choice.sw-cols2 { grid-template-columns: 1fr; }
  .sw-row2 { grid-template-columns: 1fr; }
  .sw-btn-primary { min-width: 0; flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .sw-overlay, .sw-card, .sw-step-anim, .sw-step-anim-back, .sw-done-ic { animation: none; }
  .sw-choice-card:hover, .sw-photo-drop:hover, .sw-btn-primary:hover { transform: none; }
}
