/* ═══════════════════════════════════════════════════════════════════
   Portal de clientes — Estilos premium consistentes con la marca
   ═══════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════
   Login con layout split — foto + formulario
   ═══════════════════════════════════════════════════════════════════ */
.login-photo-wrap {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}
@media (max-width: 1023px) { .login-photo-wrap { display: none; } }

.login-photo {
  position: absolute;
  inset: 0;
}
.login-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(1.05);
}
.login-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(7,14,28,0.4) 0%, rgba(14,27,48,0.55) 100%),
    radial-gradient(ellipse at 30% 70%, rgba(212,181,116,0.15), transparent 60%);
}
.login-photo-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px;
}
.login-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #E0C57E;
  background: rgba(7,14,28,0.5);
  border: 1px solid rgba(212,181,116,0.25);
  padding: 8px 16px;
  border-radius: 999px;
  backdrop-filter: blur(12px);
  width: fit-content;
}
.login-photo-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #F5EFE0;
  font-weight: 400;
  margin-top: 24px;
  font-variation-settings: "opsz" 144;
}
.login-photo-title .serif-italic {
  font-style: italic;
  color: #E0C57E;
  font-weight: 300;
}
.login-photo-sub {
  margin-top: 18px;
  color: rgba(245,239,224,0.75);
  font-size: 15px;
  line-height: 1.55;
  max-width: 38ch;
}
.login-perks {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(245,239,224,0.85);
  background: rgba(7,14,28,0.4);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 10px 14px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  width: fit-content;
}
.perk-icon { font-size: 16px; }

.login-form-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 60px;
}
@media (max-width: 1023px) { .login-form-wrap { padding-top: 120px; } }

/* ─── Auth card ─── */
.auth-card {
  width: 100%;
  max-width: 460px;
  background: rgba(14,27,48,0.55);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 40px;
  backdrop-filter: blur(24px) saturate(140%);
  box-shadow: 0 50px 100px -20px rgba(0,0,0,0.6);
}
@media (max-width: 480px) { .auth-card { padding: 28px; border-radius: 22px; } }

.auth-tabs {
  display: flex;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 28px;
}
.auth-tab {
  flex: 1;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(245,239,224,0.5);
  transition: all 0.3s ease;
  background: transparent;
  border: none;
  cursor: pointer;
}
.auth-tab.is-active {
  background: linear-gradient(135deg, #E0C57E 0%, #D4B574 100%);
  color: #070E1C;
  box-shadow: 0 6px 18px -4px rgba(212,181,116,0.4);
}

.auth-form { display: flex; flex-direction: column; gap: 14px; }

/* ─── Inputs ─── */
.field { display: flex; flex-direction: column; }
.field label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(245,239,224,0.7);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.field input,
.field select,
.field textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 13px 16px;
  font: inherit;
  font-size: 14px;
  color: #F5EFE0;
  transition: all 0.25s ease;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 100px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(245,239,224,0.3); }

/* ─── Logo horizontal recortado ─── */
.brand-logo-h {
  display: block;
  height: 64px;
  width: 280px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  transition: opacity 0.3s ease;
}
.brand-logo-h:hover { opacity: 0.85; }

@media (max-width: 640px) {
  .brand-logo-h { height: 48px; width: 220px; }
}

/* ─── Toggle ver contraseña ─── */
.pass-wrap {
  position: relative;
}
.pass-wrap input { padding-right: 44px; }
.pass-toggle {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,239,224,0.4);
  transition: all 0.2s ease;
}
.pass-toggle:hover {
  color: #E0C57E;
  background: rgba(212,181,116,0.08);
}
.pass-toggle svg { width: 18px; height: 18px; }
.pass-toggle .hidden { display: none; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(212,181,116,0.45);
  background: rgba(212,181,116,0.06);
  box-shadow: 0 0 0 4px rgba(212,181,116,0.1);
}

/* ─── Botones del portal ─── */
.btn-portal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #E0C57E 0%, #D4B574 100%);
  color: #070E1C;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(212,181,116,0.4);
  box-shadow: 0 14px 32px -8px rgba(212,181,116,0.4), inset 0 1px 0 rgba(255,255,255,0.4);
  transition: all 0.3s cubic-bezier(.34,1.2,.64,1);
  cursor: pointer;
}
.btn-portal:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #EBD9A8 0%, #E0C57E 100%);
}

.btn-portal-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #E0C57E 0%, #D4B574 100%);
  color: #070E1C;
  font-size: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-portal-sm:hover { transform: translateY(-1px); filter: brightness(1.06); }

.btn-ghost-portal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(245,239,224,0.85);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-ghost-portal:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(212,181,116,0.3);
  color: #F5EFE0;
}

.btn-danger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.2);
  color: rgba(252, 165, 165, 0.9);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-danger:hover {
  background: rgba(220, 38, 38, 0.14);
  border-color: rgba(220, 38, 38, 0.4);
  color: #fca5a5;
}

