@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --canary: #ffd600;
  --canary-hover: #f5c800;
  --canary-light: #fff8cc;
  --royal: #2563eb;
  --royal-dark: #1d4ed8;
  --royal-light: #dbeafe;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --success: #16a34a;
  --danger: #dc2626;
  --warning: #d97706;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 4px 20px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12);
  --font-display: 'Fredoka', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --sidebar-width: 260px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--slate-50);
  color: var(--slate-800);
  line-height: 1.5;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

/* ─── Layout público ─── */

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, var(--canary) 0%, #ffea00 100%);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.2s;
}

.logo:hover {
  transform: scale(1.02);
}

.logo__img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: var(--shadow-sm);
  object-fit: cover;
}

.logo__text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-900);
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s;
  color: var(--slate-700);
}

.nav__link:hover {
  background: rgba(255, 255, 255, 0.6);
}

.nav__link--active {
  background: white;
  color: var(--royal);
  box-shadow: var(--shadow-sm);
}

.nav__link--admin {
  background: var(--slate-900);
  color: white;
}

.nav__link--admin:hover {
  background: var(--slate-800);
}

.nav__icon {
  width: 18px;
  height: 18px;
}

/* Hamburguer Button */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--slate-900);
  cursor: pointer;
  transition: all 0.2s;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.4);
}

.menu-toggle__icon {
  width: 24px;
  height: 24px;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffd600;
    background: linear-gradient(135deg, var(--canary) 0%, #ffea00 100%);
    flex-direction: column;
    padding: 1.25rem;
    gap: 0.75rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-md);
  }

  .nav--open {
    display: flex;
    animation: slideDownMenu 0.25s ease forwards;
  }

  .nav__link {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
    box-sizing: border-box;
  }
}

@keyframes slideDownMenu {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--canary) 0%, #ffe566 50%, #ffd600 100%);
  border-radius: var(--radius-xl);
  padding: 2rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.hero::before {
  width: 280px;
  height: 280px;
  top: -140px;
  right: -80px;
}

.hero::after {
  width: 140px;
  height: 140px;
  bottom: -70px;
  left: -40px;
}

.hero__content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero__text {
  flex: 1;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.5rem;
}

.hero__subtitle {
  color: var(--slate-700);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  max-width: 480px;
}

.hero__learn-btn {
  margin-bottom: 1.25rem;
}

.hero__learn-btn svg {
  width: 18px;
  height: 18px;
}

/* ─── Ofertas destacadas (hero) ─── */
.offer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
  max-width: 420px;
}

.offer-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-md);
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}

.offer-link:hover {
  background: white;
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.offer-link__icon {
  font-size: 1.6rem;
  line-height: 1;
}

.offer-link__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.offer-link__text strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--slate-900);
}

.offer-link__text small {
  font-size: 0.78rem;
  color: var(--slate-600);
}

.offer-link__arrow {
  width: 18px;
  height: 18px;
  color: var(--royal);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.offer-link:hover .offer-link__arrow {
  transform: translateX(3px);
}

.offer-link--tenis:hover {
  border-color: #f97316;
}

.offer-link--bocinas:hover {
  border-color: var(--royal);
}

@media (min-width: 640px) {
  .offer-links {
    flex-direction: row;
    max-width: none;
  }

  .offer-link {
    flex: 1;
  }
}

/* ─── Modal ─── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.modal--open {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
}

.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: var(--shadow-lg);
  transform: translateY(16px) scale(0.97);
  transition: transform 0.25s;
}

.modal--open .modal__dialog {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--slate-100);
  border-radius: 50%;
  cursor: pointer;
  color: var(--slate-600);
  transition: all 0.2s;
}

.modal__close:hover {
  background: var(--slate-200);
  color: var(--slate-900);
}

.modal__close svg {
  width: 18px;
  height: 18px;
}

.modal__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.35rem;
  padding-right: 2rem;
}

.modal__subtitle {
  color: var(--slate-500);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.modal__steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.modal__step {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.modal__step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--canary);
  color: var(--slate-900);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50%;
}

.modal__step strong {
  display: block;
  font-size: 0.95rem;
  color: var(--slate-800);
  margin-bottom: 0.2rem;
}

.modal__step p {
  font-size: 0.85rem;
  color: var(--slate-600);
  line-height: 1.45;
}

.modal__cta {
  width: 100%;
}

/* ─── WhatsApp flotante ─── */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: wa-pulse 2.5s ease-in-out infinite;
}

