/** Shopify CDN: Minification failed

Line 593:0 Unexpected "}"

**/
/* ═══════════════════════════════════════════
   WHATNOT LIVE SHOWS — LANDING PAGE STYLES
   ═══════════════════════════════════════════ */

/* ── CSS VARIABLES (overridden by section settings) ── */
:root {
  --wn-mint: #5CB8A5;
  --wn-mint-light: #E8F5F1;
  --wn-mint-dark: #3D9B88;
  --wn-charcoal: #1A1A1A;
  --wn-slate: #4A4A4A;
  --wn-warm-gray: #F7F6F4;
  --wn-white: #FFFFFF;
  --wn-border: #E5E5E5;
  --wn-gold: #204C49;
  --wn-red-live: #E05252;
  --wn-radius: 12px;
  --wn-radius-lg: 20px;
}

/* ── ANIMATIONS ── */
@keyframes wn-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
@keyframes wn-fadeInDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes wn-fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes wn-glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(224,82,82,0.15); }
  50% { box-shadow: 0 0 30px rgba(224,82,82,0.3); }
}

/* ═══════════════════
   HERO SECTION
   ═══════════════════ */
.wn-hero {
  position: relative;
  padding: 100px 48px 80px;
  text-align: center;
  overflow: hidden;
}
.wn-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(92,184,165,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(92,184,165,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.wn-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(92,184,165,0.15);
  border: 1px solid rgba(92,184,165,0.3);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--wn-mint);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
  animation: wn-fadeInDown 0.6s ease-out;
}
.wn-hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--wn-mint);
  border-radius: 50%;
  animation: wn-pulse 2s infinite;
}
.wn-hero__title {
  font-size: clamp(32px, 8vw, 70px);
  color: var(--wn-white);
  letter-spacing: 4px;
  line-height: 0.95;
  margin-bottom: 24px;
  animation: wn-fadeInUp 0.6s ease-out 0.1s both;
}
.wn-hero__title-accent {
  color: var(--wn-mint);
}
.wn-hero__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
  animation: wn-fadeInUp 0.6s ease-out 0.2s both;
}
.wn-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wn-mint);
  color: var(--wn-white);
  padding: 16px 36px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s;
  animation: wn-fadeInUp 0.6s ease-out 0.3s both;
}
.wn-hero__cta:hover {
  background: var(--wn-mint-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(92,184,165,0.3);
}

/* ═══════════════════
   COUNTDOWN BAR
   ═══════════════════ */
.wn-countdown {
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.wn-countdown__left {
  text-align: center;
}
.wn-countdown__label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.wn-countdown__show-name {
  font-size: 18px;
  color: var(--wn-white);
  letter-spacing: 1px;
}
.wn-countdown__digits {
  display: flex;
  gap: 8px;
  align-items: center;
}
.wn-countdown__unit {
  text-align: center;
}
.wn-countdown__num {
  display: block;
  font-size: 36px;
  color: var(--wn-white);
  line-height: 1;
  min-width: 52px;
  background: rgba(0,0,0,0.15);
  border-radius: 8px;
  padding: 8px 4px;
}
.wn-countdown__unit-label {
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.wn-countdown__sep {
  font-size: 30px;
  color: rgba(255,255,255,0.5);
  padding-bottom: 16px;
}

/* ═══════════════════
   LIVE BANNER
   ═══════════════════ */
.wn-live-banner {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  border: 2px solid var(--wn-red-live);
  border-radius: var(--wn-radius-lg);
  padding: 24px 32px;
  max-width: 1200px;
  margin: 48px auto 0;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  animation: wn-glowPulse 2s infinite;
}
.wn-live-banner.is-live {
  display: flex;
}
.wn-live-banner__left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.wn-live-banner__dot-wrap {
  width: 44px;
  height: 44px;
  background: rgba(224,82,82,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wn-live-banner__dot {
  width: 16px;
  height: 16px;
  background: var(--wn-red-live);
  border-radius: 50%;
  animation: wn-pulse 1.5s infinite;
}
.wn-live-banner__title {
  color: var(--wn-white);
  font-size: 18px;
  font-weight: 600;
}
.wn-live-banner__subtitle {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-top: 2px;
}
.wn-live-banner__cta {
  background: var(--wn-red-live);
  color: white;
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: all 0.3s;
  flex-shrink: 0;
}
.wn-live-banner__cta:hover {
  background: #c94444;
}

/* ═══════════════════
   SECTION COMMON
   ═══════════════════ */
.wn-section {
  padding: 80px 48px;
  max-width: 1320px;
  margin: 0 auto;
}
.wn-section__header {
  text-align: center;
  margin-bottom: 48px;
}
.wn-section__overline {
  font-size: 12px;
  font-weight: 600;
  color: var(--wn-mint);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.wn-section__title {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 2px;
  line-height: 1;
}
.wn-section__subtitle {
  font-size: 16px;
  color: var(--wn-slate);
  margin-top: 6px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ═══════════════════
   CALENDAR SCHEDULE
   ═══════════════════ */
.wn-calendar {
  max-width: 900px;
  margin: 0 auto;
}
.wn-calendar__week {
  margin-bottom: 40px;
}
.wn-calendar__week-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--wn-slate);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--wn-border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.wn-calendar__week-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wn-mint);
}
.wn-calendar__week--current .wn-calendar__week-dot {
  animation: wn-pulse 2s infinite;
}
.wn-cal-row {
  display: flex;
  align-items: stretch;
  background: var(--wn-white);
  border: 1px solid var(--wn-border);
  border-radius: var(--wn-radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  margin-bottom: 12px;
}
.wn-cal-row:hover {
  border-color: var(--wn-mint);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateX(4px);
}
.wn-cal-row__date {
  width: 100px;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 12px;
  background: var(--wn-warm-gray);
  border-right: 1px solid var(--wn-border);
  text-align: center;
}
.wn-cal-row__day-name {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--wn-slate);
  margin-bottom: 2px;
}
.wn-cal-row__day-num {
  font-size: 36px;
  line-height: 1;
  color: var(--wn-charcoal);
}
.wn-cal-row__month {
  font-size: 11px;
  font-weight: 500;
  color: var(--wn-slate);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.wn-cal-row--today .wn-cal-row__date {
  background: var(--wn-mint);
}
.wn-cal-row--today .wn-cal-row__day-name,
.wn-cal-row--today .wn-cal-row__day-num,
.wn-cal-row--today .wn-cal-row__month {
  color: var(--wn-white);
}
.wn-cal-row--live .wn-cal-row__date {
  background: var(--wn-red-live);
}
.wn-cal-row--live .wn-cal-row__day-name,
.wn-cal-row--live .wn-cal-row__day-num,
.wn-cal-row--live .wn-cal-row__month {
  color: var(--wn-white);
}
.wn-cal-row__details {
  flex: 1;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.wn-cal-row__info {
  flex: 1;
}
.wn-cal-row__show-title {
  font-size: 22px;
  letter-spacing: 1.5px;
  color: var(--wn-mint);
  margin-bottom: 6px;
}
.wn-cal-row__meta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.wn-cal-row__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--wn-slate);
}
.wn-cal-row__meta svg {
  opacity: 0.5;
  flex-shrink: 0;
}
.wn-cal-row__meta strong {
  color: var(--wn-charcoal);
}
.wn-cal-row__brands {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.wn-cal-row__brand-pill {
  background: var(--wn-mint-light);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--wn-mint-dark);
}
.wn-cal-row__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.wn-cal-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.wn-cal-status--live {
  background: rgba(224,82,82,0.1);
  color: var(--wn-red-live);
}
.wn-cal-status--live::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--wn-red-live);
  border-radius: 50%;
  animation: wn-pulse 1.5s infinite;
}
.wn-cal-status--today {
  background: rgba(92,184,165,0.1);
  color: var(--wn-mint-dark);
}
.wn-cal-status--next {
  background: rgba(212,168,83,0.1);
  color: var(--wn-gold);
}
.wn-calendar__empty {
  text-align: center;
  padding: 32px 20px;
  color: var(--wn-slate);
  font-size: 14px;
  background: var(--wn-white);
  border-radius: var(--wn-radius-lg);
  border: 1px dashed var(--wn-border);
}

/* ── BUTTONS ── */
.wn-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.wn-btn--primary {
  background: var(--wn-mint);
  color: var(--wn-white);
}
.wn-btn--primary:hover {
  background: var(--wn-mint-dark);
}
.wn-btn--live {
  background: var(--wn-red-live);
  color: var(--wn-white);
}
.wn-btn--live:hover {
  background: #c94444;
}
.wn-btn-remind {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--wn-mint-light);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--wn-mint);
  flex-shrink: 0;
}
.wn-btn-remind:hover {
  background: var(--wn-mint);
  color: white;
}

