/* ===============================================
   DROPSTATION · DROPS PAGE CSS
   =============================================== */

/* ─── LIVE BANNER ─── */
.drops-live-banner {
  background: linear-gradient(90deg, rgba(239,68,68,.15), rgba(139,92,246,.15), rgba(239,68,68,.15));
  background-size: 200% 100%;
  animation: liveShimmer 3s linear infinite;
  border-bottom: 1px solid rgba(239,68,68,.3);
  padding: 12px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.drops-live-banner::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
  animation: pulse 1s infinite;
}
@keyframes liveShimmer {
  0%   { background-position: 0 0; }
  100% { background-position: 200% 0; }
}

/* ─── PAGE HEADER ─── */
.drops-header {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 24px 32px;
  text-align: center;
}
.drops-header__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139,92,246,.15);
  border: 1px solid rgba(139,92,246,.4);
  color: var(--purple-light);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}
.drops-header__label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse 2s infinite;
}
.drops-header__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1;
  margin: 0 0 16px;
}
.drops-header__title .grad {
  background: linear-gradient(90deg, #fff, var(--purple-light), #ef4444, var(--purple-light), #fff);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 4s infinite linear;
}
.drops-header__sub {
  color: var(--text-dim);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto;
}

/* ─── COUNTDOWN PRINCIPAL ─── */
.drop-featured {
  max-width: 1400px;
  margin: 0 auto 60px;
  padding: 0 24px;
}

.drop-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.drop-card--live {
  border-color: rgba(239,68,68,.5);
  box-shadow: 0 0 40px -10px rgba(239,68,68,.3);
}
.drop-card--upcoming {
  border-color: rgba(139,92,246,.5);
  box-shadow: 0 0 40px -10px rgba(139,92,246,.2);
}

.drop-card__cover {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .25;
}

.drop-card__body {
  position: relative;
  z-index: 2;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
@media (max-width: 760px) {
  .drop-card__body { grid-template-columns: 1fr; padding: 28px 20px; gap: 28px; }
}

.drop-card__left {}

.drop-card__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}
.drop-card__status--live {
  background: rgba(239,68,68,.15);
  color: var(--red);
  border: 1px solid rgba(239,68,68,.4);
}
.drop-card__status--live::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  animation: pulse 1s infinite;
}
.drop-card__status--upcoming {
  background: rgba(139,92,246,.15);
  color: var(--purple-light);
  border: 1px solid rgba(139,92,246,.4);
}
.drop-card__status--upcoming::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple-light);
}

.drop-card__name {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.drop-card__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin: 0 0 16px;
}
.drop-card__desc {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 480px;
}

/* Marcas participantes */
.drop-brands {
  display: flex;
  align-items: center;
  gap: -8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 8px;
}
.drop-brands__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-right: 8px;
}
.drop-brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  transition: all .2s;
  text-decoration: none;
}
.drop-brand-pill:hover { border-color: var(--purple); color: var(--text); }
.drop-brand-pill__logo {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 9px;
  font-weight: 800;
  color: #fff;
}

/* ─── COUNTDOWN WIDGET ─── */
.countdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  min-width: 280px;
}
@media (max-width: 760px) {
  .countdown { min-width: 0; align-items: flex-start; flex-direction: row; flex-wrap: wrap; gap: 12px; }
}

.countdown__title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-mute);
  text-align: center;
}

.countdown__units {
  display: flex;
  gap: 12px;
}

.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.countdown__number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  min-width: 64px;
  text-align: center;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px;
  color: var(--text);
  transition: color .3s;
}
.countdown__number.is-urgent { color: var(--red); }
.countdown__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.countdown__live {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--red);
  animation: pulse .8s infinite;
  text-align: center;
}

/* ─── NOTIFY BUTTON ─── */
.btn--notify {
  background: rgba(139,92,246,.15);
  border: 1px solid rgba(139,92,246,.5);
  color: var(--purple-light);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .25s;
  cursor: pointer;
}
.btn--notify:hover {
  background: rgba(139,92,246,.3);
  border-color: var(--purple-light);
  transform: translateY(-2px);
}
.btn--notify.is-subscribed {
  background: rgba(34,197,94,.1);
  border-color: rgba(34,197,94,.4);
  color: var(--green);
  cursor: default;
}
.btn--notify.is-subscribed:hover { transform: none; }

/* ─── PAST DROPS ─── */
.drops-past {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.drop-past-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  transition: all .2s;
  opacity: .6;
}
.drop-past-card:hover { opacity: 1; }

.drop-past-card__img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  background: var(--bg-2);
  overflow: hidden;
  flex-shrink: 0;
}
.drop-past-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.drop-past-card__info {}
.drop-past-card__name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 4px;
}
.drop-past-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
}
.drop-past-card__meta {
  font-size: 13px;
  color: var(--text-mute);
}
.drop-past-card__sold {
  text-align: right;
}
.drop-past-card__sold strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
}
.drop-past-card__sold span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-mute);
}

@media (max-width: 560px) {
  .drop-past-card { grid-template-columns: 60px 1fr; }
  .drop-past-card__sold { display: none; }
}

/* ─── MODAL NOTIFICACIÓN ─── */
.notify-modal {
  max-width: 480px;
  width: 100%;
}
.notify-modal__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(139,92,246,.15);
  display: grid;
  place-items: center;
  color: var(--purple-light);
  margin: 0 auto 20px;
  font-size: 28px;
}
.notify-modal__drop {
  text-align: center;
  margin-bottom: 24px;
}
.notify-modal__drop-name {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 6px;
}
.notify-modal__drop-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
}

.notify-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--text-mute);
  font-size: 12px;
  font-family: var(--font-mono);
}
.notify-divider::before,
.notify-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
