/* VivaColombia v2 — paste-ready drop-in for css/styles.css
   Evolves the existing token set. 100% vanilla CSS. No framework.
   Direction chosen: Editorial · Fraunces · tri-accent (gold + red + blue) */

:root {
  /* ============ BRAND ============ */
  --vc-gold:        #D4A017;
  --vc-gold-600:    #B8860B;
  --vc-gold-100:    #FCEFC4;
  --vc-gold-50:     #FFF9E6;

  --vc-blue:        #1E3A8A;
  --vc-blue-700:    #152A63;
  --vc-blue-100:    #DCE3F5;
  --vc-blue-50:     #EEF2FA;

  --vc-red:         #C8342B;
  --vc-red-700:     #A02621;
  --vc-red-100:     #F9D9D6;

  /* legacy aliases — keep your current code compiling */
  --primary:        var(--vc-gold);
  --primary-dark:   var(--vc-gold-600);
  --primary-light:  var(--vc-gold-100);
  --secondary:      var(--vc-n-800);
  --accent:         var(--vc-blue);
  --bg:             #ffffff;
  --bg-light:       var(--vc-n-50);
  --bg-dark:        var(--vc-n-900);
  --text:           var(--vc-n-800);
  --text-light:     var(--vc-n-500);
  --text-muted:     var(--vc-n-400);
  --border:         var(--vc-line);

  /* ============ NEUTRALS (warm) ============ */
  --vc-n-50:  #FAFAF7;
  --vc-n-100: #F3F2ED;
  --vc-n-200: #E6E3D8;
  --vc-n-300: #CFCBBB;
  --vc-n-400: #9B9685;
  --vc-n-500: #6B6758;
  --vc-n-600: #4A4738;
  --vc-n-700: #2F2D24;
  --vc-n-800: #1C1B16;
  --vc-n-900: #0F0E0A;

  --vc-cream:  #F9F5EC;
  --vc-line:   #E9E5DC;

  /* ============ SEMANTIC ============ */
  --vc-success: #1F8A5A;
  --vc-warning: #C9831A;
  --vc-danger:  var(--vc-red);
  --vc-info:    var(--vc-blue);

  /* ============ TYPE ============ */
  --vc-font-body:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --vc-font-display:   'Fraunces', 'Georgia', serif;     /* editorial direction */
  --vc-font-mono:      'JetBrains Mono', ui-monospace, monospace;

  --vc-display:           var(--vc-font-display);
  --vc-display-weight:    900;
  --vc-display-transform: none;
  --vc-display-tracking:  -.02em;
  --vc-headline-family:   var(--vc-font-display);

  /* 9-step size scale */
  --vc-text-xs:   11px;
  --vc-text-sm:   13px;
  --vc-text-base: 15px;
  --vc-text-md:   17px;
  --vc-text-lg:   20px;
  --vc-text-xl:   24px;
  --vc-text-2xl:  32px;
  --vc-text-3xl:  44px;
  --vc-text-4xl:  60px;
  --vc-text-5xl:  84px;

  /* ============ SPACING (4pt) ============ */
  --vc-s-1:  4px;  --vc-s-2:  8px;  --vc-s-3:  12px; --vc-s-4:  16px;
  --vc-s-5:  24px; --vc-s-6:  32px; --vc-s-7:  48px; --vc-s-8:  64px; --vc-s-9:  96px;

  /* ============ RADIUS ============ */
  --vc-r-xs: 4px;  --vc-r-sm: 8px;  --vc-r-md: 12px; --vc-r-lg: 20px; --vc-r-xl: 28px; --vc-r-pill: 9999px;
  --vc-card-radius: 16px;
  --vc-btn-radius:  12px;

  /* ============ ELEVATION ============ */
  --vc-sh-xs: 0 1px 2px rgba(15,14,10,.06);
  --vc-sh-sm: 0 2px 6px rgba(15,14,10,.06), 0 1px 2px rgba(15,14,10,.04);
  --vc-sh-md: 0 8px 24px rgba(15,14,10,.08), 0 2px 6px rgba(15,14,10,.04);
  --vc-sh-lg: 0 24px 56px rgba(15,14,10,.14), 0 4px 12px rgba(15,14,10,.06);
  --vc-sh-xl: 0 40px 80px rgba(15,14,10,.18);

  /* ============ MOTION ============ */
  --vc-m-micro: 120ms cubic-bezier(.2,.8,.2,1);
  --vc-m-ui:    200ms cubic-bezier(.2,.8,.2,1);
  --vc-m-entry: 320ms cubic-bezier(.2,.8,.2,1);
  --vc-m-scene: 480ms cubic-bezier(.2,.8,.2,1);
}

/* ========== RESET + BASE ========== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: var(--vc-font-body); color: var(--vc-n-800); background: #fff; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ========== BUTTONS ========== */
.vc-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font: 700 14px/1 var(--vc-font-body);
  padding: 12px 20px; border-radius: var(--vc-btn-radius);
  border: 1.5px solid transparent; transition: all var(--vc-m-ui);
  text-decoration: none; cursor: pointer;
}
.vc-btn--gold    { background: var(--vc-gold); color: var(--vc-n-900); }
.vc-btn--gold:hover { background: var(--vc-gold-600); color: #fff; }
.vc-btn--ink     { background: var(--vc-n-900); color: #fff; }
.vc-btn--ink:hover { background: var(--vc-n-700); }
.vc-btn--red     { background: var(--vc-red); color: #fff; }
.vc-btn--red:hover { background: var(--vc-red-700); }
.vc-btn--ghost   { background: transparent; color: var(--vc-n-900); border-color: var(--vc-line); }
.vc-btn--ghost:hover { background: var(--vc-n-100); }
.vc-btn--lg  { padding: 16px 26px; font-size: 15px; }
.vc-btn--sm  { padding: 8px 14px; font-size: 13px; }

/* ========== LAYOUT ========== */
.vc-container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

/* ========== TOP BAR + HEADER ========== */
.vc-topbar {
  background: var(--vc-n-900); color: rgba(255,255,255,.75);
  font-size: var(--vc-text-xs); font-family: var(--vc-font-mono);
  letter-spacing: .12em; text-transform: uppercase;
}
.vc-topbar__inner {
  max-width: 1240px; margin: 0 auto; padding: 10px 20px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.vc-topbar__left { display: flex; gap: 20px; }
.vc-topbar__left span { display: inline-flex; gap: 6px; align-items: center; }
.vc-topbar__right { display: flex; gap: 14px; align-items: center; }
.vc-lang {
  display: inline-flex; padding: 2px; gap: 2px;
  background: rgba(255,255,255,.06); border-radius: 999px;
}
.vc-lang button {
  border: 0; background: transparent; cursor: pointer;
  padding: 5px 10px; border-radius: 999px;
  font: 700 10px/1 var(--vc-font-mono); letter-spacing: .12em;
  color: rgba(255,255,255,.7);
}
.vc-lang button.active { background: var(--vc-gold); color: var(--vc-n-900); }

.vc-header {
  background: #fff; border-bottom: 1px solid var(--vc-line);
  position: sticky; top: 0; z-index: 30;
}
.vc-header__inner {
  max-width: 1240px; margin: 0 auto; padding: 16px 20px;
  display: flex; align-items: center; gap: 20px;
}
.vc-logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--vc-font-display);
  font-weight: var(--vc-display-weight);
  text-transform: var(--vc-display-transform);
  letter-spacing: var(--vc-display-tracking);
  font-size: 20px; color: var(--vc-n-900);
}
.vc-logo__mark {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, var(--vc-gold) 0%, var(--vc-red) 50%, var(--vc-blue) 100%);
}
.vc-nav { display: flex; gap: 6px; }
.vc-nav a {
  padding: 8px 14px; border-radius: 999px;
  font: 600 14px/1 var(--vc-font-body); color: var(--vc-n-700);
  transition: background var(--vc-m-ui);
}
.vc-nav a:hover { background: var(--vc-n-100); }
.vc-nav a.active { background: rgba(212,160,23,.12); color: var(--vc-n-900); }
.vc-header__spacer { flex: 1; }
.vc-search {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 14px; background: var(--vc-n-100);
  border-radius: 999px; min-width: 280px;
  color: var(--vc-n-500);
}
.vc-search input { background: transparent; border: 0; outline: 0; flex: 1; font: 500 13px/1 var(--vc-font-body); color: var(--vc-n-800); }

/* ========== HERO ========== */
.vc-hero {
  padding: 64px 0 72px;
  background:
    radial-gradient(circle at 10% 0%, rgba(212,160,23,.12), transparent 40%),
    radial-gradient(circle at 90% 100%, rgba(30,58,138,.08), transparent 45%),
    var(--vc-cream);
  border-bottom: 1px solid var(--vc-line);
}
.vc-hero__inner {
  max-width: 1240px; margin: 0 auto; padding: 0 20px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center;
}
.vc-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font: 700 12px/1 var(--vc-font-mono); letter-spacing: .2em;
  color: var(--vc-red); text-transform: uppercase;
}
.vc-eyebrow .pip { width: 8px; height: 8px; border-radius: 50%; background: var(--vc-red); animation: vc-pulse 2s ease-in-out infinite; }
@keyframes vc-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }

