/* ============================================================
   THE WINNER'S CIRCLE — Component Library
   Navigation, Buttons, Cards, Badges, Forms, Tables, Footer
   ============================================================ */

/* ======================
   NAVIGATION
   ====================== */
.wc-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--wc-nav-height);
  z-index: var(--wc-z-sticky);
  background: rgba(18,18,21,0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--wc-border);
  transition: background var(--wc-transition-base), box-shadow var(--wc-transition-base);
}

.wc-nav.wc-nav--scrolled {
  background: rgba(18,18,21,0.95);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.wc-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--wc-container-max);
  margin: 0 auto;
  padding: 0 var(--wc-space-6);
}

.wc-nav__brand {
  display: flex;
  align-items: center;
  gap: var(--wc-space-3);
  text-decoration: none;
  flex-shrink: 0;
}

.wc-nav__brand-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.wc-nav__brand-text {
  font-family: var(--wc-font-heading);
  font-size: var(--wc-text-lg);
  font-weight: 700;
  color: var(--wc-gold);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.wc-nav__links {
  display: flex;
  align-items: center;
  gap: var(--wc-space-1);
  list-style: none;
  padding: 0;
  margin: 0;
}

.wc-nav__link {
  display: inline-flex;
  align-items: center;
  padding: var(--wc-space-2) var(--wc-space-3);
  font-size: var(--wc-text-sm);
  font-weight: 500;
  color: var(--wc-text-secondary);
  text-decoration: none;
  border-radius: var(--wc-radius-sm);
  transition: color var(--wc-transition-fast), background var(--wc-transition-fast);
  white-space: nowrap;
}

.wc-nav__link:hover {
  color: var(--wc-text-primary);
  background: rgba(201,168,76,0.06);
}

.wc-nav__link--active {
  color: var(--wc-gold);
}

.wc-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--wc-space-2);
  padding: var(--wc-space-2) var(--wc-space-5);
  font-family: var(--wc-font-body);
  font-size: var(--wc-text-sm);
  font-weight: 600;
  color: var(--wc-charcoal);
  background: var(--wc-gold-gradient);
  border: none;
  border-radius: var(--wc-radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--wc-transition-fast), box-shadow var(--wc-transition-fast);
  white-space: nowrap;
}

.wc-nav__cta:hover {
  color: var(--wc-charcoal);
  transform: translateY(-1px);
  box-shadow: var(--wc-shadow-gold);
}

/* Mobile Menu Toggle */
.wc-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--wc-space-2);
  background: none;
  border: none;
  cursor: pointer;
  z-index: var(--wc-z-modal);
}

.wc-nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--wc-text-primary);
  border-radius: 2px;
  transition: transform var(--wc-transition-base), opacity var(--wc-transition-base);
}

.wc-nav__toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.wc-nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.wc-nav__toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.wc-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18,18,21,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: var(--wc-z-overlay);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--wc-space-2);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--wc-transition-base), visibility var(--wc-transition-base);
}

.wc-mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.wc-mobile-menu__link {
  font-family: var(--wc-font-heading);
  font-size: var(--wc-text-2xl);
  color: var(--wc-text-secondary);
  text-decoration: none;
  padding: var(--wc-space-3) var(--wc-space-6);
  transition: color var(--wc-transition-fast), transform var(--wc-transition-fast);
  transform: translateY(20px);
  opacity: 0;
}

.wc-mobile-menu.active .wc-mobile-menu__link {
  transform: translateY(0);
  opacity: 1;
}

.wc-mobile-menu__link:hover,
.wc-mobile-menu__link--active {
  color: var(--wc-gold);
}