/* ─── Mensajes ─── */
.auth-error {
  font-size: 13px;
  color: #fca5a5;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.2);
  padding: 12px 14px;
  border-radius: 10px;
}
.auth-ok {
  color: #B8C49B;
  background: rgba(184, 196, 155, 0.08);
  border: 1px solid rgba(184, 196, 155, 0.2);
}

/* ─── Header del portal ─── */
.portal-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: rgba(7,14,28,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(20px) saturate(140%);
}
@media (min-width: 1024px) { .portal-header { padding: 18px 40px; } }

.badge-admin {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #070E1C;
  background: linear-gradient(135deg, #E0C57E 0%, #D4B574 100%);
  padding: 5px 10px;
  border-radius: 999px;
}

/* ─── Welcome / filtros ─── */
.welcome {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.month-picker {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.month-select {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 11px 16px;
  font: inherit;
  font-size: 13px;
  color: #F5EFE0;
  cursor: pointer;
  transition: all 0.25s ease;
  min-width: 180px;
}
.month-select:focus,
.month-select:hover {
  border-color: rgba(212,181,116,0.4);
  background: rgba(212,181,116,0.06);
  outline: none;
}

.admin-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
  padding: 18px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
}

/* ─── Stats row ─── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.stat-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 22px;
  transition: all 0.3s ease;
}
.stat-card:hover {
  border-color: rgba(212,181,116,0.25);
  background: rgba(212,181,116,0.04);
}
.stat-eyebrow {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D4B574;
}
.stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 38px;
  color: #F5EFE0;
  margin-top: 8px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* ─── Task card ─── */
.task-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  padding: 28px;
  transition: border-color 0.3s ease;
}
.task-card:hover { border-color: rgba(212,181,116,0.2); }
@media (max-width: 640px) { .task-card { padding: 22px; } }

.task-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.badge-status {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.badge-status.stat-pending {
  color: #fbbf24;
  background: rgba(251,191,36,0.08);
  border: 1px solid rgba(251,191,36,0.25);
}
.badge-status.stat-submitted {
  color: #93c5fd;
  background: rgba(147,197,253,0.08);
  border: 1px solid rgba(147,197,253,0.25);
}
.badge-status.stat-completed {
  color: #B8C49B;
  background: rgba(184,196,155,0.1);
  border: 1px solid rgba(184,196,155,0.3);
}

.task-files {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.file-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.file-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 12px;
  color: #F5EFE0;
  transition: all 0.25s ease;
}
.file-pill:hover {
  border-color: rgba(212,181,116,0.4);
  background: rgba(212,181,116,0.06);
}
.file-pill-admin {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12px;
  color: rgba(245,239,224,0.85);
  transition: all 0.25s ease;
  min-width: 240px;
  flex: 1 1 240px;
  max-width: 100%;
}
.file-pill-admin:hover {
  border-color: rgba(212,181,116,0.3);
  background: rgba(212,181,116,0.04);
}

/* ─── Lista de enlaces ─── */
.link-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.link-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 12px 14px;
  transition: all 0.25s ease;
}
.link-item:hover {
  border-color: rgba(212,181,116,0.3);
  background: rgba(212,181,116,0.04);
}
.link-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
  color: inherit;
}
.link-icon {
  font-size: 18px;
  flex-shrink: 0;
}
.link-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}
.link-label {
  font-size: 13px;
  color: #F5EFE0;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.link-url {
  font-size: 11px;
  color: rgba(245,239,224,0.4);
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.link-remove {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(220,38,38,0.08);
  border: 1px solid rgba(220,38,38,0.18);
  color: rgba(252,165,165,0.85);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.link-remove:hover {
  background: rgba(220,38,38,0.18);
  border-color: rgba(220,38,38,0.4);
  color: #fca5a5;
}

/* ─── Botones de descarga / preview ─── */
.btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(245,239,224,0.7);
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.btn-download:hover {
  background: rgba(212,181,116,0.12);
  border-color: rgba(212,181,116,0.35);
  color: #E0C57E;
}
.btn-download-primary {
  background: linear-gradient(135deg, rgba(224,197,126,0.15) 0%, rgba(212,181,116,0.1) 100%);
  border-color: rgba(212,181,116,0.3);
  color: #E0C57E;
}
.btn-download-primary:hover {
  background: linear-gradient(135deg, #E0C57E 0%, #D4B574 100%);
  color: #070E1C;
}

/* ─── Toggle "agregar enlace" colapsable ─── */
.link-toggle {
  margin-top: 12px;
  border-top: 1px dashed rgba(255,255,255,0.06);
  padding-top: 14px;
}
.link-toggle summary {
  list-style: none;
  cursor: pointer;
  font-size: 12px;
  color: rgba(245,239,224,0.5);
  padding: 4px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}
.link-toggle summary::-webkit-details-marker { display: none; }
.link-toggle summary::before {
  content: "+";
  font-size: 16px;
  color: #D4B574;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212,181,116,0.1);
  font-weight: 300;
  line-height: 1;
  transition: all 0.2s ease;
}
.link-toggle[open] summary::before { content: "−"; transform: rotate(180deg); }
.link-toggle:hover summary { color: rgba(245,239,224,0.8); }

/* ─── Form para agregar enlace ─── */
.link-form-wrap {
  margin-top: 18px;
  padding: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px dashed rgba(255,255,255,0.08);
  border-radius: 14px;
}
.link-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr) auto;
  gap: 8px;
}
@media (max-width: 640px) {
  .link-form-row { grid-template-columns: 1fr; }
}
.link-form input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  font-size: 13px;
  color: #F5EFE0;
  transition: all 0.2s ease;
  min-width: 0;
}
.link-form input::placeholder { color: rgba(245,239,224,0.3); }
.link-form input:focus {
  outline: none;
  border-color: rgba(212,181,116,0.4);
  background: rgba(212,181,116,0.06);
  box-shadow: 0 0 0 3px rgba(212,181,116,0.08);
}
.link-hint {
  margin-top: 10px;
  font-size: 11px;
  color: rgba(245,239,224,0.4);
  line-height: 1.5;
}
.link-hint .how-to {
  color: #E0C57E;
  border-bottom: 1px dashed rgba(224,197,126,0.4);
  padding-bottom: 1px;
  margin-left: 4px;
}
.link-hint .how-to:hover { border-color: #E0C57E; }

/* ─── Pasos del modal "cómo se hace" ─── */
.howto-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.howto-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E0C57E 0%, #D4B574 100%);
  color: #070E1C;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.howto-h {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  color: #F5EFE0;
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 144;
}
.howto-d {
  margin-top: 4px;
  font-size: 13px;
  color: rgba(245,239,224,0.6);
  line-height: 1.55;
}
.howto-d code {
  background: rgba(255,255,255,0.06);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 11px;
  color: #E0C57E;
}