.wa-float svg {
  width: 30px;
  height: 30px;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  animation: none;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.15); }
}

.hero__stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.hero__stat {
  display: flex;
  flex-direction: column;
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--royal);
}

.hero__stat-label {
  font-size: 0.8rem;
  color: var(--slate-600);
}

.hero__visual {
  display: none;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.hero__visual svg {
  width: 80px;
  height: 80px;
  color: var(--slate-900);
}

@media (min-width: 768px) {
  .hero {
    padding: 2.5rem 3rem;
  }

  .hero__visual {
    display: flex;
  }
}

/* ─── Barra de Ofertas Destacadas ─── */
.offers-bar {
  background: linear-gradient(135deg, var(--canary) 0%, #ffea00 100%);
  border-radius: var(--radius-xl);
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(255, 214, 0, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.offers-bar__track {
  display: flex;
  gap: 0.7rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.15rem 0;
  justify-content: center;
  flex-wrap: wrap;
}

.offers-bar__track::-webkit-scrollbar {
  display: none;
}

.offers-bar__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  color: white;
  font-weight: 600;
  font-size: 0.88rem;
  font-family: var(--font-body);
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
  border: 2px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  flex-shrink: 0;
}

.offers-bar__pill:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  filter: brightness(1.1);
}

.offers-bar__pill:active {
  transform: translateY(-1px) scale(0.98);
}

.offers-bar__pill-emoji {
  font-size: 1.1rem;
  line-height: 1;
}

.offers-bar__pill-label {
  letter-spacing: 0.01em;
}

.offers-bar__pill-icon {
  width: 14px;
  height: 14px;
  opacity: 0.8;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .offers-bar__track {
    justify-content: flex-start;
    flex-wrap: nowrap;
  }

  .offers-bar__pill {
    padding: 0.5rem 0.95rem;
    font-size: 0.82rem;
  }
}

/* Filters bar */
.filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: white;
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-100);
  margin-bottom: 1.5rem;
}

.filters__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.filters__label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--slate-500);
  margin-right: 0.25rem;
}

.chip {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--slate-200);
  background: white;
  color: var(--slate-600);
  cursor: pointer;
  transition: all 0.2s;
}

.chip:hover {
  border-color: var(--royal);
  color: var(--royal);
}

.chip--active {
  background: var(--royal);
  border-color: var(--royal);
  color: white;
}

.filters__count {
  font-size: 0.875rem;
  color: var(--slate-600);
}

.filters__count strong {
  color: var(--slate-900);
}

/* Coupon grid */
.coupons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding-bottom: 2rem;
}

@media (min-width: 640px) {
  .coupons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .coupons-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ─── Coupon Card (cc) — Mercado Libre style ─── */
.cc {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(15, 23, 42, 0.07), 0 0 0 1px rgba(15, 23, 42, 0.04);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.5s ease both;
  display: flex;
  flex-direction: column;
}

.cc:hover {
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.13), 0 0 0 1px rgba(37, 99, 235, 0.18);
  transform: translateY(-4px);
}

/* ── Header: logo en esquina + badges ── */
.cc__header {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0.5rem;
  padding: 0.6rem 1rem 0;
  position: relative;
  min-height: 52px;
}

/* Yellow diagonal corner shape */
.cc__logo-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  z-index: 1;
  border-radius: 20px 0 0 0;
  filter: drop-shadow(2px 2px 0px rgba(0, 0, 0, 0.08));
}

.cc__logo-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffd600 0%, #ffe24a 100%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.cc__logo-area::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background: var(--slate-200);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: -1;
}