/* Stagger mobile links */
.wc-mobile-menu.active .wc-mobile-menu__link:nth-child(1) { transition-delay: 0.05s; }
.wc-mobile-menu.active .wc-mobile-menu__link:nth-child(2) { transition-delay: 0.1s; }
.wc-mobile-menu.active .wc-mobile-menu__link:nth-child(3) { transition-delay: 0.15s; }
.wc-mobile-menu.active .wc-mobile-menu__link:nth-child(4) { transition-delay: 0.2s; }
.wc-mobile-menu.active .wc-mobile-menu__link:nth-child(5) { transition-delay: 0.25s; }
.wc-mobile-menu.active .wc-mobile-menu__link:nth-child(6) { transition-delay: 0.3s; }
.wc-mobile-menu.active .wc-mobile-menu__link:nth-child(7) { transition-delay: 0.35s; }
.wc-mobile-menu.active .wc-mobile-menu__link:nth-child(8) { transition-delay: 0.4s; }
.wc-mobile-menu.active .wc-mobile-menu__link:nth-child(9) { transition-delay: 0.45s; }
.wc-mobile-menu.active .wc-mobile-menu__link:nth-child(10) { transition-delay: 0.5s; }

@media (max-width: 992px) {
  .wc-nav__links {
    display: none;
  }

  .wc-nav__toggle {
    display: flex;
  }
}

/* ======================
   BUTTONS
   ====================== */
.wc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--wc-space-2);
  padding: var(--wc-space-3) var(--wc-space-6);
  font-family: var(--wc-font-body);
  font-size: var(--wc-text-sm);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: none;
  border-radius: var(--wc-radius-sm);
  cursor: pointer;
  transition: all var(--wc-transition-fast);
  white-space: nowrap;
}

.wc-btn--gold {
  color: var(--wc-charcoal);
  background: var(--wc-gold-gradient);
}

.wc-btn--gold:hover {
  color: var(--wc-charcoal);
  transform: translateY(-1px);
  box-shadow: var(--wc-shadow-gold);
}

.wc-btn--outline {
  color: var(--wc-gold);
  background: transparent;
  border: 1px solid var(--wc-gold);
}

.wc-btn--outline:hover {
  color: var(--wc-charcoal);
  background: var(--wc-gold);
}

.wc-btn--ghost {
  color: var(--wc-text-secondary);
  background: transparent;
}

.wc-btn--ghost:hover {
  color: var(--wc-text-primary);
  background: rgba(255,255,255,0.05);
}

.wc-btn--lg {
  padding: var(--wc-space-4) var(--wc-space-8);
  font-size: var(--wc-text-base);
  border-radius: var(--wc-radius-md);
}

.wc-btn--sm {
  padding: var(--wc-space-2) var(--wc-space-4);
  font-size: var(--wc-text-xs);
}

.wc-btn--pill {
  border-radius: var(--wc-radius-full);
}

.wc-btn--block {
  width: 100%;
}

/* Legacy button support */
.btn, .cta-button, .submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--wc-space-2);
  padding: var(--wc-space-3) var(--wc-space-6);
  font-family: var(--wc-font-body);
  font-size: var(--wc-text-sm);
  font-weight: 600;
  color: var(--wc-charcoal);
  background: var(--wc-gold-gradient);
  border: none;
  border-radius: var(--wc-radius-sm);
  cursor: pointer;
  transition: all var(--wc-transition-fast);
  text-decoration: none;
}

.btn:hover, .cta-button:hover, .submit-btn:hover {
  color: var(--wc-charcoal);
  transform: translateY(-1px);
  box-shadow: var(--wc-shadow-gold);
}

.btn-outline {
  color: var(--wc-gold);
  background: transparent;
  border: 1px solid var(--wc-gold);
}

.btn-outline:hover {
  color: var(--wc-charcoal);
  background: var(--wc-gold);
}

/* ======================
   CARDS
   ====================== */
.wc-card {
  background: var(--wc-surface);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius-lg);
  padding: var(--wc-space-6);
  transition: border-color var(--wc-transition-base), transform var(--wc-transition-base), box-shadow var(--wc-transition-base);
}

.wc-card:hover {
  border-color: var(--wc-border-strong);
  transform: translateY(-2px);
  box-shadow: var(--wc-shadow-md);
}

.wc-card--flat {
  border: none;
  background: var(--wc-surface);
}

.wc-card--flat:hover {
  transform: none;
  box-shadow: none;
}

.wc-card--raised {
  background: var(--wc-surface-raised);
}

.wc-card--gold-border {
  border-color: rgba(201,168,76,0.3);
}

.wc-card--gold-border:hover {
  border-color: var(--wc-gold);
  box-shadow: var(--wc-shadow-gold);
}

