/* ══════════════════════════════════════════════════════════════
   myLokaal Events — standalone design system
   Self-contained on purpose: this whole events/ folder (markup,
   styles, scripts, endpoints) is built to be lifted onto its own
   domain later with minimal changes. It does NOT import
   frontend/css/shared.css — brand tokens are redeclared below to
   stay visually on-brand today. If the sitewide palette changes in
   Admin → Brand Colors, that change will NOT auto-apply here; the
   values below would need updating too.
   ══════════════════════════════════════════════════════════════ */

:root {
  /* brand core */
  --ev-navy:       #0e1733;
  --ev-navy-2:     #172247;
  --ev-navy-3:     #212f5e;
  --ev-orange:     #f98603;
  --ev-orange-d:   #a85a02;
  --ev-orange-l:   #ffd1a3;
  --ev-peach:      #ffe4ca;
  --ev-cream:      #f4f6fc;
  --ev-teal:       #0d9488;
  --ev-teal-l:     #e0f5f3;
  --ev-teal-glow:  #40ffa7;
  --ev-coral:      #b3261e;
  --ev-coral-l:    #fbe4e1;

  /* surfaces / text */
  --ev-surface:    #ffffff;
  --ev-border:     #e4e8f2;
  --ev-text:       #0e1733;
  --ev-muted:      #64748b;
  --ev-muted-d:    #334155;

  /* geometry */
  --ev-r-sm:  10px;
  --ev-r-md:  16px;
  --ev-r-lg:  24px;
  --ev-r-xl:  28px;
  --ev-sh-sm: 0 1px 4px rgba(14,23,51,.07);
  --ev-sh-md: 0 8px 28px rgba(14,23,51,.10);
  --ev-sh-lg: 0 20px 60px rgba(14,23,51,.16);

  /* type */
  --ev-font:    'DM Sans', system-ui, -apple-system, sans-serif;
  --ev-display: 'DM Serif Display', Georgia, serif;
  --ev-ease:    .25s cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.ev-body {
  margin: 0;
  font-family: var(--ev-font);
  background: var(--ev-cream);
  color: var(--ev-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--ev-font); cursor: pointer; border: none; outline: none; background: none; }
input, select, textarea { font-family: var(--ev-font); }
h1, h2, h3, h4 { font-family: var(--ev-display); font-weight: 400; margin: 0; letter-spacing: -.01em; }
p { margin: 0; }
::selection { background: var(--ev-orange-l); color: var(--ev-navy); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--ev-cream); }
::-webkit-scrollbar-thumb { background: var(--ev-navy); border-radius: 6px; }

.ev-container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.ev-em { color: var(--ev-orange); font-style: normal; }