/* ─── Upload zone ─── */
.upload-zone {
  margin-top: 18px;
  padding: 18px;
  border: 1.5px dashed rgba(255,255,255,0.1);
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  transition: all 0.3s ease;
}
.upload-zone.dragging {
  border-color: rgba(212,181,116,0.6);
  background: rgba(212,181,116,0.08);
}
.upload-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  cursor: pointer;
  color: rgba(245,239,224,0.85);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}
.upload-label:hover { color: #E0C57E; }

.upload-progress {
  margin-top: 12px;
}
.upload-progress .bar {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
}
.upload-progress .bar > span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #E0C57E, #D4B574);
  border-radius: 999px;
  transition: width 0.2s ease;
}

/* ─── Task actions admin ─── */
.task-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ─── Empty state ─── */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  background: rgba(255,255,255,0.02);
  border: 1px dashed rgba(255,255,255,0.08);
  border-radius: 22px;
  margin-top: 24px;
}

/* ─── Modal ─── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(7,14,28,0.7);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.25s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-card {
  position: relative;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(180deg, rgba(14,27,48,0.95) 0%, rgba(7,14,28,0.95) 100%);
  border: 1px solid rgba(212,181,116,0.2);
  border-radius: 24px;
  padding: 36px;
  backdrop-filter: blur(24px);
  box-shadow: 0 50px 100px -20px rgba(0,0,0,0.7);
  animation: slideUp 0.3s cubic-bezier(.34,1.2,.64,1);
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@media (max-width: 640px) { .modal-card { padding: 24px; border-radius: 20px; } }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #F5EFE0;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.25s ease;
}
.modal-close:hover { background: rgba(212,181,116,0.15); border-color: rgba(212,181,116,0.3); }

/* ─── Lista de clientes en modal ─── */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px;
  max-height: 200px;
  overflow-y: auto;
  padding: 8px;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
}
.client-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.client-check:hover { background: rgba(255,255,255,0.04); }
.client-check input { accent-color: #D4B574; }
.client-info { display: flex; flex-direction: column; min-width: 0; }
.client-name { font-size: 13px; color: #F5EFE0; font-weight: 500; }
.client-email { font-size: 10px; color: rgba(245,239,224,0.4); }

/* ─── Toast ─── */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  z-index: 200;
  backdrop-filter: blur(20px);
  box-shadow: 0 14px 40px -8px rgba(0,0,0,0.5);
  animation: toastIn 0.3s cubic-bezier(.34,1.2,.64,1);
}
@keyframes toastIn { from { transform: translate(-50%, 20px); opacity: 0; } to { transform: translate(-50%, 0); opacity: 1; } }
.toast-ok {
  background: rgba(184,196,155,0.18);
  color: #DCE3CB;
  border: 1px solid rgba(184,196,155,0.3);
}
.toast-error {
  background: rgba(220,38,38,0.18);
  color: #fecaca;
  border: 1px solid rgba(220,38,38,0.3);
}