/* Legacy card support */
.card, .track-card, .video-card, .blog-card {
  background: var(--wc-surface);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius-lg);
  overflow: hidden;
  transition: border-color var(--wc-transition-base), transform var(--wc-transition-base), box-shadow var(--wc-transition-base);
}

.card:hover, .track-card:hover, .video-card:hover, .blog-card:hover {
  border-color: var(--wc-border-strong);
  transform: translateY(-3px);
  box-shadow: var(--wc-shadow-md);
}

/* ======================
   BADGES
   ====================== */
.wc-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--wc-space-1);
  padding: var(--wc-space-1) var(--wc-space-3);
  font-family: var(--wc-font-body);
  font-size: var(--wc-text-xs);
  font-weight: 600;
  line-height: 1.4;
  border-radius: var(--wc-radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.wc-badge--gold {
  color: var(--wc-charcoal);
  background: var(--wc-gold-gradient);
}

.wc-badge--gold-outline {
  color: var(--wc-gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
}

.wc-badge--premium {
  color: var(--wc-charcoal);
  background: var(--wc-gold-gradient);
  animation: wcGoldShimmer 3s ease-in-out infinite;
}

.wc-badge--free {
  color: #4CAF50;
  background: rgba(76,175,80,0.1);
  border: 1px solid rgba(76,175,80,0.3);
}

.wc-badge--surface {
  color: var(--wc-text-secondary);
  background: var(--wc-surface-raised);
}

.wc-badge--expert {
  color: #42A5F5;
  background: rgba(66,165,245,0.1);
  border: 1px solid rgba(66,165,245,0.3);
}

/* Legacy badge support */
.badge, .status-badge {
  display: inline-flex;
  align-items: center;
  padding: var(--wc-space-1) var(--wc-space-3);
  font-size: var(--wc-text-xs);
  font-weight: 600;
  border-radius: var(--wc-radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ======================
   SECTION HEADERS
   ====================== */
.wc-section-header {
  text-align: center;
  margin-bottom: var(--wc-space-12);
}

.wc-section-header__label {
  display: inline-flex;
  align-items: center;
  gap: var(--wc-space-2);
  font-family: var(--wc-font-body);
  font-size: var(--wc-text-xs);
  font-weight: 600;
  color: var(--wc-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--wc-space-4);
}

.wc-section-header__label::before,
.wc-section-header__label::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--wc-gold);
}

.wc-section-header__title {
  font-family: var(--wc-font-heading);
  font-size: var(--wc-text-3xl);
  color: var(--wc-text-primary);
  margin-bottom: var(--wc-space-4);
}

.wc-section-header__subtitle {
  font-size: var(--wc-text-lg);
  color: var(--wc-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ======================
   PAGE HEADERS
   ====================== */
.wc-page-header {
  padding: calc(var(--wc-nav-height) + var(--wc-space-12)) 0 var(--wc-space-12);
  text-align: center;
  background: var(--wc-hero-mesh), var(--wc-charcoal);
  border-bottom: 1px solid var(--wc-border);
}

.wc-page-header__title {
  font-family: var(--wc-font-heading);
  font-size: var(--wc-text-4xl);
  color: var(--wc-text-primary);
  margin-bottom: var(--wc-space-4);
}

.wc-page-header__subtitle {
  font-size: var(--wc-text-lg);
  color: var(--wc-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Legacy page header support */
.page-header {
  padding: calc(var(--wc-nav-height) + var(--wc-space-12)) 0 var(--wc-space-12);
  text-align: center;
  background: var(--wc-hero-mesh), var(--wc-charcoal);
  border-bottom: 1px solid var(--wc-border);
}

.page-header h1, .page-header .page-title {
  font-family: var(--wc-font-heading);
  font-size: var(--wc-text-4xl);
  color: var(--wc-text-primary);
  margin-bottom: var(--wc-space-3);
}

.page-header p, .page-header .page-subtitle {
  font-size: var(--wc-text-lg);
  color: var(--wc-text-secondary);
}

/* ======================
   FORMS
   ====================== */
.wc-input {
  width: 100%;
  padding: var(--wc-space-3) var(--wc-space-4);
  font-family: var(--wc-font-body);
  font-size: var(--wc-text-base);
  color: var(--wc-text-primary);
  background: var(--wc-surface);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius-sm);
  outline: none;
  transition: border-color var(--wc-transition-fast), box-shadow var(--wc-transition-fast);
}

.wc-input:focus {
  border-color: var(--wc-gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

.wc-input::placeholder {
  color: var(--wc-text-muted);
}

.wc-label {
  display: block;
  font-size: var(--wc-text-sm);
  font-weight: 500;
  color: var(--wc-text-secondary);
  margin-bottom: var(--wc-space-2);
}

.wc-form-group {
  margin-bottom: var(--wc-space-5);
}

/* Legacy form support */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="url"],
textarea,
select {
  font-family: var(--wc-font-body);
  font-size: var(--wc-text-base);
  color: var(--wc-text-primary);
  background: var(--wc-surface);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius-sm);
  padding: var(--wc-space-3) var(--wc-space-4);
  outline: none;
  transition: border-color var(--wc-transition-fast), box-shadow var(--wc-transition-fast);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
textarea:focus,
select:focus {
  border-color: var(--wc-gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

/* ======================
   STAT CARDS
   ====================== */
.wc-stat {
  text-align: center;
  padding: var(--wc-space-6);
}

.wc-stat__value {
  font-family: var(--wc-font-mono);
  font-size: var(--wc-text-3xl);
  font-weight: 700;
  color: var(--wc-gold);
  line-height: 1;
  margin-bottom: var(--wc-space-2);
}

.wc-stat__label {
  font-size: var(--wc-text-sm);
  color: var(--wc-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.wc-stat__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto var(--wc-space-4);
  border-radius: var(--wc-radius-md);
  background: rgba(201,168,76,0.1);
  color: var(--wc-gold);
}

/* ======================
   PRICING CARDS
   ====================== */
.wc-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--wc-space-6);
  align-items: start;
}

.wc-pricing-card {
  background: var(--wc-surface);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius-lg);
  padding: var(--wc-space-8);
  text-align: center;
  transition: transform var(--wc-transition-base), box-shadow var(--wc-transition-base);
  position: relative;
}

.wc-pricing-card:hover {
  transform: translateY(-4px);
}

.wc-pricing-card--featured {
  border-color: var(--wc-gold);
  box-shadow: var(--wc-shadow-gold-lg);
  transform: scale(1.03);
  z-index: 2;
}

.wc-pricing-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.wc-pricing-card__name {
  font-family: var(--wc-font-heading);
  font-size: var(--wc-text-xl);
  color: var(--wc-text-primary);
  margin-bottom: var(--wc-space-4);
}

.wc-pricing-card__price {
  font-family: var(--wc-font-mono);
  font-size: var(--wc-text-4xl);
  font-weight: 700;
  color: var(--wc-gold);
  line-height: 1;
  margin-bottom: var(--wc-space-2);
}

.wc-pricing-card__period {
  font-size: var(--wc-text-sm);
  color: var(--wc-text-muted);
  margin-bottom: var(--wc-space-6);
}

.wc-pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--wc-space-8);
  text-align: left;
}

.wc-pricing-card__features li {
  display: flex;
  align-items: center;
  gap: var(--wc-space-3);
  padding: var(--wc-space-2) 0;
  font-size: var(--wc-text-sm);
  color: var(--wc-text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.wc-pricing-card__features li i {
  color: var(--wc-gold);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

@media (max-width: 992px) {
  .wc-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .wc-pricing-card--featured {
    transform: none;
    order: -1;
  }

  .wc-pricing-card--featured:hover {
    transform: translateY(-4px);
  }
}

/* ======================
   TABLES
   ====================== */
.wc-table-wrap {
  overflow-x: auto;
  border-radius: var(--wc-radius-lg);
  border: 1px solid var(--wc-border);
}

.wc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--wc-text-sm);
}

.wc-table th {
  padding: var(--wc-space-4) var(--wc-space-4);
  text-align: left;
  font-weight: 600;
  font-size: var(--wc-text-xs);
  color: var(--wc-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--wc-surface);
  border-bottom: 1px solid var(--wc-border);
  white-space: nowrap;
}

.wc-table td {
  padding: var(--wc-space-3) var(--wc-space-4);
  color: var(--wc-text-primary);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  vertical-align: middle;
}

.wc-table tbody tr {
  transition: background var(--wc-transition-fast);
}

.wc-table tbody tr:hover {
  background: rgba(201,168,76,0.03);
}

.wc-table .wc-check {
  color: var(--wc-gold);
}

.wc-table .wc-cross {
  color: var(--wc-text-muted);
}

/* Legacy table support */
table {
  width: 100%;
  border-collapse: collapse;
}

/* ======================
   FILTER TABS
   ====================== */
.wc-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wc-space-2);
  margin-bottom: var(--wc-space-8);
  justify-content: center;
}

.wc-filter-tab {
  padding: var(--wc-space-2) var(--wc-space-5);
  font-family: var(--wc-font-body);
  font-size: var(--wc-text-sm);
  font-weight: 500;
  color: var(--wc-text-secondary);
  background: var(--wc-surface);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius-full);
  cursor: pointer;
  transition: all var(--wc-transition-fast);
}

.wc-filter-tab:hover {
  color: var(--wc-text-primary);
  border-color: var(--wc-border-strong);
}

.wc-filter-tab--active,
.wc-filter-tab.active {
  color: var(--wc-charcoal);
  background: var(--wc-gold);
  border-color: var(--wc-gold);
}

/* Legacy filter support */
.filter-btn, .filter-tabs button {
  padding: var(--wc-space-2) var(--wc-space-5);
  font-family: var(--wc-font-body);
  font-size: var(--wc-text-sm);
  font-weight: 500;
  color: var(--wc-text-secondary);
  background: var(--wc-surface);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius-full);
  cursor: pointer;
  transition: all var(--wc-transition-fast);
}

.filter-btn:hover, .filter-tabs button:hover {
  color: var(--wc-text-primary);
  border-color: var(--wc-border-strong);
}

.filter-btn.active, .filter-tabs button.active {
  color: var(--wc-charcoal);
  background: var(--wc-gold);
  border-color: var(--wc-gold);
}

/* ======================
   PROGRESS BARS
   ====================== */
.wc-progress {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--wc-radius-full);
  overflow: hidden;
}