/* ── Buttons ─────────────────────────────────────────────────── */
.ev-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 26px; border-radius: 100px; font-weight: 700; font-size: .88rem;
  transition: all var(--ev-ease); white-space: nowrap;
}
.ev-btn-lg { padding: 16px 32px; font-size: .95rem; }
.ev-btn-sm { padding: 9px 18px; font-size: .8rem; }
.ev-btn-primary { background: var(--ev-orange); color: #fff; box-shadow: 0 4px 18px rgba(249,134,3,.32); }
.ev-btn-primary:hover { background: var(--ev-orange-d); transform: translateY(-2px); box-shadow: 0 8px 26px rgba(249,134,3,.38); }
.ev-btn-white { background: #fff; color: var(--ev-navy); font-weight: 800; }
.ev-btn-white:hover { background: var(--ev-peach); transform: translateY(-2px); }
.ev-btn-outline { background: transparent; color: var(--ev-navy); border: 1.5px solid var(--ev-border); }
.ev-btn-outline:hover { border-color: var(--ev-navy); background: var(--ev-cream); }
.ev-btn-outline-w { background: rgba(255,255,255,.06); color: #fff; border: 1.5px solid rgba(255,255,255,.28); }
.ev-btn-outline-w:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.5); }
.ev-btn-ghost { background: transparent; color: var(--ev-muted); }
.ev-btn-ghost:hover { color: var(--ev-navy); }
.ev-btn:disabled { opacity: .6; cursor: not-allowed; transform: none !important; }

.ev-lbl {
  display: inline-flex; align-items: center; gap: 7px; padding: 6px 15px;
  border-radius: 100px; font-size: .72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .07em;
}
.ev-lbl-w  { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.22); }
.ev-lbl-o  { background: var(--ev-peach); color: var(--ev-orange-d); }
.ev-lbl-t  { background: var(--ev-teal-l); color: var(--ev-teal); }
.ev-lbl-gd { background: linear-gradient(120deg, var(--ev-orange), var(--ev-orange-d)); color: #fff; }

/* ── Standalone nav ──────────────────────────────────────────── */
.ev-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(244,246,252,.86); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ev-border);
  transition: box-shadow var(--ev-ease);
}
.ev-nav.scrolled { box-shadow: var(--ev-sh-sm); }
.ev-nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; }
.ev-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.ev-logo img { height: 36px; width: auto; max-width: 170px; object-fit: contain; }
.ev-logo-badge {
  font-family: var(--ev-display); font-size: .68rem; font-weight: 400; color: var(--ev-orange-d);
  background: var(--ev-peach); padding: 3px 10px; border-radius: 100px; letter-spacing: .02em;
}
.ev-nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.ev-nav-links a {
  padding: 9px 15px; border-radius: var(--ev-r-sm); font-size: .84rem; font-weight: 600;
  color: var(--ev-muted-d); transition: all var(--ev-ease);
}
.ev-nav-links a:hover, .ev-nav-links a.act { color: var(--ev-orange-d); background: var(--ev-peach); }
.ev-nav-acts { display: flex; align-items: center; gap: 10px; }
.ev-back-link { display: flex; align-items: center; gap: 7px; font-size: .8rem; font-weight: 700; color: var(--ev-muted); transition: color var(--ev-ease); }
.ev-back-link:hover { color: var(--ev-orange-d); }
.ev-ham { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.ev-ham span { width: 20px; height: 2px; background: var(--ev-navy); border-radius: 2px; transition: all var(--ev-ease); }
.ev-mob-menu {
  display: none; position: fixed; inset: 0; z-index: 999; background: var(--ev-surface);
  padding: 20px 24px; overflow-y: auto; transform: translateY(-8px); opacity: 0;
  transition: all var(--ev-ease); pointer-events: none;
}
.ev-mob-menu.open { display: block; transform: translateY(0); opacity: 1; pointer-events: auto; }
.ev-mob-menu a { display: flex; align-items: center; gap: 12px; padding: 15px 6px; font-size: 1rem; font-weight: 700; border-bottom: 1px solid var(--ev-border); }
.ev-mob-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; margin-bottom: 6px; border-bottom: 1px solid var(--ev-border); }

@media (max-width: 860px) {
  .ev-nav-links { display: none; }
  .ev-ham { display: flex; }
  .ev-nav-acts .ev-btn-lg { padding: 11px 18px; font-size: .82rem; }
}