.cc__logo-img {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 40px;
  height: 40px;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.1));
}

.cc__header-right {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
  z-index: 2;
}

.cc__store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.55rem;
  background: var(--canary-light);
  border: 1px solid rgba(255, 214, 0, 0.35);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--slate-700);
  white-space: nowrap;
}

/* ── Body: título centrado premium ── */
.cc__body {
  padding: 0.25rem 1rem 0.1rem;
  text-align: center;
}

.cc__title-large {
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.1;
  margin-bottom: 0.2rem;
  letter-spacing: -0.04em;
}

.cc__title-sub {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate-500);
  line-height: 1.3;
}

/* ── Info row: compra mínima + descuento máximo en una línea ── */
.cc__info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-top: 1.5px dashed var(--slate-200);
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}

.cc__info-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.15rem 0.25rem;
}

.cc__info-divider {
  width: 1px;
  height: 24px;
  background-color: var(--slate-200);
  flex-shrink: 0;
}

.cc__info-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border-radius: 50%;
  color: var(--slate-600);
}

.cc__info-icon svg {
  width: 15px;
  height: 15px;
}

.cc__info-icon--blue {
  background: #eff6ff;
  color: var(--royal);
}

.cc__info-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.cc__info-label {
  font-size: 0.68rem;
  color: var(--slate-500);
  line-height: 1.2;
}

.cc__info-value {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.2;
}

/* ── Código del cupón ── */
.cc__code-section {
  padding: 0 1rem;
  margin-top: 0.1rem;
  margin-bottom: 0.85rem;
}

.cc__code-inner {
  background: #fffdf0;
  border: 1.5px dashed #fcd34d;
  border-radius: 12px;
  padding: 0.55rem 0.75rem;
}

.cc__code-label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--slate-500);
  margin-bottom: 0.25rem;
}

.cc__code-label svg {
  color: var(--canary-hover);
  width: 15px;
  height: 15px;
}

.cc__code-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.cc__code {
  font-family: 'Courier New', monospace;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: 0.12em;
  filter: blur(6px);
  user-select: none;
  transition: filter 0.4s ease, letter-spacing 0.3s ease;
}

.cc__code.cc-revealed {
  filter: blur(0);
  user-select: auto;
  color: var(--slate-900);
  letter-spacing: 0.08em;
}

/* ── CTA button: Copiar y Canjear ── */
.cc__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  background: var(--canary);
  color: var(--slate-900);
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.cc__cta-btn:hover {
  background: var(--canary-hover);
  transform: scale(1.04);
  box-shadow: 0 4px 12px rgba(255, 214, 0, 0.4);
}

.cc__cta-btn:active {
  transform: scale(0.97);
}

/* ── Countdown timer ── */
.cc__countdown {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.25rem;
  background: linear-gradient(135deg, #ffd600 0%, #ffe04a 100%);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate-800);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.cc__countdown svg {
  flex-shrink: 0;
  color: var(--slate-700);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn svg {
  width: 16px;
  height: 16px;
}

.btn--primary {
  background: var(--canary);
  color: var(--slate-900);
}

.btn--primary:hover {
  background: var(--canary-hover);
  transform: scale(1.02);
}

.btn--primary:active {
  transform: scale(0.98);
}

.btn--secondary {
  background: var(--royal-light);
  color: var(--royal);
}

.btn--secondary:hover {
  background: #bfdbfe;
}

.btn--danger {
  background: #fee2e2;
  color: var(--danger);
}

.btn--danger:hover {
  background: #fecaca;
}

.btn--ghost {
  background: transparent;
  color: var(--slate-600);
  border: 1px solid var(--slate-200);
}

.btn--ghost:hover {
  background: var(--slate-50);
}

.btn--sm {
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
}

.btn--lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--slate-300);
}

.empty-state__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.empty-state__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.empty-state__text {
  color: var(--slate-500);
}