.wc-progress__bar {
  height: 100%;
  border-radius: var(--wc-radius-full);
  background: var(--wc-gold-gradient);
  transition: width 1s ease-out;
}

/* ======================
   ALERTS & MESSAGES
   ====================== */
.wc-alert {
  padding: var(--wc-space-4) var(--wc-space-5);
  border-radius: var(--wc-radius-md);
  font-size: var(--wc-text-sm);
  margin-bottom: var(--wc-space-4);
}

.wc-alert--error {
  color: #FFCDD2;
  background: rgba(229,57,53,0.1);
  border: 1px solid rgba(229,57,53,0.2);
}

.wc-alert--success {
  color: #C8E6C9;
  background: rgba(76,175,80,0.1);
  border: 1px solid rgba(76,175,80,0.2);
}

.wc-alert--info {
  color: #BBDEFB;
  background: rgba(66,165,245,0.1);
  border: 1px solid rgba(66,165,245,0.2);
}

/* Legacy error support */
.error-message {
  color: #FFCDD2;
  background: rgba(229,57,53,0.1);
  border: 1px solid rgba(229,57,53,0.2);
  padding: var(--wc-space-4) var(--wc-space-5);
  border-radius: var(--wc-radius-md);
  font-size: var(--wc-text-sm);
  margin-bottom: var(--wc-space-4);
}

