/* ═══════════════════════════════════════════════════════════════════
   COTIZADOR DE FOTOS — Estética cálida / diferenciada
   ═══════════════════════════════════════════════════════════════════ */

:root {
  --negro:   #000000;
  --blanco:  #ffffff;
  --gris-bg: #f4f4f2;
  --gris-200:#e8e8e5;
  --gris-300:#d0d0cc;
  --gris-500:rgba(0,0,0,0.45);
  --gris-700:rgba(0,0,0,0.65);
  --sup-neg: #0d0d0d;
  --sup-neg2:#1a1a1a;
  --acento:  #f1c232;
  --acento-d:#d4a820;
  --verde:   #1a9e5c;
  --rojo:    #c0392b;
  --borde-l: rgba(0,0,0,0.10);
  --borde-n: rgba(255,255,255,0.08);
  --radius:     12px;
  --radius-sm:  8px;
  --radius-lg:  16px;
  --shadow:     0 2px 16px rgba(0,0,0,0.08);
  --trans:      180ms ease;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }

body {
  background: var(--gris-bg);
  color: var(--negro);
  font-family: 'Noto Sans', ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* ── Header ─────────────────────────────────────────────────────── */
.fot-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--borde-n);
}
.fot-header-inner {
  max-width: 860px; margin: 0 auto;
  padding: 0 28px; height: 56px;
  display: flex; align-items: center; justify-content: space-between;
}
.fot-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.fot-brand-logo {
  height: 32px; width: auto; display: block;
}
.fot-brand-name {
  font-size: 12px; font-weight: 800; letter-spacing: 0.10em;
  text-transform: uppercase; color: #ffffff;
}
.fot-header-nav {
  display: flex; align-items: center; gap: 20px;
}
.fot-header-link {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.50);
  text-decoration: none;
  transition: color var(--trans);
}
.fot-header-link:hover { color: #ffffff; }

/* ── Main layout ─────────────────────────────────────────────────── */
.fot-main {
  max-width: 860px; margin: 0 auto;
  padding: 40px 28px 80px;
  display: flex; flex-direction: column; gap: 24px;
}

/* ── Step wrapper ────────────────────────────────────────────────── */
.fot-step { display: flex; flex-direction: column; gap: 20px; }

/* ── Banner de identificación ───────────────────────────────────── */
.fot-banner {
  background: linear-gradient(135deg, var(--acento) 0%, var(--acento-d) 100%);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(241, 194, 50, 0.25);
}
.fot-banner-icon {
  font-size: 32px;
  line-height: 1;
}
.fot-banner-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fot-banner-text strong {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.fot-banner-text span {
  font-size: 13px;
  opacity: 0.90;
}

/* ── Tipos de papel ────────────────────────────────────────────── */
.fot-paper-types {
  background: var(--blanco);
  border: 1px solid var(--borde-l);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.fot-paper-types-title {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--negro);
  letter-spacing: -0.01em;
}
.fot-paper-types-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) {
  .fot-paper-types-grid {
    grid-template-columns: 1fr;
  }
}
.fot-paper-type-card {
  padding: 20px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--borde-l);
  transition: all var(--trans);
}
.fot-paper-type-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.fot-paper-type-glossy {
  background: var(--blanco);
  border-color: rgba(241, 194, 50, 0.2);
}
.fot-paper-type-microporoso {
  background: var(--gris-200);
  border-color: var(--gris-300);
}
.fot-paper-type-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.fot-paper-type-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--negro);
  letter-spacing: 0.02em;
}
.fot-paper-type-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.fot-paper-type-glossy .fot-paper-type-tag {
  background: var(--acento);
  color: #ffffff;
}
.fot-paper-type-microporoso .fot-paper-type-tag {
  background: var(--gris-300);
  color: var(--negro);
}
.fot-paper-type-desc {
  font-size: 13px;
  color: var(--gris-500);
  line-height: 1.6;
  margin: 0;
}

/* ── Upload intro (inside drop zone) ────────────────────────────── */
.fot-drop-intro {
  width: 100%; text-align: left;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--borde-l);
  margin-bottom: 8px;
}
.fot-upload-title {
  font-size: 26px; font-weight: 800; letter-spacing: -0.02em;
  margin: 0 0 6px; line-height: 1.1; color: var(--negro);
}
.fot-upload-sub {
  font-size: 14px; color: var(--gris-500); margin: 0; line-height: 1.55;
}