/* ── Hero: gradient-mesh navy ────────────────────────────────── */
.ev-hero {
  position: relative; background: var(--ev-navy); color: #fff; overflow: hidden;
  padding: 76px 0 84px;
}
.ev-hero::before, .ev-hero::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(70px); opacity: .35; pointer-events: none;
}
.ev-hero::before { width: 460px; height: 460px; background: var(--ev-orange); top: -180px; right: -100px; }
.ev-hero::after  { width: 380px; height: 380px; background: var(--ev-teal-glow); bottom: -200px; left: -80px; opacity: .18; }
.ev-hero-grid {
  position: absolute; inset: 0; opacity: .05;
  background-image: linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px);
  background-size: 46px 46px;
}
.ev-hero-in { position: relative; z-index: 1; max-width: 760px; }
.ev-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .78rem; color: rgba(255,255,255,.55); margin-bottom: 22px; font-weight: 600; }
.ev-breadcrumb a { color: rgba(255,255,255,.75); }
.ev-breadcrumb a:hover { color: #fff; }
.ev-hero h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); line-height: 1.08; margin-bottom: 18px; }
.ev-hero p.ev-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.72); max-width: 560px; line-height: 1.65; margin-bottom: 30px; }
.ev-hero-stats { display: flex; gap: 34px; flex-wrap: wrap; margin-top: 8px; }
.ev-hero-stat strong { display: block; font-family: var(--ev-display); font-size: 1.7rem; color: #fff; }
.ev-hero-stat span { font-size: .74rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .06em; font-weight: 700; }
.ev-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

/* ── Sticky glass filter/category bar ───────────────────────── */
.ev-filterbar {
  position: sticky; top: 65px; z-index: 150;
  background: rgba(255,255,255,.9); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ev-border); padding: 14px 0;
}
.ev-cat-scroll { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; }
.ev-cat-scroll::-webkit-scrollbar { display: none; }
.ev-cat-tab {
  flex-shrink: 0; padding: 9px 17px; border-radius: 100px; font-size: .8rem; font-weight: 700;
  color: var(--ev-muted-d); background: var(--ev-cream); border: 1.5px solid transparent;
  transition: all var(--ev-ease); white-space: nowrap;
}
.ev-cat-tab:hover { border-color: var(--ev-orange-l); }
.ev-cat-tab.act { background: var(--ev-navy); color: #fff; }

.ev-filter-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.ev-select {
  padding: 10px 16px; border: 1.5px solid var(--ev-border); border-radius: 100px; font-size: .81rem;
  font-weight: 600; color: var(--ev-muted-d); background: #fff; cursor: pointer; transition: all var(--ev-ease);
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2364748b' stroke-width='1.6' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 32px;
}
.ev-select:focus { border-color: var(--ev-orange); }
.ev-search-inp {
  flex: 1; min-width: 180px; padding: 10px 16px; border: 1.5px solid var(--ev-border); border-radius: 100px;
  font-size: .82rem; outline: none; transition: border-color var(--ev-ease);
}
.ev-search-inp:focus { border-color: var(--ev-orange); }
.ev-count-badge { margin-left: auto; font-size: .8rem; color: var(--ev-muted); font-weight: 600; }

/* ── Section ─────────────────────────────────────────────────── */
.ev-section { padding: 56px 0; }
.ev-sec-title { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 8px; }
.ev-sec-sub { color: var(--ev-muted); font-size: .92rem; max-width: 520px; }
.ev-sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 32px; flex-wrap: wrap; }

/* ── Featured spotlight card ─────────────────────────────────── */
.ev-spotlight {
  position: relative; background: linear-gradient(135deg, var(--ev-navy), var(--ev-navy-3));
  border-radius: var(--ev-r-xl); overflow: hidden; display: grid; grid-template-columns: 1.1fr 1fr;
  min-height: 340px; margin-bottom: 44px; box-shadow: var(--ev-sh-lg);
}
.ev-spotlight-body { padding: 46px 50px; color: #fff; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 1; }
.ev-spotlight-body .ev-lbl { margin-bottom: 16px; align-self: flex-start; }
.ev-spotlight-title { font-size: clamp(1.5rem, 3vw, 2.15rem); color: #fff; margin-bottom: 14px; line-height: 1.15; }
.ev-spotlight-desc { color: rgba(255,255,255,.68); font-size: .92rem; line-height: 1.65; margin-bottom: 22px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.ev-spotlight-meta { display: flex; flex-direction: column; gap: 8px; margin-bottom: 26px; }
.ev-meta-row { display: flex; align-items: center; gap: 9px; font-size: .8rem; font-weight: 600; }
.ev-meta-row i { width: 15px; text-align: center; }
.ev-spotlight-meta .ev-meta-row { color: rgba(255,255,255,.78); }
.ev-spotlight-meta .ev-meta-row i { color: var(--ev-teal-glow); }
.ev-spotlight-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.ev-spotlight-img { position: relative; overflow: hidden; }
.ev-spotlight-img img { width: 100%; height: 100%; object-fit: cover; opacity: .8; }
.ev-spotlight-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--ev-navy) 0%, transparent 34%); }
@media (max-width: 780px) {
  .ev-spotlight { grid-template-columns: 1fr; }
  .ev-spotlight-img { height: 220px; order: -1; }
  .ev-spotlight-body { padding: 32px 26px; }
}