/* ======================
   FOOTER
   ====================== */
.wc-footer {
  background: var(--wc-surface);
  border-top: 1px solid var(--wc-border);
  padding: var(--wc-space-16) 0 var(--wc-space-8);
}

.wc-footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--wc-space-10);
  max-width: var(--wc-container-max);
  margin: 0 auto;
  padding: 0 var(--wc-space-6);
}

.wc-footer__brand-text {
  font-family: var(--wc-font-heading);
  font-size: var(--wc-text-xl);
  color: var(--wc-gold);
  margin-bottom: var(--wc-space-4);
}

.wc-footer__brand-desc {
  font-size: var(--wc-text-sm);
  color: var(--wc-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--wc-space-6);
}

.wc-footer__heading {
  font-family: var(--wc-font-heading);
  font-size: var(--wc-text-base);
  color: var(--wc-gold);
  margin-bottom: var(--wc-space-4);
  font-weight: 600;
}

.wc-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wc-footer__links li {
  margin-bottom: var(--wc-space-3);
}

.wc-footer__links a {
  font-size: var(--wc-text-sm);
  color: var(--wc-text-secondary);
  text-decoration: none;
  transition: color var(--wc-transition-fast);
}

.wc-footer__links a:hover {
  color: var(--wc-gold);
}