/* ── Drop zone ───────────────────────────────────────────────────── */
.fot-drop {
  border: 2px dashed var(--gris-300);
  border-radius: var(--radius-lg);
  background: var(--blanco);
  padding: 48px 32px;
  text-align: center;
  transition: all var(--trans);
  cursor: pointer;
}
.fot-drop--loading {
  opacity: 0.6;
  pointer-events: none;
}
.fot-drop.drag-over {
  border-color: var(--acento);
  background: rgba(224, 123, 57, 0.05);
}
.fot-drop-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.fot-drop-icon {
  color: var(--acento);
  opacity: 0.7;
}
.fot-drop-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--negro);
  margin: 0;
}
.fot-drop-hint {
  font-size: 13px;
  color: var(--gris-500);
  margin: 0;
}

/* ── Buttons ─────────────────────────────────────────────────────── */
.fot-btn-outline {
  padding: 12px 24px;
  border-radius: 999px;
  border: 1.5px solid var(--gris-300);
  background: transparent;
  color: var(--negro);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--trans);
}
.fot-btn-outline:hover:not(:disabled) {
  border-color: var(--acento);
  color: var(--acento);
}
.fot-btn-outline:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.fot-btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}
.fot-btn-primary {
  width: 100%;
  padding: 16px 24px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--acento) 0%, var(--acento-d) 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: all var(--trans);
  box-shadow: 0 4px 16px rgba(224, 123, 57, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.fot-btn-primary:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(224, 123, 57, 0.40);
}
.fot-btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.fot-btn-full {
  width: 100%;
}

/* ── Section header ──────────────────────────────────────────────── */
.fot-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.fot-section-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--negro);
}

/* ── File row ─────────────────────────────────────────────────────── */
.fot-file-row {
  background: var(--blanco);
  border: 1px solid var(--borde-l);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--trans);
}
.fot-file-row.done {
  border-color: var(--verde);
}
.fot-file-row.uploading {
  opacity: 0.7;
}

.fot-file-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--borde-l);
  background: rgba(224, 123, 57, 0.03);
}
.fot-file-name-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.fot-file-ico {
  color: var(--acento);
  flex-shrink: 0;
}
.fot-file-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--negro);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fot-file-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--borde-l);
  color: var(--gris-500);
  flex-shrink: 0;
}
.fot-file-badge.badge-pending { background: var(--borde-l); color: var(--gris-500); }
.fot-file-badge.badge-uploading { background: var(--acento); color: #ffffff; }
.fot-file-badge.badge-done { background: var(--verde); color: #ffffff; }
.fot-file-remove {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.05);
  color: var(--gris-500);
  font-size: 14px;
  cursor: pointer;
  transition: all var(--trans);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fot-file-remove:hover {
  background: var(--rojo);
  color: #ffffff;
}

/* ── Progress bar ────────────────────────────────────────────────── */
.fot-progress-wrap {
  padding: 4px 20px;
  background: rgba(0,0,0,0.02);
}
.fot-progress-bar {
  height: 4px;
  background: var(--acento);
  border-radius: 2px;
  transition: width 0.2s ease;
  width: 0%;
}

/* ── File body ──────────────────────────────────────────────────── */
.fot-file-body {
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 20px;
  padding: 20px;
}
@media (max-width: 640px) {
  .fot-file-body {
    grid-template-columns: 1fr;
  }
}

.fot-file-opts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── Option groups ──────────────────────────────────────────────── */
.fot-opt-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fot-opt-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--gris-500);
  min-width: 70px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.fot-opt-num {
  flex: 1;
}

/* ── Pills ───────────────────────────────────────────────────────── */
.fot-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.fot-pill {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.fot-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.fot-pill span {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--borde-l);
  background: var(--blanco);
  color: var(--negro);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--trans);
}
.fot-pill input:checked + span {
  border-color: var(--acento);
  background: var(--acento);
  color: #ffffff;
}
.fot-pill.pill-disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* ── Number inputs ───────────────────────────────────────────────── */
.fot-num-input {
  width: 80px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1.5px solid var(--borde-l);
  background: var(--blanco);
  color: var(--negro);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: border-color var(--trans);
}
.fot-num-input:focus {
  outline: none;
  border-color: var(--acento);
}