.vc-display {
  font-family: var(--vc-font-display);
  font-weight: var(--vc-display-weight);
  text-transform: var(--vc-display-transform);
  letter-spacing: var(--vc-display-tracking);
  font-size: clamp(52px, 6vw, 84px);
  line-height: .96;
  color: var(--vc-n-900);
  margin: 20px 0 20px;
  text-wrap: balance;
}
.vc-hl-gold { background: linear-gradient(180deg, transparent 58%, rgba(212,160,23,.55) 58% 92%, transparent 92%); padding: 0 .1em; }
.vc-hl-blue { color: var(--vc-blue); }
.vc-hl-red  { color: var(--vc-red); }

.vc-lead { font-size: var(--vc-text-md); line-height: 1.55; color: var(--vc-n-700); max-width: 54ch; }
.vc-cta-row { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

.vc-hero__art {
  position: relative; aspect-ratio: 4/5;
  border-radius: var(--vc-r-xl); overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(0,0,0,.05) 0 10px, rgba(0,0,0,0) 10px 24px),
    linear-gradient(180deg, var(--vc-n-200), var(--vc-n-300));
  border: 1px solid var(--vc-line);
}
.vc-hero__art-label {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  text-align: center; font: 700 11px/1.4 var(--vc-font-mono);
  letter-spacing: .2em; text-transform: uppercase; color: var(--vc-n-700);
}
.vc-hero__art-label strong { display: block; font-size: 14px; margin-bottom: 4px; }

/* ========== SECTION + CARD GRID ========== */
.vc-section { padding: 72px 0; }
.vc-section__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 20px; margin-bottom: 36px; flex-wrap: wrap;
}
.vc-section__head h2 {
  font-family: var(--vc-font-display); font-weight: var(--vc-display-weight);
  text-transform: var(--vc-display-transform); letter-spacing: var(--vc-display-tracking);
  font-size: clamp(32px, 4vw, 52px); line-height: 1; color: var(--vc-n-900);
  margin: 12px 0 8px;
}
.vc-section__head p { color: var(--vc-n-600); max-width: 56ch; }

.vc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1000px) { .vc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .vc-grid { grid-template-columns: 1fr; } }