.wc-footer__social {
  display: flex;
  gap: var(--wc-space-3);
  margin-top: var(--wc-space-2);
}

.wc-footer__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--wc-radius-full);
  border: 1px solid var(--wc-border);
  color: var(--wc-text-secondary);
  transition: all var(--wc-transition-fast);
}

.wc-footer__social-icon:hover {
  color: var(--wc-gold);
  border-color: var(--wc-gold);
  background: rgba(201,168,76,0.08);
}

.wc-footer__bottom {
  margin-top: var(--wc-space-12);
  padding-top: var(--wc-space-6);
  border-top: 1px solid var(--wc-border);
  max-width: var(--wc-container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--wc-space-6);
  padding-right: var(--wc-space-6);
}

.wc-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--wc-text-xs);
  color: var(--wc-text-muted);
}

.wc-footer__bottom a {
  color: var(--wc-text-muted);
  text-decoration: none;
}

.wc-footer__bottom a:hover {
  color: var(--wc-gold);
}

@media (max-width: 992px) {
  .wc-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .wc-footer__grid {
    grid-template-columns: 1fr;
  }

  .wc-footer__bottom-inner {
    flex-direction: column;
    gap: var(--wc-space-3);
    text-align: center;
  }
}

/* Legacy footer support */
.footer {
  background: var(--wc-surface);
  border-top: 1px solid var(--wc-border);
  padding: var(--wc-space-16) 0 var(--wc-space-8);
  color: var(--wc-text-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--wc-space-10);
  max-width: var(--wc-container-max);
  margin: 0 auto;
  padding: 0 var(--wc-space-6);
}

.footer-column h4 {
  font-family: var(--wc-font-heading);
  color: var(--wc-gold);
  font-size: var(--wc-text-base);
  margin-bottom: var(--wc-space-4);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: var(--wc-space-3);
}

.footer-links a {
  color: var(--wc-text-secondary);
  font-size: var(--wc-text-sm);
}

.footer-links a:hover {
  color: var(--wc-gold);
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ======================
   LOCKED CONTENT OVERLAY
   ====================== */
.wc-locked-overlay {
  position: relative;
  overflow: hidden;
}

.wc-locked-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--wc-surface) 0%, transparent 100%);
  pointer-events: none;
}

.wc-locked-cta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: var(--wc-space-8) var(--wc-space-4) var(--wc-space-6);
  z-index: 2;
}

/* ======================
   TOOLTIPS
   ====================== */
.wc-tooltip {
  position: relative;
}

.wc-tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  padding: var(--wc-space-2) var(--wc-space-3);
  font-size: var(--wc-text-xs);
  color: var(--wc-text-primary);
  background: var(--wc-surface-raised);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius-sm);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--wc-transition-fast);
  pointer-events: none;
}

.wc-tooltip:hover::after {
  opacity: 1;
  visibility: visible;
}

/* ======================
   EMPTY STATES
   ====================== */
.wc-empty {
  text-align: center;
  padding: var(--wc-space-16) var(--wc-space-6);
}

.wc-empty__icon {
  font-size: 3rem;
  margin-bottom: var(--wc-space-4);
  opacity: 0.5;
}

.wc-empty__title {
  font-family: var(--wc-font-heading);
  font-size: var(--wc-text-xl);
  color: var(--wc-text-primary);
  margin-bottom: var(--wc-space-2);
}

.wc-empty__desc {
  color: var(--wc-text-secondary);
  font-size: var(--wc-text-sm);
}