/* ── Thumbnail ──────────────────────────────────────────────────── */
.fot-file-preview-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.fot-thumb-wrap {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: rgba(0,0,0,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--borde-l);
}
.fot-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: fotThumbLoad 0.6s ease-out;
}
@keyframes fotThumbLoad {
  0% {
    transform: scale(0.8) rotate(-5deg);
    opacity: 0;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}
.fot-thumb-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gris-500);
  font-size: 12px;
}
.fot-thumb-placeholder svg {
  opacity: 0.4;
}

/* ── File foot ───────────────────────────────────────────────────── */
.fot-file-foot {
  padding: 12px 20px;
  border-top: 1px solid var(--borde-l);
  background: rgba(0,0,0,0.02);
  text-align: right;
}
.fot-file-subtotal {
  font-size: 18px;
  font-weight: 800;
  color: var(--acento);
}

/* ── Summary card ───────────────────────────────────────────────── */
.fot-summary-card {
  background: var(--blanco);
  border: 1px solid var(--borde-l);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.fot-summary-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--borde-l);
  margin-bottom: 20px;
}
.fot-summary-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: center;
}
.fot-summary-row-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--negro);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fot-summary-row-detail {
  font-size: 13px;
  color: var(--gris-500);
}
.fot-summary-row-amount {
  font-size: 15px;
  font-weight: 700;
  color: var(--negro);
}
.fot-summary-row-urgente .fot-summary-row-name {
  color: var(--acento);
}
.fot-summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 800;
}
.fot-total-amount {
  font-size: 28px;
  color: var(--acento);
  transition: transform 0.3s ease;
}
.fot-total-amount.total-pulse {
  transform: scale(1.05);
}

/* ── Contact card ───────────────────────────────────────────────── */
.fot-contact-card {
  background: var(--blanco);
  border: 1px solid var(--borde-l);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.fot-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 640px) {
  .fot-field-row {
    grid-template-columns: 1fr;
  }
}
.fot-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fot-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--gris-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.fot-optional {
  font-weight: 400;
  opacity: 0.6;
  text-transform: none;
}
.fot-input {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--borde-l);
  background: var(--blanco);
  color: var(--negro);
  font-size: 14px;
  font-family: inherit;
  transition: border-color var(--trans);
}
.fot-input:focus {
  outline: none;
  border-color: var(--acento);
}
.fot-input.input-error {
  border-color: var(--rojo);
}
.fot-textarea {
  resize: vertical;
  min-height: 80px;
}

/* ── Payment pills ──────────────────────────────────────────────── */
.fot-pago-pills {
  margin-top: 8px;
}
.fot-pago-info {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fot-pago-retiro {
  background: rgba(45, 122, 78, 0.1);
  color: var(--verde);
}
.fot-pago-transferencia {
  background: rgba(241, 194, 50, 0.1);
  color: var(--acento-d);
}

/* ── Urgente toggle ─────────────────────────────────────────────── */
.fot-urgente-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--borde-l);
  background: rgba(224, 123, 57, 0.05);
  cursor: pointer;
  transition: all var(--trans);
  margin-top: 16px;
}
.fot-urgente-toggle:hover {
  border-color: var(--acento);
}
.fot-urgente-check {
  width: 24px; height: 24px;
  border-radius: 6px;
  border: 2px solid var(--borde-l);
  background: var(--blanco);
  transition: all var(--trans);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fot-urgente-toggle input:checked + .fot-urgente-check {
  background: var(--acento);
  border-color: var(--acento);
}
.fot-urgente-toggle input:checked + .fot-urgente-check::after {
  content: '✓';
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}
.fot-urgente-toggle input {
  display: none;
}
.fot-urgente-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fot-urgente-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--negro);
}
.fot-urgente-desc {
  font-size: 12px;
  color: var(--gris-500);
}
.fot-urgente-tag {
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--acento);
  color: #ffffff;
}

/* ── Submit note ───────────────────────────────────────────────── */
.fot-submit-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--gris-500);
  text-align: center;
}
.fot-submit-note.is-error {
  color: var(--rojo);
}
.fot-privacy-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--gris-500);
  text-align: center;
}