/* ========== PILLAR GRID ========== */
.vc-pillars {
  max-width: 1240px; margin: 0 auto; padding: 0 20px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: -32px; position: relative; z-index: 4;
}
@media (max-width: 900px) { .vc-pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .vc-pillars { grid-template-columns: 1fr; } }
.vc-pillar {
  background: #fff; border: 1px solid var(--vc-line);
  border-radius: var(--vc-r-lg); padding: 22px;
  display: flex; justify-content: space-between; align-items: flex-end;
  min-height: 160px; transition: all var(--vc-m-ui);
  cursor: pointer;
}
.vc-pillar:hover { transform: translateY(-2px); box-shadow: var(--vc-sh-md); }
.vc-pillar--gold { background: var(--vc-gold); color: var(--vc-n-900); border-color: transparent; }
.vc-pillar--blue { background: var(--vc-blue); color: #fff; border-color: transparent; }
.vc-pillar--red  { background: var(--vc-red);  color: #fff; border-color: transparent; }
.vc-pillar--ink  { background: var(--vc-n-900); color: #fff; border-color: transparent; }
.vc-pillar__tag {
  font: 700 11px/1 var(--vc-font-mono); letter-spacing: .18em;
  text-transform: uppercase; opacity: .7;
}
.vc-pillar h3 {
  font-family: var(--vc-font-display); font-weight: var(--vc-display-weight);
  text-transform: var(--vc-display-transform); letter-spacing: var(--vc-display-tracking);
  font-size: 28px; line-height: 1; margin: 10px 0 8px;
}
.vc-pillar p { font-size: 13px; line-height: 1.45; opacity: .82; max-width: 28ch; }
.vc-pillar__arrow {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,.08); display: inline-flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.vc-pillar--blue .vc-pillar__arrow, .vc-pillar--red .vc-pillar__arrow, .vc-pillar--ink .vc-pillar__arrow {
  background: rgba(255,255,255,.15);
}

/* ========== EVENT CARD ========== */
.vc-evcard {
  background: #fff; border: 1px solid var(--vc-line);
  border-radius: var(--vc-card-radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: all var(--vc-m-ui); cursor: pointer; text-decoration: none; color: inherit;
}
.vc-evcard:hover { transform: translateY(-2px); box-shadow: var(--vc-sh-md); }
.vc-evcard__media {
  position: relative; aspect-ratio: 16/10;
  background: var(--vc-n-200);
}
.vc-evcard__date {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: #fff; border-radius: 10px; padding: 6px 10px;
  text-align: center; box-shadow: var(--vc-sh-sm);
}
.vc-evcard__date .mo { font: 700 10px/1 var(--vc-font-mono); letter-spacing: .16em; color: var(--vc-red); text-transform: uppercase; }
.vc-evcard__date .d  { font: 800 20px/1 var(--vc-font-body); color: var(--vc-n-900); margin-top: 2px; }
.vc-evcard__price {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: var(--vc-gold); color: var(--vc-n-900);
  font: 800 12px/1 var(--vc-font-body);
  padding: 6px 11px; border-radius: 999px;
}
.vc-evcard__price--free { background: var(--vc-success); color: #fff; }
.vc-evcard__art {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, rgba(0,0,0,.05) 0 8px, rgba(0,0,0,0) 8px 18px);
  display: flex; align-items: center; justify-content: center;
  font: 700 11px/1.4 var(--vc-font-mono); letter-spacing: .2em;
  text-transform: uppercase; color: var(--vc-n-500);
  text-align: center;
}
.vc-evcard__body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.vc-evcard__cat  { font: 700 11px/1 var(--vc-font-mono); letter-spacing: .16em; color: var(--vc-blue); text-transform: uppercase; }
.vc-evcard h3    { font: 700 18px/1.25 var(--vc-font-body); color: var(--vc-n-900); text-wrap: balance; }
.vc-evcard__venue { font-size: 13px; color: var(--vc-n-500); display: flex; align-items: center; gap: 6px; }
.vc-evcard__foot  {
  margin-top: auto; padding-top: 12px;
  border-top: 1px solid var(--vc-line);
  display: flex; justify-content: space-between; align-items: center;
}
.vc-evcard__promoter { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--vc-n-600); }
.vc-evcard__avatar { width: 24px; height: 24px; border-radius: 50%; background: var(--vc-n-200); }
.vc-evcard__cta { font: 700 13px/1 var(--vc-font-body); color: var(--vc-gold-600); display: inline-flex; gap: 6px; align-items: center; }

/* ========== FOOTER ========== */
.vc-footer { background: var(--vc-n-900); color: rgba(255,255,255,.75); padding: 72px 0 32px; margin-top: 96px; }
.vc-footer__inner { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.vc-footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.6fr; gap: 32px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 900px) { .vc-footer__grid { grid-template-columns: 1fr 1fr; } }
.vc-footer h6 {
  font: 700 11px/1 var(--vc-font-mono); letter-spacing: .2em;
  color: var(--vc-gold); text-transform: uppercase; margin-bottom: 14px;
}
.vc-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.vc-footer__bottom {
  padding-top: 20px; display: flex; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,.5); flex-wrap: wrap; gap: 12px;
}
.vc-sub { display: flex; gap: 6px; margin-top: 10px; }
.vc-sub input {
  flex: 1; padding: 10px 14px; border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04); color: #fff; border-radius: 999px;
  font: 500 13px/1 var(--vc-font-body); outline: 0;
}
.vc-sub button {
  padding: 10px 16px; background: var(--vc-gold); color: var(--vc-n-900);
  border: 0; border-radius: 999px; font: 700 12px/1 var(--vc-font-body); cursor: pointer;
}

/* ========== MOBILE DRAWER / HEADER ========== */
.vc-menu-btn {
  display: none;
  background: transparent; border: 0; cursor: pointer;
  width: 44px; height: 44px; border-radius: 10px;
  align-items: center; justify-content: center;
  font-size: 20px; color: var(--vc-n-800);
}
.vc-menu-btn:hover { background: var(--vc-n-100); }
.vc-drawer {
  position: fixed; inset: 0 0 0 auto; width: min(340px, 86vw);
  background: #fff; border-left: 1px solid var(--vc-line);
  padding: 72px 20px 24px; z-index: 80;
  transform: translateX(100%); transition: transform var(--vc-m-scene);
  box-shadow: var(--vc-sh-xl);
  overflow-y: auto;
}
.vc-menu-open .vc-drawer { transform: translateX(0); }
.vc-menu-open::before {
  content: ''; position: fixed; inset: 0;
  background: rgba(15,14,10,.4); backdrop-filter: blur(2px);
  z-index: 70;
}
.vc-drawer__inner { display: flex; flex-direction: column; gap: 2px; }
.vc-drawer__inner a {
  padding: 14px 12px; border-radius: 10px;
  font: 600 16px/1 var(--vc-font-body); color: var(--vc-n-800);
}
.vc-drawer__inner a:hover { background: var(--vc-n-100); }
.vc-drawer__inner hr { border: 0; border-top: 1px solid var(--vc-line); margin: 12px 0; }

@media (max-width: 1100px) {
  .vc-header__search { display: none; }
  .vc-hide-md { display: none !important; }
}
@media (max-width: 900px) {
  .vc-nav { display: none; }
  .vc-menu-btn { display: inline-flex; }
}
@media (max-width: 760px) {
  .vc-hero__inner { grid-template-columns: 1fr; }
  .vc-hero__art { max-width: 320px; margin: 0 auto; }
  .vc-hide-sm { display: none !important; }
  .vc-topbar__left { gap: 14px; }
}

/* =====================================================================
   Tier-2 components — page headers, filters, listings, detail, forms,
   news, auth, dashboard, giveaway, tables. All used by the 46 pages.
   ===================================================================== */

/* ========== PAGE HEADER (non-home hero) ========== */
.vc-pagehead {
  padding: 56px 0 40px;
  background:
    radial-gradient(circle at 15% 0%, rgba(212,160,23,.10), transparent 40%),
    radial-gradient(circle at 90% 100%, rgba(30,58,138,.08), transparent 45%),
    var(--vc-cream);
  border-bottom: 1px solid var(--vc-line);
}
.vc-pagehead__inner { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.vc-pagehead h1 {
  font-family: var(--vc-font-display);
  font-weight: var(--vc-display-weight);
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: .98; letter-spacing: var(--vc-display-tracking);
  color: var(--vc-n-900); margin: 14px 0 16px; text-wrap: balance;
  max-width: 18ch;
}
.vc-pagehead p.lead {
  font-size: var(--vc-text-md); color: var(--vc-n-600);
  max-width: 60ch; line-height: 1.55;
}
.vc-pagehead__actions { margin-top: 24px; display: flex; gap: 10px; flex-wrap: wrap; }
.vc-pagehead__breadcrumb {
  font: 600 12px/1 var(--vc-font-mono); letter-spacing: .14em;
  text-transform: uppercase; color: var(--vc-n-500);
  display: flex; gap: 10px; align-items: center;
}
.vc-pagehead__breadcrumb a:hover { color: var(--vc-gold-600); }

/* ========== FILTER BAR ========== */
.vc-filters {
  background: #fff; border: 1px solid var(--vc-line);
  border-radius: var(--vc-r-lg); padding: 14px;
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
  box-shadow: var(--vc-sh-xs);
  margin-bottom: 28px;
}
.vc-filters__label {
  font: 700 11px/1 var(--vc-font-mono); letter-spacing: .16em;
  text-transform: uppercase; color: var(--vc-n-500);
  padding-left: 4px; padding-right: 4px;
}
.vc-chip {
  padding: 8px 14px; border: 1px solid var(--vc-line);
  border-radius: 999px; background: #fff;
  font: 600 13px/1 var(--vc-font-body); color: var(--vc-n-700);
  cursor: pointer; transition: all var(--vc-m-ui);
  display: inline-flex; gap: 6px; align-items: center;
}
.vc-chip:hover { border-color: var(--vc-n-400); }
.vc-chip.active, .vc-chip[aria-pressed="true"] {
  background: var(--vc-n-900); color: #fff; border-color: var(--vc-n-900);
}
.vc-chip--gold.active { background: var(--vc-gold); color: var(--vc-n-900); border-color: var(--vc-gold); }
.vc-filters__spacer { flex: 1; }
.vc-sort { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--vc-n-600); }
.vc-sort select {
  border: 1px solid var(--vc-line); border-radius: 999px;
  padding: 8px 12px; font: 600 13px var(--vc-font-body);
  background: #fff; color: var(--vc-n-800); cursor: pointer;
}

/* ========== VENDOR / BUSINESS / INFLUENCER CARDS ========== */
.vc-card {
  background: #fff; border: 1px solid var(--vc-line);
  border-radius: var(--vc-card-radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: all var(--vc-m-ui); cursor: pointer;
  color: inherit; text-decoration: none;
}
.vc-card:hover { transform: translateY(-2px); box-shadow: var(--vc-sh-md); border-color: var(--vc-n-200); }
.vc-card__media {
  position: relative; aspect-ratio: 4/3;
  background: repeating-linear-gradient(135deg, rgba(0,0,0,.05) 0 8px, rgba(0,0,0,0) 8px 18px), var(--vc-n-200);
}
.vc-card__media--round { aspect-ratio: 1/1; border-radius: 50%; margin: 20px auto 8px; width: 120px; height: 120px; overflow: hidden; }
.vc-card__media-label {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font: 700 11px/1.4 var(--vc-font-mono); letter-spacing: .2em;
  text-transform: uppercase; color: var(--vc-n-500); text-align: center;
}
.vc-card__badge {
  position: absolute; top: 12px; left: 12px;
  background: #fff; border-radius: 999px; padding: 5px 11px;
  font: 700 11px/1 var(--vc-font-mono); letter-spacing: .12em;
  text-transform: uppercase; color: var(--vc-n-700);
  box-shadow: var(--vc-sh-xs);
}
.vc-card__badge--verified { background: var(--vc-blue); color: #fff; }
.vc-card__badge--live     { background: var(--vc-red); color: #fff; }
.vc-card__badge--gold     { background: var(--vc-gold); color: var(--vc-n-900); }
.vc-card__body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.vc-card__eyebrow { font: 700 11px/1 var(--vc-font-mono); letter-spacing: .16em; color: var(--vc-blue); text-transform: uppercase; }
.vc-card h3 { font: 700 19px/1.25 var(--vc-font-body); color: var(--vc-n-900); margin: 2px 0; }
.vc-card__meta { font-size: 13px; color: var(--vc-n-500); display: flex; gap: 10px; flex-wrap: wrap; }
.vc-card__meta i { margin-right: 4px; }
.vc-card__tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 6px; }
.vc-tag {
  padding: 4px 10px; background: var(--vc-n-100); border-radius: 999px;
  font: 600 11px/1 var(--vc-font-body); color: var(--vc-n-700);
}
.vc-tag--gold { background: var(--vc-gold-50); color: var(--vc-gold-600); }
.vc-tag--blue { background: var(--vc-blue-50); color: var(--vc-blue); }
.vc-tag--red  { background: var(--vc-red-100); color: var(--vc-red-700); }
.vc-card__rating { font-size: 13px; color: var(--vc-n-700); display: flex; align-items: center; gap: 4px; }
.vc-card__rating .stars { color: var(--vc-gold-600); letter-spacing: 2px; }
.vc-card__foot {
  margin-top: auto; padding-top: 12px; border-top: 1px solid var(--vc-line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--vc-n-600);
}

/* Influencer / creator variant */
.vc-creator { text-align: center; padding-bottom: 20px; }
.vc-creator .vc-card__body { align-items: center; text-align: center; }
.vc-creator__platforms { display: flex; gap: 10px; margin-top: 8px; color: var(--vc-n-500); font-size: 14px; }
.vc-creator__platforms i { width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--vc-n-100); }

/* ========== DETAIL PAGE LAYOUT ========== */
.vc-detail {
  max-width: 1240px; margin: 0 auto; padding: 40px 20px 80px;
  display: grid; grid-template-columns: 1fr 380px; gap: 48px;
}
@media (max-width: 960px) { .vc-detail { grid-template-columns: 1fr; } }
.vc-detail__hero {
  aspect-ratio: 16/9; border-radius: var(--vc-r-xl); overflow: hidden;
  background: repeating-linear-gradient(135deg, rgba(0,0,0,.05) 0 10px, rgba(0,0,0,0) 10px 24px), var(--vc-n-200);
  display: flex; align-items: center; justify-content: center;
  font: 700 12px/1.4 var(--vc-font-mono); letter-spacing: .2em; text-transform: uppercase; color: var(--vc-n-500);
  margin-bottom: 24px;
}
.vc-detail__title {
  font-family: var(--vc-font-display); font-weight: var(--vc-display-weight);
  font-size: clamp(32px, 4.2vw, 56px); line-height: 1.02;
  letter-spacing: var(--vc-display-tracking); color: var(--vc-n-900);
  margin: 8px 0 10px; text-wrap: balance;
}
.vc-detail__meta {
  display: flex; gap: 20px; flex-wrap: wrap;
  color: var(--vc-n-600); font-size: 14px; margin-bottom: 28px;
}
.vc-detail__meta span { display: inline-flex; gap: 6px; align-items: center; }
.vc-detail__meta i { color: var(--vc-gold-600); }
.vc-detail h2 {
  font-family: var(--vc-font-display); font-weight: var(--vc-display-weight);
  font-size: 28px; letter-spacing: var(--vc-display-tracking);
  color: var(--vc-n-900); margin: 40px 0 14px;
}
.vc-detail p { color: var(--vc-n-700); line-height: 1.65; margin-bottom: 14px; }
.vc-detail__aside {
  position: sticky; top: 100px; align-self: start;
  background: #fff; border: 1px solid var(--vc-line);
  border-radius: var(--vc-r-xl); padding: 28px;
  box-shadow: var(--vc-sh-md);
}
.vc-detail__price {
  font-family: var(--vc-font-display); font-weight: var(--vc-display-weight);
  font-size: 40px; line-height: 1; color: var(--vc-n-900);
  letter-spacing: var(--vc-display-tracking);
}
.vc-detail__price small { font: 500 13px/1 var(--vc-font-body); color: var(--vc-n-500); }
.vc-detail__aside hr { border: 0; border-top: 1px solid var(--vc-line); margin: 18px 0; }
.vc-ticket-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--vc-line);
}
.vc-ticket-row:last-child { border-bottom: 0; }
.vc-ticket-row__name { font-weight: 700; color: var(--vc-n-900); }
.vc-ticket-row__price { font-weight: 700; font-family: var(--vc-font-mono); color: var(--vc-n-900); }
.vc-qty {
  display: inline-flex; align-items: center; border: 1px solid var(--vc-line);
  border-radius: 999px; overflow: hidden;
}
.vc-qty button { width: 32px; height: 32px; background: transparent; border: 0; }
.vc-qty span { padding: 0 12px; font-weight: 700; min-width: 36px; text-align: center; }