/* ── Event card grid ─────────────────────────────────────────── */
.ev-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 26px; }
.ev-card {
  background: var(--ev-surface); border-radius: var(--ev-r-lg); overflow: hidden; border: 1px solid var(--ev-border);
  box-shadow: var(--ev-sh-sm); display: flex; flex-direction: column; transition: transform var(--ev-ease), box-shadow var(--ev-ease);
}
.ev-card:hover { transform: translateY(-6px); box-shadow: var(--ev-sh-md); }
.ev-card-img { position: relative; height: 196px; overflow: hidden; background: var(--ev-peach); }
.ev-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ev-ease); }
.ev-card:hover .ev-card-img img { transform: scale(1.06); }
.ev-card-img-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2.4rem; color: var(--ev-orange-d); }
.ev-date-badge {
  position: absolute; top: 13px; left: 13px; background: #fff; border-radius: 12px; padding: 7px 11px;
  text-align: center; box-shadow: var(--ev-sh-sm); line-height: 1.05;
}
.ev-date-badge .d { font-size: 1.2rem; font-weight: 900; color: var(--ev-navy); display: block; }
.ev-date-badge .m { font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--ev-muted); }
.ev-card-tag { position: absolute; top: 13px; right: 13px; }
.ev-card-body { padding: 20px 21px; flex: 1; display: flex; flex-direction: column; }
.ev-card-cat { font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--ev-orange-d); margin-bottom: 7px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.ev-src-badge { display: inline-flex; align-items: center; gap: 4px; font-size: .64rem; font-weight: 700; text-transform: none; letter-spacing: 0; color: var(--ev-muted); background: var(--ev-cream); padding: 2px 8px; border-radius: 100px; }
.ev-card-title { font-family: var(--ev-font); font-size: 1.02rem; font-weight: 800; letter-spacing: -.01em; line-height: 1.32; margin-bottom: 9px; color: var(--ev-text); }
.ev-card-desc { font-size: .81rem; color: var(--ev-muted); line-height: 1.6; margin-bottom: 14px; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ev-card-meta { display: flex; flex-direction: column; gap: 5px; margin-bottom: 15px; }
.ev-card-meta .ev-meta-row { color: var(--ev-muted-d); font-size: .77rem; }
.ev-card-meta .ev-meta-row i { color: var(--ev-orange); }
.ev-card-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--ev-border); }
.ev-price { font-size: .88rem; font-weight: 900; color: var(--ev-navy); }
.ev-free-pill { display: inline-block; background: var(--ev-teal-l); color: var(--ev-teal); font-size: .66rem; font-weight: 800; padding: 4px 11px; border-radius: 100px; text-transform: uppercase; letter-spacing: .05em; }
.ev-card.past { opacity: .68; }
.ev-card.past:hover { opacity: 1; }

.ev-empty { grid-column: 1/-1; text-align: center; padding: 80px 20px; color: var(--ev-muted); }
.ev-empty i { font-size: 2.6rem; color: var(--ev-orange-l); display: block; margin-bottom: 18px; }
.ev-empty strong { font-size: 1.05rem; color: var(--ev-text); display: block; margin-bottom: 8px; }