/* ── Spinner ───────────────────────────────────────────────────── */
.fot-spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: fotSpin 0.8s linear infinite;
}
@keyframes fotSpin {
  to { transform: rotate(360deg); }
}

/* ── Success card ───────────────────────────────────────────────── */
.fot-success-card {
  background: var(--blanco);
  border: 1px solid var(--borde-l);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  text-align: center;
}
.fot-success-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}
.fot-success-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--verde);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fot-success-head {
  font-size: 22px;
  font-weight: 800;
  margin: 0;
  color: var(--negro);
}
.fot-order-id-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gris-500);
}
.fot-order-id-label {
  font-weight: 600;
}
.fot-order-id {
  font-family: monospace;
  font-weight: 700;
  color: var(--acento);
}
.fot-success-notice {
  background: rgba(45, 122, 78, 0.1);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fot-success-notice strong {
  color: var(--verde);
  font-size: 14px;
}
.fot-success-notice span {
  font-size: 13px;
  color: var(--gris-500);
}

/* ── WhatsApp button ────────────────────────────────────────────── */
.fot-btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 999px;
  border: none;
  background: #25d366;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: all var(--trans);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.30);
}
.fot-btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.40);
}
.fot-btn-wa--big {
  width: 100%;
  font-size: 18px;
  padding: 20px 32px;
}
.fot-wa-confirm {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  padding: 16px;
  background: rgba(45, 122, 78, 0.1);
  border-radius: var(--radius-sm);
  color: var(--verde);
  font-size: 14px;
  font-weight: 600;
}
.fot-success-expiry {
  margin-top: 24px;
  font-size: 13px;
  color: var(--gris-500);
}

/* ── WhatsApp preview ───────────────────────────────────────────── */
.fot-wa-preview-wrap {
  margin-top: 20px;
}
.fot-wa-preview-toggle {
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--acento);
  user-select: none;
  padding: 8px 0;
}
.fot-wa-preview {
  background: rgba(0,0,0,0.03);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--gris-500);
  white-space: pre-wrap;
  word-break: break-word;
  text-align: left;
  max-height: 300px;
  overflow-y: auto;
}

/* ── Modal ─────────────────────────────────────────────────────── */
.fot-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.fot-modal {
  background: var(--blanco);
  border: 1px solid var(--borde-l);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  max-width: 420px;
  width: 100%;
  text-align: center;
}
.fot-modal-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 800;
}
.fot-modal-icon {
  font-size: 24px;
}
.fot-modal-title {
  color: var(--negro);
}
.fot-modal-body {
  font-size: 14px;
  color: var(--gris-500);
  line-height: 1.6;
  margin-bottom: 24px;
  white-space: pre-line;
}
.fot-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fot-modal-btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--trans);
}
.fot-modal-btn.primary {
  background: var(--acento);
  color: #ffffff;
}
.fot-modal-btn.primary:hover {
  background: var(--acento-d);
}
.fot-modal-btn.secondary {
  background: var(--negro);
  color: #ffffff;
}
.fot-modal-btn.secondary:hover {
  background: #1a1a1a;
}
.fot-modal-btn.ghost {
  background: transparent;
  border: 1.5px solid var(--borde-l);
  color: var(--gris-500);
}
.fot-modal-btn.ghost:hover {
  border-color: var(--acento);
  color: var(--acento);
}

/* ── Toast ─────────────────────────────────────────────────────── */
.fot-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
  max-width: 380px;
}
.fot-toast-body {
  background: var(--blanco);
  border: 1px solid var(--rojo);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.fot-toast-icon {
  font-size: 18px;
  flex-shrink: 0;
}
.fot-toast-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--rojo);
  margin-bottom: 4px;
}
.fot-toast-msg {
  font-size: 13px;
  color: var(--gris-500);
  margin: 0;
  line-height: 1.5;
}
.fot-toast-wa {
  color: #25d366;
  text-decoration: none;
  font-weight: 600;
}
.fot-toast-wa:hover {
  text-decoration: underline;
}
.fot-toast-close {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.05);
  color: var(--gris-500);
  cursor: pointer;
  flex-shrink: 0;
  font-size: 14px;
  transition: all var(--trans);
}
.fot-toast-close:hover {
  background: var(--rojo);
  color: #ffffff;
}