/* ========== FORMS ========== */
.vc-form {
  max-width: 680px; background: #fff; border: 1px solid var(--vc-line);
  border-radius: var(--vc-r-xl); padding: 40px; box-shadow: var(--vc-sh-sm);
}
.vc-form h2 {
  font-family: var(--vc-font-display); font-weight: var(--vc-display-weight);
  font-size: 24px; letter-spacing: var(--vc-display-tracking);
  color: var(--vc-n-900); margin: 24px 0 14px;
}
.vc-form h2:first-child { margin-top: 0; }
.vc-field { margin-bottom: 18px; }
.vc-field label {
  display: block; font: 600 13px/1 var(--vc-font-body);
  color: var(--vc-n-700); margin-bottom: 6px;
}
.vc-field input, .vc-field select, .vc-field textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--vc-line); border-radius: 10px;
  font: 500 15px/1.4 var(--vc-font-body); color: var(--vc-n-900);
  background: #fff; outline: 0; transition: border-color var(--vc-m-ui), box-shadow var(--vc-m-ui);
}
.vc-field input:focus, .vc-field select:focus, .vc-field textarea:focus {
  border-color: var(--vc-gold); box-shadow: 0 0 0 3px rgba(212,160,23,.18);
}
.vc-field textarea { min-height: 120px; resize: vertical; }
.vc-field__hint { font-size: 12px; color: var(--vc-n-500); margin-top: 6px; }
.vc-field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .vc-field--row { grid-template-columns: 1fr; } }