/* ── Coming soon ─────────────────────────────────────────────── */
.ev-cs-hero { position: relative; background: var(--ev-navy); color: #fff; overflow: hidden; padding: 100px 0 90px; }
.ev-cs-hero::before { content: ''; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: var(--ev-orange); filter: blur(90px); opacity: .3; top: -220px; right: -140px; }
.ev-cs-hero::after { content: ''; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: var(--ev-teal-glow); filter: blur(90px); opacity: .16; bottom: -220px; left: -100px; }
.ev-cs-in { position: relative; z-index: 1; max-width: 620px; }
.ev-cs-hero h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); line-height: 1.1; margin-bottom: 18px; }
.ev-cs-hero p { color: rgba(255,255,255,.72); font-size: 1rem; line-height: 1.7; margin-bottom: 34px; }
.ev-cs-nl { background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,255,255,.16); border-radius: var(--ev-r-lg); padding: 30px 32px; margin-bottom: 36px; }
.ev-cs-nl h3 { font-family: var(--ev-font); font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.ev-cs-nl p { font-size: .84rem; color: rgba(255,255,255,.6); margin-bottom: 18px; }
.ev-cs-row { display: flex; gap: 10px; flex-wrap: wrap; }
.ev-cs-inp { flex: 1; min-width: 200px; padding: 13px 18px; border-radius: 100px; border: 1.5px solid rgba(255,255,255,.24); background: rgba(255,255,255,.08); color: #fff; font-size: .88rem; outline: none; }
.ev-cs-inp::placeholder { color: rgba(255,255,255,.45); }
.ev-cs-inp:focus { border-color: var(--ev-orange); }
.ev-cs-note { font-size: .74rem; color: rgba(255,255,255,.42); margin-top: 12px; }
.ev-cs-note a { color: rgba(255,255,255,.72); text-decoration: underline; }
.ev-cs-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ev-cs-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--ev-r-md); padding: 20px 16px; text-align: center; }
.ev-cs-card .ico { font-size: 1.6rem; margin-bottom: 10px; }
.ev-cs-card h4 { font-family: var(--ev-font); font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.85); line-height: 1.4; margin: 0; }
@media (max-width: 640px) { .ev-cs-cards { grid-template-columns: 1fr; } }

/* ── Submit CTA banner ───────────────────────────────────────── */
.ev-cta-banner {
  background: linear-gradient(120deg, var(--ev-orange), var(--ev-orange-d)); border-radius: var(--ev-r-xl);
  padding: 44px 50px; display: flex; align-items: center; justify-content: space-between; gap: 26px;
  color: #fff; margin-top: 20px; flex-wrap: wrap;
}
.ev-cta-banner h3 { font-size: 1.5rem; margin-bottom: 8px; }
.ev-cta-banner p { font-size: .88rem; opacity: .92; max-width: 440px; line-height: 1.6; }