/* ─── Canales WhatsApp ─── */
.wa-channels {
  background: linear-gradient(135deg, #0a2e1a 0%, #064e29 100%);
  padding: 3rem 0;
}

.wa-channels__header {
  text-align: center;
  margin-bottom: 2rem;
}

.wa-channels__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}

.wa-channels__subtitle {
  color: #86efac;
  font-size: 0.95rem;
}

.wa-channels__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .wa-channels__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.wa-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.25rem 1.25rem 1.1rem;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.wa-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(37, 211, 102, 0.06);
  opacity: 0;
  transition: opacity 0.25s;
}

.wa-card:hover::before {
  opacity: 1;
}

.wa-card:hover {
  border-color: #25d366;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.2);
}

.wa-card__icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

.wa-card__icon svg {
  width: 26px;
  height: 26px;
}

.wa-card--drone .wa-card__icon {
  background: #2563eb;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
}

.wa-card--drone:hover {
  border-color: #60a5fa;
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.2);
}

.wa-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.wa-card__label {
  font-size: 0.75rem;
  color: #86efac;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wa-card--drone .wa-card__label {
  color: #93c5fd;
}

.wa-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.wa-card__desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.wa-card__cta {
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.35);
}

.wa-card:hover .wa-card__cta {
  background: #1da851;
  transform: scale(1.05);
}

.wa-card--drone .wa-card__cta {
  background: #2563eb;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
}

.wa-card--drone:hover .wa-card__cta {
  background: #1d4ed8;
}

/* Main & Footer */
.main {
  flex: 1;
  padding: 1.5rem 0 3rem;
}

.footer {
  background: var(--slate-900);
  color: white;
  padding: 2.5rem 0 1.5rem;
  margin-top: auto;
}

.footer__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer__desc {
  color: var(--slate-400);
  font-size: 0.875rem;
  max-width: 400px;
}

.footer__heading {
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--slate-700);
  color: var(--slate-300);
  transition: all 0.2s;
}

.footer__social-link:hover {
  background: #1877f2;
  color: white;
}

.footer__links a {
  color: var(--slate-400);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--canary);
}

/* Toast */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast {
  background: var(--slate-900);
  color: white;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: 0.875rem;
  animation: slideIn 0.3s ease;
  max-width: 320px;
}

.toast--success {
  background: var(--success);
}

.toast--error {
  background: var(--danger);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ─── Panel Admin ─── */

.admin-layout {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: var(--sidebar-width);
  background: var(--slate-900);
  color: white;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 200;
  transition: transform 0.3s;
}

.admin-sidebar__header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--slate-700);
}

.admin-sidebar__logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.admin-sidebar__logo span {
  color: var(--canary);
}

.admin-sidebar__nav {
  flex: 1;
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.admin-nav__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  color: var(--slate-400);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  transition: all 0.2s;
}

.admin-nav__item:hover {
  background: var(--slate-800);
  color: white;
}

.admin-nav__item--active {
  background: var(--royal);
  color: white;
}

.admin-nav__item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.admin-sidebar__footer {
  padding: 1rem;
  border-top: 1px solid var(--slate-700);
}

.admin-main {
  flex: 1;
  margin-left: var(--sidebar-width);
  min-height: 100vh;
  background: var(--slate-100);
}

.admin-topbar {
  background: white;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--slate-200);
  position: sticky;
  top: 0;
  z-index: 50;
}

.admin-topbar__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.admin-topbar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.admin-content {
  padding: 1.5rem;
}

.admin-panel {
  display: none;
}

.admin-panel--active {
  display: block;
  animation: fadeInUp 0.3s ease;
}

/* Stats cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-100);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.stat-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.stat-card__icon--blue {
  background: var(--royal-light);
}

.stat-card__icon--yellow {
  background: var(--canary-light);
}

.stat-card__icon--green {
  background: #dcfce7;
}

.stat-card__icon--red {
  background: #fee2e2;
}

.stat-card__value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1;
}

.stat-card__label {
  font-size: 0.85rem;
  color: var(--slate-500);
  margin-top: 0.25rem;
}

/* Cards & Tables */
.card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-100);
  overflow: hidden;
}