/* ========== STEPPER ========== */
.vc-stepper {
  display: flex; gap: 12px; padding: 18px 0; margin-bottom: 20px;
  border-bottom: 1px solid var(--vc-line);
}
.vc-stepper__step {
  display: flex; align-items: center; gap: 10px;
  font: 700 13px/1 var(--vc-font-body); color: var(--vc-n-500);
}
.vc-stepper__step .n {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--vc-n-100); color: var(--vc-n-500);
  display: inline-flex; align-items: center; justify-content: center;
  font: 800 13px/1 var(--vc-font-body);
}
.vc-stepper__step.active .n { background: var(--vc-gold); color: var(--vc-n-900); }
.vc-stepper__step.active { color: var(--vc-n-900); }
.vc-stepper__step.done .n { background: var(--vc-success); color: #fff; }

/* ========== NEWS / EDITORIAL ========== */
.vc-articlecard {
  background: #fff; border: 1px solid var(--vc-line);
  border-radius: var(--vc-card-radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: all var(--vc-m-ui); cursor: pointer; color: inherit;
}
.vc-articlecard:hover { transform: translateY(-2px); box-shadow: var(--vc-sh-md); }
.vc-articlecard__media {
  aspect-ratio: 16/10;
  background: repeating-linear-gradient(135deg, rgba(0,0,0,.05) 0 8px, rgba(0,0,0,0) 8px 18px), var(--vc-n-200);
}
.vc-articlecard__body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.vc-articlecard__cat {
  font: 700 10px/1 var(--vc-font-mono); letter-spacing: .18em;
  text-transform: uppercase; color: var(--vc-red);
}
.vc-articlecard h3 {
  font-family: var(--vc-font-display); font-weight: 800;
  font-size: 22px; line-height: 1.1; letter-spacing: -.01em;
  color: var(--vc-n-900);
}
.vc-articlecard__meta {
  margin-top: auto; padding-top: 12px;
  font-size: 12px; color: var(--vc-n-500);
  display: flex; gap: 10px; border-top: 1px solid var(--vc-line);
}

.vc-article {
  max-width: 740px; margin: 0 auto; padding: 40px 20px 80px;
}
.vc-article__cat {
  font: 700 12px/1 var(--vc-font-mono); letter-spacing: .2em;
  text-transform: uppercase; color: var(--vc-red); margin-bottom: 14px;
}
.vc-article h1 {
  font-family: var(--vc-font-display); font-weight: var(--vc-display-weight);
  font-size: clamp(36px, 5vw, 64px); line-height: 1.02;
  letter-spacing: var(--vc-display-tracking); color: var(--vc-n-900);
  margin: 6px 0 16px; text-wrap: balance;
}
.vc-article__byline { color: var(--vc-n-500); font-size: 14px; margin-bottom: 28px; }
.vc-article__hero {
  aspect-ratio: 16/9; border-radius: var(--vc-r-xl); overflow: hidden;
  background: repeating-linear-gradient(135deg, rgba(0,0,0,.05) 0 10px, rgba(0,0,0,0) 10px 24px), var(--vc-n-200);
  margin-bottom: 32px;
}
.vc-article__body p {
  font-size: 18px; line-height: 1.7; color: var(--vc-n-800);
  margin-bottom: 18px;
}
.vc-article__body p:first-child::first-letter {
  font-family: var(--vc-font-display); font-weight: 900;
  font-size: 72px; line-height: .85; float: left;
  margin: 6px 10px -4px 0; color: var(--vc-red);
}
.vc-article__body h2 {
  font-family: var(--vc-font-display); font-weight: 800;
  font-size: 28px; line-height: 1.1; letter-spacing: -.01em;
  color: var(--vc-n-900); margin: 32px 0 10px;
}
.vc-article__body blockquote {
  border-left: 4px solid var(--vc-gold);
  padding: 0 0 0 20px; margin: 24px 0;
  font-family: var(--vc-font-display); font-weight: 600;
  font-size: 22px; line-height: 1.35; color: var(--vc-n-800);
  font-style: italic;
}

/* ========== FAQ / HELP ========== */
.vc-faq { max-width: 880px; margin: 0 auto; }
.vc-faq__section {
  background: #fff; border: 1px solid var(--vc-line);
  border-radius: var(--vc-r-lg); padding: 28px;
  margin-bottom: 24px;
}
.vc-faq__section h2 {
  font-family: var(--vc-font-display); font-weight: var(--vc-display-weight);
  font-size: 26px; letter-spacing: var(--vc-display-tracking);
  color: var(--vc-n-900); margin-bottom: 14px;
}
.vc-faq details {
  padding: 14px 0; border-bottom: 1px solid var(--vc-line); cursor: pointer;
}
.vc-faq details:last-child { border-bottom: 0; }
.vc-faq summary {
  font: 600 16px/1.4 var(--vc-font-body); color: var(--vc-n-900);
  display: flex; justify-content: space-between; align-items: center;
  list-style: none; user-select: none;
}
.vc-faq summary::-webkit-details-marker { display: none; }
.vc-faq summary::after { content: '+'; font: 700 20px/1 var(--vc-font-mono); color: var(--vc-gold-600); transition: transform var(--vc-m-ui); }
.vc-faq details[open] summary::after { transform: rotate(45deg); }
.vc-faq details > :not(summary) {
  padding-top: 10px; color: var(--vc-n-600); font-size: 15px; line-height: 1.6;
}

.vc-faq__toc {
  position: sticky; top: 100px; align-self: start;
  padding: 20px; background: var(--vc-cream);
  border-radius: var(--vc-r-lg); border: 1px solid var(--vc-line);
}
.vc-faq__toc a {
  display: block; padding: 8px 10px; border-radius: 8px;
  font: 500 14px/1 var(--vc-font-body); color: var(--vc-n-700);
  margin-bottom: 2px;
}
.vc-faq__toc a:hover { background: #fff; color: var(--vc-gold-600); }
.vc-faq__layout { display: grid; grid-template-columns: 240px 1fr; gap: 32px; }
@media (max-width: 840px) { .vc-faq__layout { grid-template-columns: 1fr; } .vc-faq__toc { position: static; } }

/* ========== CTA STRIP ========== */
.vc-cta-strip {
  background: var(--vc-n-900); color: #fff;
  padding: 72px 0; text-align: center;
  background:
    radial-gradient(circle at 20% 0%, rgba(212,160,23,.16), transparent 45%),
    radial-gradient(circle at 80% 100%, rgba(200,52,43,.12), transparent 45%),
    var(--vc-n-900);
}
.vc-cta-strip h2 {
  font-family: var(--vc-font-display); font-weight: var(--vc-display-weight);
  font-size: clamp(32px, 4.2vw, 56px); line-height: 1.02;
  letter-spacing: var(--vc-display-tracking); color: #fff;
  max-width: 20ch; margin: 0 auto 18px; text-wrap: balance;
}
.vc-cta-strip p { color: rgba(255,255,255,.72); max-width: 54ch; margin: 0 auto 24px; font-size: 17px; }
.vc-cta-strip .vc-cta-row { justify-content: center; }
.vc-cta-strip .vc-btn--ghost { color: #fff; border-color: rgba(255,255,255,.3); }
.vc-cta-strip .vc-btn--ghost:hover { background: rgba(255,255,255,.08); }

/* ========== AUTH PAGES ========== */
.vc-auth {
  min-height: calc(100vh - 160px);
  display: grid; place-items: center;
  padding: 40px 20px;
  background:
    radial-gradient(circle at 10% 0%, rgba(212,160,23,.10), transparent 40%),
    radial-gradient(circle at 90% 100%, rgba(30,58,138,.08), transparent 45%),
    var(--vc-cream);
}
.vc-auth__card {
  background: #fff; border: 1px solid var(--vc-line);
  border-radius: var(--vc-r-xl); padding: 44px;
  width: 100%; max-width: 440px;
  box-shadow: var(--vc-sh-lg);
  text-align: center;
}
.vc-auth__card h1 {
  font-family: var(--vc-font-display); font-weight: var(--vc-display-weight);
  font-size: 32px; letter-spacing: var(--vc-display-tracking);
  color: var(--vc-n-900); margin-bottom: 8px; text-wrap: balance;
}
.vc-auth__card p { color: var(--vc-n-600); margin-bottom: 24px; }
.vc-auth .vc-field input { text-align: left; }
.vc-auth__divider {
  display: flex; align-items: center; gap: 10px; margin: 20px 0;
  font: 700 11px/1 var(--vc-font-mono); letter-spacing: .14em;
  color: var(--vc-n-500); text-transform: uppercase;
}
.vc-auth__divider::before, .vc-auth__divider::after {
  content: ''; flex: 1; height: 1px; background: var(--vc-line);
}
.vc-oauth {
  display: flex; gap: 10px; justify-content: center;
}
.vc-oauth button {
  flex: 1; padding: 11px; border-radius: 10px;
  border: 1px solid var(--vc-line); background: #fff;
  font: 600 14px/1 var(--vc-font-body); color: var(--vc-n-800);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.vc-oauth button:hover { border-color: var(--vc-n-400); }

/* ========== DASHBOARD SHELL ========== */
.vc-dash {
  display: grid; grid-template-columns: 260px 1fr;
  min-height: calc(100vh - 96px);
}
@media (max-width: 900px) { .vc-dash { grid-template-columns: 1fr; } }
.vc-dash__side {
  background: var(--vc-n-900); color: rgba(255,255,255,.8);
  padding: 28px 20px; border-right: 1px solid rgba(255,255,255,.06);
}
.vc-dash__side .vc-logo { color: #fff; }
.vc-dash__side .vc-logo span { color: #fff; }
.vc-dash__nav { display: flex; flex-direction: column; gap: 2px; margin-top: 28px; }
.vc-dash__nav a {
  padding: 11px 14px; border-radius: 10px;
  font: 600 14px/1 var(--vc-font-body); color: rgba(255,255,255,.72);
  display: flex; align-items: center; gap: 10px;
}
.vc-dash__nav a:hover { background: rgba(255,255,255,.06); color: #fff; }
.vc-dash__nav a.active { background: var(--vc-gold); color: var(--vc-n-900); }
.vc-dash__nav a i { width: 18px; text-align: center; }
.vc-dash__nav-section {
  font: 700 10px/1 var(--vc-font-mono); letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.4);
  padding: 18px 14px 8px;
}
.vc-dash__main { padding: 28px 32px; background: var(--vc-n-50); }
.vc-dash__topbar {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; margin-bottom: 24px; flex-wrap: wrap;
}
.vc-dash__topbar h1 {
  font-family: var(--vc-font-display); font-weight: var(--vc-display-weight);
  font-size: 34px; letter-spacing: var(--vc-display-tracking);
  color: var(--vc-n-900);
}

.vc-kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px; }
@media (max-width: 1100px) { .vc-kpi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .vc-kpi-grid { grid-template-columns: 1fr; } }
.vc-kpi {
  background: #fff; border: 1px solid var(--vc-line);
  border-radius: var(--vc-r-lg); padding: 20px;
}
.vc-kpi__label { font: 700 11px/1 var(--vc-font-mono); letter-spacing: .16em; text-transform: uppercase; color: var(--vc-n-500); }
.vc-kpi__value {
  font-family: var(--vc-font-display); font-weight: 800;
  font-size: 36px; line-height: 1; letter-spacing: -.02em;
  color: var(--vc-n-900); margin: 8px 0 4px;
}
.vc-kpi__delta { font: 700 12px/1 var(--vc-font-mono); display: inline-flex; gap: 4px; align-items: center; }
.vc-kpi__delta--up   { color: var(--vc-success); }
.vc-kpi__delta--down { color: var(--vc-danger); }

.vc-panel {
  background: #fff; border: 1px solid var(--vc-line);
  border-radius: var(--vc-r-lg); padding: 24px;
  margin-bottom: 20px;
}
.vc-panel__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.vc-panel__head h2 {
  font-family: var(--vc-font-display); font-weight: 800;
  font-size: 22px; letter-spacing: -.01em; color: var(--vc-n-900);
}

/* ========== TABLES ========== */
.vc-table {
  width: 100%; border-collapse: collapse; font-size: 14px;
}
.vc-table th {
  text-align: left; padding: 12px 16px;
  font: 700 11px/1 var(--vc-font-mono); letter-spacing: .14em;
  text-transform: uppercase; color: var(--vc-n-500);
  border-bottom: 1px solid var(--vc-line); background: var(--vc-n-50);
}
.vc-table td {
  padding: 14px 16px; border-bottom: 1px solid var(--vc-line); color: var(--vc-n-800);
}
.vc-table tr:hover td { background: var(--vc-n-50); }
.vc-table .num { text-align: right; font-family: var(--vc-font-mono); }
.vc-pill {
  display: inline-flex; padding: 4px 10px; border-radius: 999px;
  font: 700 11px/1 var(--vc-font-mono); letter-spacing: .1em; text-transform: uppercase;
}
.vc-pill--success { background: rgba(31,138,90,.12); color: var(--vc-success); }
.vc-pill--warning { background: rgba(201,131,26,.14); color: var(--vc-warning); }
.vc-pill--danger  { background: rgba(200,52,43,.12); color: var(--vc-danger); }
.vc-pill--muted   { background: var(--vc-n-100); color: var(--vc-n-600); }
.vc-pill--blue    { background: var(--vc-blue-50); color: var(--vc-blue); }

/* ========== GIVEAWAY / CONTEST ========== */
.vc-giveaway {
  min-height: 80vh; padding: 56px 0 80px;
  background:
    radial-gradient(circle at 20% 20%, rgba(200,52,43,.18), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(212,160,23,.14), transparent 35%),
    var(--vc-n-900);
  color: #fff;
}
.vc-giveaway__inner { max-width: 1080px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .vc-giveaway__inner { grid-template-columns: 1fr; } }
.vc-giveaway__eyebrow {
  font: 700 12px/1 var(--vc-font-mono); letter-spacing: .24em;
  text-transform: uppercase; color: var(--vc-gold);
}
.vc-giveaway h1 {
  font-family: var(--vc-font-display); font-weight: var(--vc-display-weight);
  font-size: clamp(48px, 7vw, 96px); line-height: .95;
  letter-spacing: -.02em; color: #fff; margin: 14px 0 18px;
  text-wrap: balance;
}
.vc-giveaway .lead { color: rgba(255,255,255,.82); font-size: 18px; line-height: 1.55; margin-bottom: 24px; }
.vc-giveaway__countdown {
  display: flex; gap: 12px; margin: 24px 0;
}
.vc-countdown__unit {
  background: rgba(255,255,255,.08); border-radius: 12px;
  padding: 14px 18px; text-align: center; min-width: 72px;
  backdrop-filter: blur(8px);
}
.vc-countdown__num {
  font-family: var(--vc-font-display); font-weight: 900;
  font-size: 40px; line-height: 1; color: #fff;
  font-variant-numeric: tabular-nums;
}
.vc-countdown__label {
  font: 700 10px/1 var(--vc-font-mono); letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
  margin-top: 6px;
}
.vc-giveaway__art {
  aspect-ratio: 4/5; border-radius: var(--vc-r-xl); overflow: hidden;
  background: linear-gradient(135deg, var(--vc-gold) 0%, var(--vc-red) 50%, var(--vc-blue) 100%);
  display: flex; align-items: center; justify-content: center;
  font: 900 64px/1 var(--vc-font-display); color: #fff; text-align: center; padding: 32px;
  letter-spacing: -.02em; text-wrap: balance;
}

/* ========== UTILITIES ========== */
.vc-section--alt { background: var(--vc-cream); }
.vc-divider { height: 1px; background: var(--vc-line); margin: 40px 0; }
.vc-center { text-align: center; }
.vc-mt-0 { margin-top: 0 !important; }

/* ========== INCLUDE LOADER PLACEHOLDER ========== */
[data-vc-include]:empty { min-height: 64px; }


/* ========== AUTH (login / signup) ========== */
.vc-auth { min-height: 100vh; display: grid; place-items: center; padding: 32px 16px;
  background: linear-gradient(160deg, #fff 0%, var(--vc-cream) 100%); }
.vc-auth__brand { display: block; text-align: center; margin-bottom: 24px; text-decoration: none; }
.vc-auth__card { width: 100%; max-width: 440px; background: #fff; border: 1px solid var(--vc-line);
  border-radius: 20px; padding: 36px 32px; box-shadow: 0 24px 60px -30px rgba(15,23,42,.2); }
.vc-auth__card h1 { font-family: var(--vc-font-display); font-weight: 800; font-size: 30px; letter-spacing: -.02em;
  margin: 0 0 6px; color: var(--vc-n-900); }
.vc-auth__sub { color: var(--vc-n-500); font-size: 14px; margin: 0 0 22px; }
.vc-auth__divider { display: flex; align-items: center; gap: 12px; margin: 18px 0; color: var(--vc-n-400); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.vc-auth__divider::before, .vc-auth__divider::after { content: ""; flex: 1; height: 1px; background: var(--vc-line); }
.vc-auth__foot { text-align: center; margin: 18px 0 0; font-size: 14px; color: var(--vc-n-500); }

/* ========== FORM ========== */
.vc-form { display: flex; flex-direction: column; gap: 14px; }
.vc-field { display: flex; flex-direction: column; gap: 6px; }
.vc-field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.vc-field label { font-size: 13px; font-weight: 600; color: var(--vc-n-700); }
.vc-field input, .vc-field select, .vc-field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--vc-line); border-radius: 10px;
  font: inherit; font-size: 15px; color: var(--vc-n-900); background: #fff; transition: border-color .15s, box-shadow .15s; }
.vc-field input:focus, .vc-field select:focus, .vc-field textarea:focus {
  outline: none; border-color: var(--vc-gold); box-shadow: 0 0 0 3px color-mix(in oklab, var(--vc-gold) 25%, transparent); }

/* ========== APP SHELL (dashboards) ========== */
.vc-app { display: grid; grid-template-columns: 260px 1fr; min-height: calc(100vh - 120px); background: var(--vc-cream); }
@media (max-width: 860px) { .vc-app { grid-template-columns: 1fr; } }
.vc-app__sidebar { background: #fff; border-right: 1px solid var(--vc-line); padding: 24px 16px; position: sticky; top: 0; height: 100%; }
@media (max-width: 860px) { .vc-app__sidebar { position: static; border-right: 0; border-bottom: 1px solid var(--vc-line); } }
.vc-app__identity { display: flex; gap: 12px; align-items: center; padding: 8px 10px 20px; border-bottom: 1px solid var(--vc-line); margin-bottom: 12px; }
.vc-app__name { font-weight: 700; color: var(--vc-n-900); font-size: 14px; line-height: 1.2; }
.vc-app__email { color: var(--vc-n-500); font-size: 12px; }
.vc-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--vc-gold); color: #fff; font-weight: 800; font-size: 14px;
  display: grid; place-items: center; flex-shrink: 0; }
.vc-app__nav { display: flex; flex-direction: column; gap: 2px; }
.vc-app__nav a { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 8px; color: var(--vc-n-700);
  text-decoration: none; font-weight: 500; font-size: 14px; cursor: pointer; }
.vc-app__nav a:hover { background: var(--vc-cream); color: var(--vc-n-900); }
.vc-app__nav a.active { background: var(--vc-n-900); color: #fff; }
.vc-app__nav a i { width: 18px; text-align: center; color: inherit; opacity: .8; }
.vc-app__main { padding: 32px 40px 60px; max-width: 1200px; }
@media (max-width: 860px) { .vc-app__main { padding: 24px 16px 40px; } }
.vc-app__head { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.vc-app__head h1 { font-family: var(--vc-font-display); font-weight: 800; font-size: 36px; letter-spacing: -.02em; margin: 0; color: var(--vc-n-900); }

/* ========== KPI CARDS ========== */
.vc-kpi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }
.vc-kpi { background: #fff; border: 1px solid var(--vc-line); border-radius: 14px; padding: 18px; }
.vc-kpi__label { font-size: 12px; color: var(--vc-n-500); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.vc-kpi__value { font-family: var(--vc-font-display); font-weight: 800; font-size: 32px; letter-spacing: -.02em; color: var(--vc-n-900); margin: 6px 0 4px; line-height: 1; }
.vc-kpi__delta { font-size: 12px; color: var(--vc-n-500); font-weight: 500; }
.vc-kpi__delta--up { color: #16a34a; }
.vc-kpi__delta--down { color: var(--vc-red); }

/* ========== PANELS ========== */
.vc-panel { background: #fff; border: 1px solid var(--vc-line); border-radius: 14px; padding: 22px; }
.vc-panel h2 { font-family: var(--vc-font-display); font-weight: 800; font-size: 20px; letter-spacing: -.01em; margin: 0 0 16px; color: var(--vc-n-900); }
.vc-panel-stack { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 16px; margin-top: 24px; }

/* ========== TABLE ========== */
.vc-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.vc-table th { text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--vc-n-500); font-weight: 600; padding: 8px 12px; border-bottom: 1px solid var(--vc-line); }
.vc-table th.num, .vc-table td.num { text-align: right; font-variant-numeric: tabular-nums; font-family: var(--vc-font-mono); }
.vc-table td { padding: 14px 12px; border-bottom: 1px solid var(--vc-line); color: var(--vc-n-700); }
.vc-table tr:last-child td { border-bottom: 0; }
.vc-table strong { color: var(--vc-n-900); font-weight: 700; }

/* ========== BARS ========== */
.vc-bar { display: flex; flex-direction: column; gap: 10px; }
.vc-bar__row { display: grid; grid-template-columns: 160px 1fr 50px; gap: 12px; align-items: center; font-size: 13px; color: var(--vc-n-700); }
.vc-bar__track { height: 10px; background: var(--vc-cream); border-radius: 10px; overflow: hidden; }
.vc-bar__track span { display: block; height: 100%; border-radius: 10px; }
.vc-bar__row .num { text-align: right; font-family: var(--vc-font-mono); color: var(--vc-n-900); font-weight: 700; font-size: 12px; }

/* ========== TICKET / LIST ROWS ========== */
.vc-ticket-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--vc-line); }
.vc-ticket-row:last-child { border-bottom: 0; }
.vc-ticket-row__name { font-weight: 700; color: var(--vc-n-900); font-size: 14px; }

/* ========== SMALL BUTTONS & TAGS ========== */
.vc-btn--sm { padding: 6px 12px; font-size: 12px; }
.vc-tag { display: inline-block; padding: 3px 10px; border-radius: 999px; background: var(--vc-cream); color: var(--vc-n-700); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.vc-tag--gold { background: color-mix(in oklab, var(--vc-gold) 18%, #fff); color: var(--vc-gold-700, #a77d1c); }
.vc-tag--blue { background: color-mix(in oklab, var(--vc-blue) 15%, #fff); color: var(--vc-blue); }
.vc-link { color: var(--vc-gold-600); font-weight: 600; cursor: pointer; }


/* ========== MOBILE DRAWER + HIDE UTILITIES ========== */
.vc-hide-sm { display: inline-flex; }
@media (max-width: 640px) { .vc-hide-sm { display: none !important; } }
.vc-hide-md { display: inline-flex; }
@media (max-width: 960px) { .vc-hide-md { display: none !important; } }

.vc-menu-btn {
  display: none; background: transparent; border: 1px solid var(--vc-line); border-radius: 10px;
  width: 40px; height: 40px; cursor: pointer; align-items: center; justify-content: center;
  color: var(--vc-n-900); font-size: 16px;
}
@media (max-width: 900px) { .vc-menu-btn { display: inline-flex; } }

.vc-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(360px, 86vw);
  background: #fff; border-left: 1px solid var(--vc-line);
  box-shadow: -20px 0 60px -30px rgba(15,23,42,.35);
  transform: translateX(100%); transition: transform .32s cubic-bezier(.2,.7,.2,1);
  z-index: 120; overflow-y: auto;
}
.vc-drawer::before {
  content: ""; position: fixed; inset: 0; right: min(360px, 86vw);
  background: rgba(15,23,42,.45); opacity: 0; pointer-events: none; transition: opacity .32s;
}
body.vc-menu-open .vc-drawer { transform: translateX(0); }
body.vc-menu-open .vc-drawer::before { opacity: 1; pointer-events: auto; }
body.vc-menu-open { overflow: hidden; }

.vc-drawer__inner { display: flex; flex-direction: column; padding: 72px 22px 28px; gap: 2px; }
.vc-drawer__inner a {
  padding: 14px 12px; border-radius: 8px; text-decoration: none; color: var(--vc-n-900);
  font-weight: 600; font-size: 16px; border-bottom: 1px solid var(--vc-line);
}
.vc-drawer__inner a:hover { background: var(--vc-cream); }
.vc-drawer__inner a:last-child { border-bottom: 0; }
.vc-drawer__inner > .vc-btn { margin-top: 12px; justify-content: center; }

/* Close button baked in via ::after on the drawer */
.vc-drawer__close {
  position: absolute; top: 14px; right: 14px; width: 40px; height: 40px;
  border-radius: 8px; border: 1px solid var(--vc-line); background: #fff;
  cursor: pointer; font-size: 18px; color: var(--vc-n-700);
  display: flex; align-items: center; justify-content: center;
}
.vc-drawer__close:hover { background: var(--vc-cream); }