/* ── Newsletter ──────────────────────────────────────────────── */
.ev-nl-section { background: var(--ev-navy); color: #fff; padding: 64px 0; text-align: center; }
.ev-nl-section h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
.ev-nl-section p { color: rgba(255,255,255,.68); margin-top: 10px; }
.ev-nl-form { display: flex; gap: 10px; max-width: 440px; margin: 26px auto 0; flex-wrap: wrap; justify-content: center; }
.ev-nl-inp { flex: 1; min-width: 220px; padding: 14px 20px; border-radius: 100px; border: none; font-size: .88rem; outline: none; }
.ev-nl-btn { padding: 14px 26px; border-radius: 100px; background: var(--ev-orange); color: #fff; font-weight: 800; font-size: .88rem; transition: all var(--ev-ease); }
.ev-nl-btn:hover { background: var(--ev-orange-d); transform: translateY(-2px); }

/* ── Standalone footer ───────────────────────────────────────── */
.ev-footer { background: var(--ev-navy); color: rgba(255,255,255,.68); padding: 54px 0 26px; }
.ev-ft-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.1); }
.ev-ft-brand img { height: 32px; width: auto; margin-bottom: 14px; }
.ev-ft-brand p { font-size: .84rem; line-height: 1.65; max-width: 300px; }
.ev-ft-col h4 { font-family: var(--ev-font); font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.85); margin-bottom: 14px; }
.ev-ft-links { display: flex; flex-direction: column; gap: 10px; }
.ev-ft-links a { font-size: .85rem; transition: color var(--ev-ease); }
.ev-ft-links a:hover { color: #fff; }
.ev-ft-bottom { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding-top: 22px; font-size: .78rem; }
@media (max-width: 760px) { .ev-ft-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ── VybSpot cross-promo ─────────────────────────────────────── */
.ev-vyb-promo { display: flex; align-items: center; gap: 14px; background: linear-gradient(120deg, rgba(139,92,246,.14), rgba(76,29,149,.14)); border: 1px solid rgba(139,92,246,.3); border-radius: var(--ev-r-md); padding: 16px 22px; margin-top: 8px; flex-wrap: wrap; transition: all var(--ev-ease); }
.ev-vyb-promo:hover { border-color: rgba(139,92,246,.6); background: linear-gradient(120deg, rgba(139,92,246,.2), rgba(76,29,149,.2)); }
.ev-vyb-ico { font-size: 1.3rem; flex-shrink: 0; }
.ev-vyb-txt { flex: 1; min-width: 200px; font-size: .84rem; color: rgba(255,255,255,.8); line-height: 1.5; }
.ev-vyb-txt strong { color: #fff; }
.ev-vyb-arrow { font-size: .8rem; font-weight: 800; color: #c4b5fd; white-space: nowrap; }

/* ── Scroll reveal ───────────────────────────────────────────── */
.ev-reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.ev-reveal.in { opacity: 1; transform: translateY(0); }

/* ── Toast ───────────────────────────────────────────────────── */
.ev-toast-wrap { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 3000; display: flex; flex-direction: column; gap: 8px; align-items: center; pointer-events: none; }
.ev-toast {
  background: var(--ev-navy); color: #fff; padding: 13px 22px; border-radius: 100px; font-size: .84rem; font-weight: 600;
  box-shadow: var(--ev-sh-lg); display: flex; align-items: center; gap: 9px; opacity: 0; transform: translateY(10px);
  transition: all .3s var(--ev-ease);
}
.ev-toast.show { opacity: 1; transform: translateY(0); }
.ev-toast.coral { background: var(--ev-coral); }
.ev-toast.green { background: var(--ev-teal); }

/* ── Detail page ─────────────────────────────────────────────── */
.ev-detail-hero { position: relative; height: 400px; overflow: hidden; background: var(--ev-navy); }
.ev-detail-hero img { width: 100%; height: 100%; object-fit: cover; opacity: .75; }
.ev-detail-hero-ov { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,23,51,.15) 0%, rgba(14,23,51,.85) 100%); }
.ev-detail-hero-in { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 0; color: #fff; }
.ev-detail-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; margin-top: -60px; position: relative; z-index: 2; }
.ev-detail-main { background: var(--ev-surface); border-radius: var(--ev-r-xl); padding: 40px; box-shadow: var(--ev-sh-lg); }
.ev-detail-main h2 { font-size: 1.3rem; margin: 28px 0 14px; }
.ev-detail-main h2:first-child { margin-top: 0; }
.ev-detail-main p.body-txt { font-size: .93rem; color: var(--ev-muted-d); line-height: 1.8; white-space: pre-line; }
.ev-info-card { background: var(--ev-surface); border-radius: var(--ev-r-xl); padding: 30px; box-shadow: var(--ev-sh-lg); position: sticky; top: 150px; }
.ev-info-price { font-family: var(--ev-display); font-size: 2rem; color: var(--ev-navy); margin-bottom: 4px; }
.ev-info-price.free { color: var(--ev-teal); }
.ev-info-card .ev-btn { width: 100%; margin-top: 18px; }
.ev-info-list { display: flex; flex-direction: column; gap: 16px; margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--ev-border); }
.ev-info-item { display: flex; gap: 13px; align-items: flex-start; }
.ev-info-item .ic { width: 38px; height: 38px; border-radius: 11px; background: var(--ev-peach); color: var(--ev-orange-d); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: .95rem; }
.ev-info-item strong { display: block; font-size: .85rem; color: var(--ev-text); }
.ev-info-item span { font-size: .78rem; color: var(--ev-muted); }
.ev-share-row { display: flex; gap: 9px; margin-top: 20px; }
.ev-share-btn { width: 38px; height: 38px; border-radius: 50%; background: var(--ev-cream); color: var(--ev-muted-d); display: flex; align-items: center; justify-content: center; transition: all var(--ev-ease); }
.ev-share-btn:hover { background: var(--ev-navy); color: #fff; }
@media (max-width: 900px) {
  .ev-detail-layout { grid-template-columns: 1fr; margin-top: -40px; }
  .ev-info-card { position: static; }
  .ev-detail-main { padding: 28px 22px; }
}

/* ── Submit form ─────────────────────────────────────────────── */
.ev-form-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.ev-form-card { background: var(--ev-surface); border-radius: var(--ev-r-xl); border: 1px solid var(--ev-border); padding: 42px; box-shadow: var(--ev-sh-md); }
.ev-form-card h2 { font-size: 1.4rem; margin-bottom: 6px; }
.ev-form-card > p.sub { font-size: .85rem; color: var(--ev-muted); margin-bottom: 30px; }
.ev-form-grid { display: grid; gap: 16px; }
.ev-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ev-field { display: flex; flex-direction: column; gap: 6px; }
.ev-field label { font-size: .78rem; font-weight: 700; color: var(--ev-muted-d); }
.ev-field .req { color: var(--ev-coral); }
.ev-field input, .ev-field select, .ev-field textarea {
  padding: 12px 15px; border: 1.5px solid var(--ev-border); border-radius: var(--ev-r-sm); font-family: var(--ev-font);
  font-size: .87rem; outline: none; transition: border-color var(--ev-ease); resize: vertical; color: var(--ev-text);
}
.ev-field input:focus, .ev-field select:focus, .ev-field textarea:focus { border-color: var(--ev-orange); }
.ev-hint { font-size: .74rem; color: var(--ev-muted); margin-top: -2px; }
.ev-divider { border: none; border-top: 1px solid var(--ev-border); margin: 8px 0; }
.ev-check-row { display: flex; align-items: flex-start; gap: 10px; }
.ev-check-row input { margin-top: 3px; accent-color: var(--ev-orange); }
.ev-check-row label { font-size: .82rem; color: var(--ev-muted); line-height: 1.55; }
.ev-check-row a { color: var(--ev-orange-d); font-weight: 700; }
.ev-error-note { background: var(--ev-coral-l); border: 1px solid #f4c9c4; border-radius: var(--ev-r-sm); padding: 13px 16px; font-size: .85rem; color: #8f1e18; font-weight: 600; }
.ev-sidebar-card { background: var(--ev-surface); border-radius: var(--ev-r-lg); border: 1px solid var(--ev-border); padding: 26px; box-shadow: var(--ev-sh-sm); margin-bottom: 18px; }
.ev-sidebar-card h4 { font-family: var(--ev-font); font-size: .9rem; font-weight: 800; margin-bottom: 12px; }
.ev-tip { display: flex; align-items: flex-start; gap: 10px; font-size: .81rem; color: var(--ev-muted); line-height: 1.55; margin-bottom: 10px; }
.ev-tip i { color: var(--ev-orange); margin-top: 2px; flex-shrink: 0; }
.ev-success { text-align: center; padding: 50px 20px; }
.ev-success-ic { width: 78px; height: 78px; border-radius: 50%; background: var(--ev-teal-l); color: var(--ev-teal); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 2.1rem; }
.ev-success h2 { font-size: 1.4rem; color: var(--ev-teal); margin-bottom: 10px; }
.ev-success p { color: var(--ev-muted); font-size: .9rem; max-width: 360px; margin: 0 auto 26px; line-height: 1.65; }
.ev-gate { text-align: center; padding: 90px 24px; max-width: 560px; margin: 0 auto; }
.ev-gate-ic { width: 80px; height: 80px; border-radius: 50%; background: var(--ev-peach); display: flex; align-items: center; justify-content: center; font-size: 2.2rem; color: var(--ev-orange-d); margin: 0 auto 24px; }
.ev-gate h1 { font-size: 1.5rem; margin-bottom: 14px; }
.ev-gate p { color: var(--ev-muted); font-size: .9rem; line-height: 1.7; margin-bottom: 26px; }
@media (max-width: 900px) { .ev-form-layout { grid-template-columns: 1fr; } .ev-form-card { padding: 28px 22px; } .ev-form-row { grid-template-columns: 1fr; } }