.card__header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}

.card__body {
  padding: 1.5rem;
}

.table-wrap {
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.table th,
.table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--slate-100);
}

.table th {
  background: var(--slate-50);
  font-weight: 600;
  color: var(--slate-600);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.table tr:hover td {
  background: var(--slate-50);
}

.table__actions {
  display: flex;
  gap: 0.35rem;
}

.badge {
  display: inline-flex;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.badge--success {
  background: #dcfce7;
  color: var(--success);
}

.badge--danger {
  background: #fee2e2;
  color: var(--danger);
}

.badge--warning {
  background: #fef3c7;
  color: var(--warning);
}

/* Forms */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--royal);
  box-shadow: 0 0 0 3px var(--royal-light);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.toggle {
  position: relative;
  width: 44px;
  height: 24px;
  cursor: pointer;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle__slider {
  position: absolute;
  inset: 0;
  background: var(--slate-300);
  border-radius: 999px;
  transition: 0.2s;
}

.toggle__slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.2s;
}

.toggle input:checked+.toggle__slider {
  background: var(--success);
}

.toggle input:checked+.toggle__slider::before {
  transform: translateX(20px);
}

/* Login */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--slate-900) 0%, #1e3a5f 100%);
  padding: 1.5rem;
}

.login-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
}

.login-card__logo {
  text-align: center;
  margin-bottom: 2rem;
}

.login-card__logo h1 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--slate-900);
}

.login-card__logo p {
  color: var(--slate-500);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.login-card__hint {
  margin-top: 1.5rem;
  padding: 0.85rem;
  background: var(--slate-50);
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  color: var(--slate-500);
  text-align: center;
}

.login-error {
  background: #fee2e2;
  color: var(--danger);
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  display: none;
}

.login-error--visible {
  display: block;
}

/* Mobile admin */
.admin-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--slate-700);
}

@media (max-width: 768px) {
  .admin-sidebar {
    transform: translateX(-100%);
  }

  .admin-sidebar--open {
    transform: translateX(0);
  }

  .admin-main {
    margin-left: 0;
  }

  .admin-menu-toggle {
    display: flex;
  }

  .nav__link span.hide-mobile {
    display: none;
  }
}

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 150;
}

.overlay--visible {
  display: block;
}

.recent-list {
  list-style: none;
}

.recent-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--slate-100);
  font-size: 0.875rem;
}

.recent-list li:last-child {
  border-bottom: none;
}

.recent-list__title {
  font-weight: 500;
}

.recent-list__meta {
  color: var(--slate-500);
  font-size: 0.8rem;
}

/* ─── Color Picker (Admin) ─── */
.color-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.color-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  position: relative;
}

.color-swatch:hover {
  transform: scale(1.15);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

.color-swatch--active {
  border-color: var(--slate-900);
  box-shadow: 0 0 0 2px white, 0 0 0 4px var(--slate-900);
}

.color-swatch--active::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* ─── Solicitudes de descuento (Admin) ─── */
.admin-nav__count {
  min-width: 1.5rem;
  margin-left: auto;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  background: var(--canary);
  color: var(--slate-900);
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
}

.requests-panel__subtitle {
  margin-top: 0.2rem;
  color: var(--slate-500);
  font-size: 0.8rem;
}

.table__empty {
  padding: 2rem !important;
  color: var(--slate-500);
  text-align: center !important;
}

.table__empty--error {
  color: var(--danger);
}

.request-email,
.request-product-link {
  color: var(--royal);
  font-size: 0.82rem;
}

.request-product-link {
  display: inline-block;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.request-response-date {
  color: var(--slate-500);
  font-size: 0.78rem;
}

.discount-reply-modal__dialog {
  max-width: 680px;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
}

.discount-reply__details {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  background: var(--slate-50);
  color: var(--slate-600);
  font-size: 0.85rem;
}

.discount-reply__details a {
  color: var(--royal);
  word-break: break-all;
}

.discount-reply__sender {
  margin-top: 1rem;
  color: var(--slate-500);
  font-size: 0.78rem;
}

.discount-reply__actions {
  justify-content: flex-end;
}

/* ─── Calculadora de descuento ─── */
.discount-calculator {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 5rem;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 214, 0, 0.2), transparent 28rem),
    radial-gradient(circle at 85% 70%, rgba(37, 99, 235, 0.12), transparent 26rem);
}