/* ═══════════════════
   HOW IT WORKS
   ═══════════════════ */
.wn-how {
  border-top: 1px solid var(--wn-border);
  border-bottom: 1px solid var(--wn-border);
}
.wn-how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.wn-how__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--wn-mint-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--wn-mint);
}
.wn-how__num {
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--wn-mint);
  margin-bottom: 8px;
}
.wn-how__step-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--wn-charcoal);
}
.wn-how__step-text {
  font-size: 14px;
  color: var(--wn-slate);
  line-height: 1.6;
}

/* ═══════════════════
   HOSTS
   ═══════════════════ */
.wn-hosts__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.wn-host-card {
  background: var(--wn-white);
  border-radius: var(--wn-radius-lg);
  border: 1px solid var(--wn-border);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
}
.wn-host-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.wn-host-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--wn-mint-light), #d6ede7);
  font-size: 28px;
  color: var(--wn-mint);
}
.wn-host-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wn-host-card__name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}
.wn-host-card__specialty {
  font-size: 13px;
  color: var(--wn-mint);
  font-weight: 500;
  margin-bottom: 12px;
}
.wn-host-card__bio {
  font-size: 13px;
  color: var(--wn-slate);
  line-height: 1.6;
  flex: 1;
}
.wn-host-card__stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--wn-border);
}
.wn-host-card__stat-val {
  font-size: 22px;
  color: var(--wn-charcoal);
}
.wn-host-card__stat-label {
  font-size: 11px;
  color: var(--wn-slate);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ═══════════════════
   HIGHLIGHTS
   ═══════════════════ */
.wn-highlights {
  border-top: 1px solid var(--wn-border);
}
.wn-highlights__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.wn-highlight-card {
  background:#F0F0F0;
  border-radius: var(--wn-radius);
  border: 1px solid var(--wn-border);
  overflow: hidden;
  transition: all 0.3s;
}
.wn-highlight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.wn-highlight-card__img {
  height: 160px;
  background: linear-gradient(135deg, #e8e8e8, #d0d0d0);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.wn-highlight-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wn-highlight-card__sold {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--wn-gold);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.wn-highlight-card__body {
  padding: 14px 16px;
}
.wn-highlight-card__title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
.wn-highlight-card__prices {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wn-highlight-card__price-start {
  font-size: 13px;
  color: var(--wn-slate);
  text-decoration: line-through;
  opacity: 0.6;
}
.wn-highlight-card__price-sold {
  font-size: 22px;
  color: var(--wn-mint);
}

/* ═══════════════════
   NOTIFY / EMAIL SIGNUP
   ═══════════════════ */
.wn-notify {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.wn-notify::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(92,184,165,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.wn-notify__title {
  font-size: clamp(36px, 5vw, 52px);
  color: var(--wn-white);
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.wn-notify__text {
  color: rgba(255,255,255,0.5);
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.wn-notify__form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.wn-notify__input {
  flex: 1;
  min-width: 240px;
  padding: 16px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: var(--wn-white);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.wn-notify__input::placeholder {
  color: rgba(255,255,255,0.35);
}
.wn-notify__input:focus {
  border-color: var(--wn-mint);
}
.wn-notify__submit {
  padding: 16px 32px;
  border-radius: 100px;
  background: var(--wn-mint);
  color: white;
  border: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s;
}
.wn-notify__submit:hover {
  background: var(--wn-mint-dark);
}

/* ═══════════════════
   RESPONSIVE
   ═══════════════════ */
@media (max-width: 768px) {
  .wn-hero { padding: 60px 20px 50px; }
  .wn-section { padding: 56px 20px; }
  .wn-countdown { gap: 16px; padding: 16px 20px; }
  .wn-how__grid { grid-template-columns: 1fr; gap: 32px; }
  .wn-live-banner { flex-direction: column; text-align: center; margin: 32px 20px 0 !important; }
  .wn-hosts__grid { grid-template-columns: 1fr; }
  .wn-highlights__grid { grid-template-columns: repeat(2, 1fr); }
  .wn-cal-row { flex-direction: column; }
  .wn-cal-row__date {
    width: 100%; min-width: unset;
    flex-direction: row; gap: 8px;
    padding: 12px 20px;
    border-right: none; border-bottom: 1px solid var(--wn-border);
  }
  .wn-cal-row__day-num { font-size: 24px; }
  .wn-cal-row__details { flex-direction: column; align-items: flex-start; padding: 16px 20px; }
  .wn-cal-row__actions { width: 100%; }
  .wn-btn { flex: 1; justify-content: center; }
}