.discount-calculator__intro {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
  animation: fadeInUp 0.5s ease both;
}

.discount-calculator__eyebrow {
  display: inline-flex;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--royal-light);
  color: var(--royal-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.discount-calculator__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--slate-900);
}

.discount-calculator__subtitle {
  max-width: 650px;
  margin: 1rem auto 0;
  color: var(--slate-600);
  font-size: 1.05rem;
}

.discount-calculator__card {
  max-width: 620px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  animation: fadeInUp 0.5s 0.1s ease both;
}

.discount-calculator__card-header {
  background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
  color: white;
}

.discount-calculator__card-header .card__title {
  font-size: 1.35rem;
}

.discount-calculator__card-copy {
  margin-top: 0.25rem;
  color: var(--slate-300);
  font-size: 0.875rem;
}

.discount-calculator__badge {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--canary);
  color: var(--slate-900);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 0 0 5px rgba(255, 214, 0, 0.15);
}

.discount-calculator__form {
  display: grid;
  gap: 1.25rem;
}

.discount-calculator__form .form-group input {
  min-height: 50px;
}

.discount-calculator__form .input--error {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-help {
  color: var(--slate-500);
  font-size: 0.78rem;
}

.form-error {
  min-height: 1.15em;
  color: var(--danger);
  font-size: 0.78rem;
  font-weight: 500;
}

.discount-calculator__privacy,
.discount-calculator__status {
  color: var(--slate-500);
  font-size: 0.8rem;
  text-align: center;
}

.discount-calculator__submit {
  width: 100%;
  justify-content: center;
}

.discount-calculator__status {
  min-height: 1.2em;
  color: var(--slate-700);
}

.discount-calculator__trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

@media (max-width: 639px) {
  .discount-calculator {
    padding: 2.75rem 0 3.5rem;
  }

  .discount-calculator__subtitle {
    font-size: 0.95rem;
  }

  .discount-calculator__card-header {
    flex-wrap: nowrap;
  }

  .discount-calculator__badge {
    flex: 0 0 auto;
  }
}

/* ─── Canje de cupones desde correo ─── */
.redeem-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 214, 0, 0.3), transparent 25rem),
    radial-gradient(circle at 85% 85%, rgba(37, 99, 235, 0.18), transparent 28rem),
    var(--slate-50);
}

.redeem-card {
  width: min(100%, 520px);
  padding: 2.25rem;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-xl);
  background: white;
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: fadeInUp 0.45s ease both;
}

.redeem-card__logo {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border: 4px solid var(--canary);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.redeem-card__eyebrow {
  display: inline-flex;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--canary-light);
  color: var(--slate-800);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.redeem-card__title {
  margin-top: 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3rem);
  line-height: 1.05;
  color: var(--slate-900);
}

.redeem-card__subtitle {
  margin-top: 0.75rem;
  color: var(--slate-600);
}

.redeem-card__codes {
  display: grid;
  gap: 0.65rem;
  margin: 1.5rem 0;
}

.redeem-card__code {
  display: block;
  padding: 0.85rem 1rem;
  border: 2px dashed var(--royal);
  border-radius: var(--radius-md);
  background: var(--royal-light);
  color: var(--royal-dark);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
}

.redeem-card__button {
  width: 100%;
  justify-content: center;
}

.redeem-card__instructions {
  margin: 0 0 1rem;
  color: var(--slate-600);
  font-size: 0.85rem;
}

.redeem-card__status {
  min-height: 1.25rem;
  margin-top: 0.85rem;
  color: var(--slate-600);
  font-size: 0.82rem;
}

/* ─── Animations ─── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}