/* ============================================================
   Wolter_Rousseaux Media GmbH – style.css v1.2 (fixed)
   ============================================================ */

:root {
  --dark:       #0c0c0c;
  --charcoal:   #161616;
  --mid:        #222222;
  --mid2:       #2e2e2e;
  --border:     #333333;
  --border2:    #444444;
  --gold:       #C9A84C;
  --gold2:      #E8C97A;
  --text:       #D0C8B8;
  --text-dim:   #888880;
  --white:      #ffffff;
  --red:        #D94040;
  --green:      #4CAF7A;
  --blue:       #4A90D9;
  --radius:     4px;
  --radius-lg:  8px;
  --shadow:     0 8px 32px rgba(0,0,0,.6);
  --shadow-sm:  0 2px 12px rgba(0,0,0,.4);
  --nav-h:      68px;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── KEY FIX: body bekommt Abstand für die fixe Navbar ────── */
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--dark);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: var(--nav-h); /* ← ALLE Seiten haben automatisch Abstand */
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }
h1,h2,h3,h4,h5 { color: var(--white); line-height: 1.2; }
p { line-height: 1.7; }
strong { font-weight: 700; }

/* ─── UTILITIES ──────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-48 { margin-top: 48px; }
.mt-32 { margin-top: 32px; }
.section-inner { max-width: 1320px; margin: 0 auto; padding: 0 32px; }

/* ─── BADGES ─────────────────────────────────────────────── */
.badge { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; }
.badge-gold   { background: rgba(201,168,76,.18); color: var(--gold);  border: 1px solid rgba(201,168,76,.35); }
.badge-green  { background: rgba(76,175,122,.18); color: var(--green); border: 1px solid rgba(76,175,122,.35); }
.badge-red    { background: rgba(217,64,64,.18);  color: var(--red);   border: 1px solid rgba(217,64,64,.35); }
.badge-blue   { background: rgba(74,144,217,.18); color: var(--blue);  border: 1px solid rgba(74,144,217,.35); }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; padding: 11px 26px; transition: all .2s; cursor: pointer; border: none; border-radius: var(--radius); white-space: nowrap; text-decoration: none; }
.btn-primary  { background: var(--gold); color: var(--dark); }
.btn-primary:hover  { background: var(--gold2); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(201,168,76,.3); color: var(--dark); }
.btn-outline  { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn-outline:hover  { background: rgba(201,168,76,.08); color: var(--gold); }
.btn-ghost    { background: var(--mid2); color: var(--text); border: 1px solid var(--border2); }
.btn-ghost:hover    { background: var(--mid); border-color: var(--gold); color: var(--gold); }
.btn-danger   { background: var(--red); color: #fff; }
.btn-danger:hover   { background: #b83030; color: #fff; }
.btn-sm  { padding: 7px 16px; font-size: 11px; }
.btn-lg  { padding: 15px 38px; font-size: 14px; }
.btn-block { width: 100%; }

/* ─── FORMS ──────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--text-dim); margin-bottom: 7px; }
input[type=text], input[type=email], input[type=password], input[type=date], input[type=number], input[type=tel], select, textarea {
  width: 100%; padding: 11px 15px; background: var(--mid); border: 1px solid var(--border2);
  color: var(--text); border-radius: var(--radius); font-size: 14px;
  transition: border-color .2s, box-shadow .2s; -webkit-appearance: none; appearance: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); outline: none; box-shadow: 0 0 0 3px rgba(201,168,76,.12); }
input:disabled, select:disabled { opacity: .5; cursor: not-allowed; }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
select option { background: var(--mid); color: var(--text); }
textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; gap: 16px; }
.form-row-2 { grid-template-columns: 1fr 1fr; }
.form-row-3 { grid-template-columns: 1fr 1fr 1fr; }

.form-section-card { background: var(--charcoal); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 20px; }
.form-section-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 22px; padding-bottom: 14px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 12px; }
.step-num { width: 28px; height: 28px; border-radius: 50%; background: var(--gold); color: var(--dark); font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.form-actions { display: flex; gap: 12px; align-items: center; margin-top: 8px; flex-wrap: wrap; }
.event-form { max-width: 820px; }

/* ─── FLASH MESSAGES ─────────────────────────────────────── */
.flash-container { position: fixed; top: calc(var(--nav-h) + 12px); right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; max-width: 400px; }
.flash { padding: 14px 18px; border-radius: var(--radius); font-size: 13px; font-weight: 500; display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow); animation: flashIn .3s ease; border: 1px solid var(--border2); }
.flash-success { background: var(--charcoal); border-left: 3px solid var(--green); color: var(--green); }
.flash-error   { background: var(--charcoal); border-left: 3px solid var(--red);   color: #f08080; }
.flash-info    { background: var(--charcoal); border-left: 3px solid var(--gold);  color: var(--gold); }
.flash-warning { background: var(--charcoal); border-left: 3px solid orange; color: orange; }
.flash-close { background: none; border: none; cursor: pointer; color: inherit; margin-left: auto; opacity: .6; font-size: 14px; }
.flash-close:hover { opacity: 1; }
@keyframes flashIn { from { transform: translateX(30px); opacity: 0; } to { transform: none; opacity: 1; } }
.flash:not(.flash-container .flash) { margin-bottom: 20px; }

/* ─── NAVBAR ──────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--nav-h);
  background: rgba(12,12,12,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: 1320px; margin: 0 auto; padding: 0 32px; height: 100%; display: flex; align-items: center; gap: 28px; }
.nav-brand { display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }
.nav-logo-mark { width: 36px; height: 36px; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-header, 'Playfair Display', serif); font-size: 18px; font-weight: 700; color: var(--dark); flex-shrink: 0; }
.nav-brand-name { font-family: var(--font-header, 'Playfair Display', serif); font-size: 15px; font-weight: 700; color: var(--white); line-height: 1.1; }
.nav-brand-name span { display: block; font-family: var(--font-header, 'DM Sans', sans-serif); font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--header-active, var(--gold)); margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link { font-size: 13px; font-weight: 500; color: var(--text-dim); padding: 7px 14px; border-radius: var(--radius); transition: .15s; cursor: pointer; white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: var(--gold); background: rgba(201,168,76,.08); }
.nav-right { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.nav-user-menu { position: relative; }
.nav-user-trigger { display: flex; align-items: center; gap: 9px; cursor: pointer; padding: 6px 10px; border-radius: var(--radius); transition: .15s; }
.nav-user-trigger:hover { background: var(--mid2); }
.nav-user-name { font-size: 13px; color: var(--text-dim); }
.nav-caret { font-size: 10px; color: var(--text-dim); }
.nav-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--gold); color: var(--dark); font-weight: 700; font-size: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-dropdown { position: absolute; top: calc(100% + 8px); right: 0; background: var(--mid); border: 1px solid var(--border2); border-radius: var(--radius-lg); min-width: 200px; box-shadow: var(--shadow); overflow: hidden; display: none; z-index: 600; }
.nav-user-menu:hover .nav-dropdown { display: block; }
.nav-dropdown-header { padding: 14px 16px; border-bottom: 1px solid var(--border); display: flex; flex-direction: column; gap: 2px; }
.nav-dropdown-header strong { font-size: 13px; color: var(--white); }
.nav-dropdown-header small { font-size: 11px; color: var(--text-dim); }
.nav-dropdown a { display: block; padding: 11px 16px; font-size: 13px; color: var(--text); border-bottom: 1px solid var(--border); transition: .12s; cursor: pointer; }
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { background: var(--mid2); color: var(--gold); }
.nav-dropdown-divider { height: 1px; background: var(--border); }
.nav-dropdown-logout { color: var(--red) !important; }
.nav-mobile-toggle { display: none; background: none; border: 1px solid var(--border2); color: var(--text); padding: 7px 12px; border-radius: var(--radius); cursor: pointer; font-size: 16px; }
.nav-mobile { display: none; flex-direction: column; background: var(--charcoal); border-top: 1px solid var(--border); padding: 16px 24px; }
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text); }
.nav-mobile a:last-child { border-bottom: none; }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 110% 70% at 65% 40%, rgba(201,168,76,.05) 0%, transparent 60%), linear-gradient(180deg, var(--dark) 0%, #0a0a0a 100%);
}
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(201,168,76,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,.035) 1px, transparent 1px); background-size: 80px 80px; }
.hero-line { position: absolute; left:0; right:0; top:50%; height:1px; background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,.15) 30%, rgba(201,168,76,.3) 50%, rgba(201,168,76,.15) 70%, transparent 100%); }
.hero-inner { position: relative; z-index: 2; max-width: 1320px; margin: 0 auto; padding: 80px 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; width: 100%; }
.hero-kicker { font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; display: flex; align-items: center; gap: 12px; }
.hero-kicker::before { content: ''; width: 36px; height: 1px; background: var(--gold); }
.hero-h1 { font-family: 'Playfair Display', serif; font-size: clamp(44px, 5vw, 72px); font-weight: 900; color: var(--white); line-height: 1.0; margin-bottom: 22px; }
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 16px; color: var(--text-dim); line-height: 1.75; margin-bottom: 38px; max-width: 440px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 56px; padding-top: 36px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 700; color: var(--white); line-height: 1; }
.hero-stat-num span { color: var(--gold); }
.hero-stat-label { font-size: 12px; color: var(--text-dim); margin-top: 4px; }
.hero-mockup { background: var(--charcoal); border: 1px solid var(--border2); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow), 0 0 60px rgba(201,168,76,.06); }
.mockup-bar { background: var(--mid); padding: 11px 16px; display: flex; align-items: center; gap: 7px; border-bottom: 1px solid var(--border); }
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot:nth-child(1){background:#FF5F57} .mockup-dot:nth-child(2){background:#FFBD2E} .mockup-dot:nth-child(3){background:#28CA41}
.mockup-url { background: var(--dark); border: 1px solid var(--border); border-radius: 3px; padding: 4px 12px; font-size: 11px; color: var(--text-dim); margin-left: 8px; flex: 1; }
.mockup-body { padding: 20px; }
.mockup-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim); margin-bottom: 14px; }
.mockup-row { display: flex; align-items: center; gap: 12px; padding: 11px; border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 8px; background: var(--mid); }
.mockup-icon { width: 36px; height: 36px; border-radius: 4px; background: var(--mid2); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.mockup-info { flex: 1; min-width: 0; }
.mockup-info strong { display: block; font-size: 13px; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mockup-info span { font-size: 11px; color: var(--text-dim); }

/* ─── FEATURES ───────────────────────────────────────────── */
.features-section { padding: 100px 0; background: var(--charcoal); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); text-align: center; margin-bottom: 14px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 48px); font-weight: 700; text-align: center; color: var(--white); margin-bottom: 14px; }
.section-sub { text-align: center; color: var(--text-dim); font-size: 16px; max-width: 560px; margin: 0 auto 60px; line-height: 1.75; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.feature-item { background: var(--charcoal); padding: 38px 34px; transition: background .2s; }
.feature-item:hover { background: var(--mid); }
.feature-icon { width: 50px; height: 50px; background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.2); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 18px; }
.feature-title { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.feature-text { font-size: 14px; color: var(--text-dim); line-height: 1.75; }

/* ─── SHOWCASE / BROWSE ──────────────────────────────────── */
.showcase-section { padding: 100px 0; }

/* 4 Spalten auf Landing-Page, 3 auf Browse */
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 16px;
}
.browse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ─── EVENT CARD ─────────────────────────────────────────── */
.event-card { background: var(--charcoal); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: all .22s; display: flex; flex-direction: column; }
.event-card:hover { border-color: var(--gold); box-shadow: 0 12px 40px rgba(0,0,0,.5), 0 0 0 1px rgba(201,168,76,.08); transform: translateY(-4px); }
.event-card-img { height: 170px; display: flex; align-items: center; justify-content: center; font-size: 52px; position: relative; overflow: hidden; flex-shrink: 0; }
.event-card-img::after { content:''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 55%); }
.event-card-emoji { position: relative; z-index: 1; }
.event-card-cat-badge { position: absolute; top: 12px; left: 12px; z-index: 1; }
.ec-blue   { background: linear-gradient(135deg, #0f0f1e 0%, #1a2a5a 100%); }
.ec-gold   { background: linear-gradient(135deg, #1e1a0f 0%, #5a4a1a 100%); }
.ec-green  { background: linear-gradient(135deg, #0f1e0f 0%, #1a4a2a 100%); }
.ec-navy   { background: linear-gradient(135deg, #080f1e 0%, #0f2050 100%); }
.ec-teal   { background: linear-gradient(135deg, #0f1e1e 0%, #1a4a5a 100%); }
.ec-purple { background: linear-gradient(135deg, #1a0f1e 0%, #4a1a5a 100%); }
.ec-orange { background: linear-gradient(135deg, #1e0f0a 0%, #5a2a1a 100%); }
.ec-red    { background: linear-gradient(135deg, #1e0f0f 0%, #5a1a1a 100%); }
.event-card-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.event-card-date { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: .5px; }
.event-card-title { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--white); line-height: 1.3; }
.event-card-desc { font-size: 12px; color: var(--text-dim); line-height: 1.55; flex: 1; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.event-card-tags { display: flex; gap: 4px; flex-wrap: wrap; margin-top: 6px; }
.event-card-footer { padding: 12px 20px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.event-card-location { font-size: 12px; color: var(--text-dim); }
.event-card-more { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: .5px; text-transform: uppercase; }

/* ─── CTA SECTION ────────────────────────────────────────── */
.cta-section { padding: 100px 0; border-top: 1px solid var(--border); text-align: center; position: relative; overflow: hidden; background: linear-gradient(180deg, #0f0f0f 0%, #161208 50%, #0f0f0f 100%); }
.cta-section::before { content:''; position: absolute; top:0; left:50%; transform: translateX(-50%); width: 600px; height: 300px; background: radial-gradient(ellipse, rgba(201,168,76,.07) 0%, transparent 70%); pointer-events: none; }

/* ─── FOOTER ─────────────────────────────────────────────── */
#site-footer { background: var(--dark); border-top: 1px solid var(--border); }
.footer-inner { max-width: 1320px; margin: 0 auto; padding: 56px 32px 28px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.footer-brand-tagline { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footer-brand-desc { font-size: 13px; color: var(--text-dim); line-height: 1.7; }
.footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-dim); margin-bottom: 16px; }
.footer-col a, .footer-col span { display: block; font-size: 13px; color: var(--text-dim); margin-bottom: 10px; transition: color .15s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { font-size: 12px; color: var(--text-dim); transition: color .15s; }
.footer-legal a:hover { color: var(--gold); }
.footer-copy { font-size: 12px; color: var(--text-dim); }

/* ─── AUTH PAGES ─────────────────────────────────────────── */
.auth-page { display: flex; flex-direction: column; min-height: 100vh; }
.auth-wrapper { display: flex; align-items: center; justify-content: center; flex: 1; padding: 60px 24px; }
.auth-box { width: 100%; max-width: 480px; background: var(--charcoal); border: 1px solid var(--border2); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.auth-box-wide { max-width: 560px; }
.auth-header { background: var(--mid); padding: 32px 36px; text-align: center; border-bottom: 1px solid var(--border); }
.auth-logo-mark { width: 50px; height: 50px; margin: 0 auto 14px; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--dark); }
.auth-title { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.auth-sub { font-size: 13px; color: var(--text-dim); }
.auth-body { padding: 32px 36px; }
.auth-footer { padding: 0 36px 28px; text-align: center; font-size: 13px; color: var(--text-dim); }
.auth-footer a { color: var(--gold); }
.auth-footer a:hover { text-decoration: underline; }

/* ─── INNER LAYOUT (Dashboard, Admin) ───────────────────── */
.inner-page { /* body padding-top handles the nav offset */ }
.inner-layout { display: flex; min-height: calc(100vh - var(--nav-h)); }

/* Sidebar */
.sidebar { width: 260px; flex-shrink: 0; background: var(--charcoal); border-right: 1px solid var(--border); padding: 24px 0; position: sticky; top: var(--nav-h); height: calc(100vh - var(--nav-h)); overflow-y: auto; }
.sidebar-user { padding: 16px 20px 20px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.sidebar-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: var(--dark); font-weight: 700; font-size: 15px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sidebar-user-info strong { display: block; font-size: 13px; color: var(--white); }
.sidebar-user-info small { font-size: 11px; color: var(--text-dim); }
.sidebar-group { margin-bottom: 8px; padding: 0 12px; }
.sidebar-group-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim); margin: 16px 0 6px 4px; }
.sidebar-link { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: var(--radius); font-size: 13px; color: var(--text-dim); cursor: pointer; transition: .14s; margin-bottom: 1px; text-decoration: none; }
.sidebar-link:hover { background: var(--mid2); color: var(--text); }
.sidebar-link.active { background: rgba(201,168,76,.12); color: var(--gold); }
.sico { font-size: 15px; width: 20px; text-align: center; flex-shrink: 0; }
.sidebar-bottom { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.sidebar-logout { color: var(--red) !important; }
.inner-main { flex: 1; padding: 40px 48px; min-width: 0; overflow-y: auto; }
.page-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; gap: 16px; flex-wrap: wrap; }
.page-title { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 700; color: var(--white); }
.page-subtitle { font-size: 14px; color: var(--text-dim); margin-top: 4px; }

/* Stats grid */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }
.stat-card { background: var(--charcoal); border: 1px solid var(--border); padding: 22px; border-radius: var(--radius); }
.stat-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-dim); margin-bottom: 8px; }
.stat-value { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 700; color: var(--white); line-height: 1; }
.stat-delta { font-size: 12px; margin-top: 6px; color: var(--text-dim); }
.stat-delta.up { color: var(--green); }

/* Section card */
.section-card { background: var(--charcoal); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 24px; }
.section-card-header { padding: 18px 24px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.section-card-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--white); }

/* Tables */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 13px; }
th { text-align: left; padding: 11px 16px; font-size: 10px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--text-dim); border-bottom: 2px solid var(--border); white-space: nowrap; }
td { padding: 13px 16px; border-bottom: 1px solid var(--border); color: var(--text); vertical-align: middle; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(255,255,255,.015); }
td a { color: var(--text); transition: color .15s; }
td a:hover { color: var(--gold); }
.td-actions { display: flex; gap: 6px; flex-wrap: nowrap; }

/* Tabs */
.tabs { display: flex; gap: 2px; border-bottom: 2px solid var(--border); margin-bottom: 24px; }
.tab-btn { padding: 11px 20px; font-size: 13px; font-weight: 600; color: var(--text-dim); background: none; border: none; border-bottom: 2px solid transparent; margin-bottom: -2px; cursor: pointer; transition: .15s; }
.tab-btn:hover { color: var(--text); }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Profile */
.profile-hero { display: flex; align-items: center; gap: 20px; margin-bottom: 32px; padding: 24px; background: var(--charcoal); border: 1px solid var(--border); border-radius: var(--radius); }
.profile-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--gold); color: var(--dark); font-size: 24px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.profile-name { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--white); font-weight: 700; }
.profile-email { font-size: 14px; color: var(--text-dim); }

/* Filter bar */
.filter-bar { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.filter-form { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; width: 100%; }
.filter-search { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 200px; background: var(--charcoal); border: 1px solid var(--border2); border-radius: var(--radius); padding: 9px 14px; }
.filter-search-icon { color: var(--text-dim); font-size: 15px; }
.filter-search input { background: none; border: none; flex: 1; padding: 0; font-size: 14px; color: var(--text); }
.filter-search input:focus { box-shadow: none; }
.filter-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-pill { padding: 7px 16px; border-radius: 20px; font-size: 12px; font-weight: 600; cursor: pointer; border: 1.5px solid var(--border2); color: var(--text-dim); background: var(--mid); transition: .15s; text-decoration: none; }
.filter-pill:hover { border-color: var(--gold); color: var(--gold); }
.filter-pill.active { background: var(--gold); border-color: var(--gold); color: var(--dark); }

/* Pagination */
.pagination { display: flex; gap: 6px; padding: 20px 0; flex-wrap: wrap; }
.page-link { display: inline-flex; align-items: center; justify-content: center; min-width: 34px; height: 34px; padding: 0 10px; background: var(--mid); border: 1px solid var(--border2); border-radius: var(--radius); font-size: 13px; font-weight: 600; color: var(--text-dim); text-decoration: none; transition: .15s; }
.page-link:hover { border-color: var(--gold); color: var(--gold); }
.page-link.active { background: var(--gold); border-color: var(--gold); color: var(--dark); }

/* Empty state */
.empty-state { text-align: center; padding: 60px 20px; }
.empty-icon { font-size: 52px; margin-bottom: 14px; opacity: .45; }
.empty-title { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--white); margin-bottom: 8px; }
.empty-text { font-size: 14px; color: var(--text-dim); margin-bottom: 22px; line-height: 1.6; }

/* ─── BROWSE PAGE ─────────────────────────────────────────── */
.browse-header { background: var(--charcoal); border-bottom: 1px solid var(--border); padding: 52px 0 0; }
.browse-title { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.browse-sub { font-size: 15px; color: var(--text-dim); margin-bottom: 28px; }
.browse-search-form { margin-bottom: 24px; }
.browse-search-bar { display: flex; align-items: center; gap: 12px; background: var(--mid); border: 1px solid var(--border2); padding: 10px 16px; border-radius: var(--radius); max-width: 600px; }
.browse-search-bar span { color: var(--text-dim); font-size: 16px; }
.browse-search-bar input { background: none; border: none; flex: 1; font-size: 14px; color: var(--text); padding: 0; }
.browse-search-bar input:focus { box-shadow: none; }
.browse-filter-pills { display: flex; gap: 8px; flex-wrap: wrap; padding-bottom: 24px; }
.browse-body { padding: 48px 0; }
.browse-meta { font-size: 13px; color: var(--text-dim); margin-bottom: 24px; }

/* ─── EVENT DETAIL ───────────────────────────────────────── */
.detail-hero { min-height: 340px; display: flex; align-items: flex-end; padding-bottom: 0; position: relative; overflow: hidden; }
.detail-hero-emoji { position: absolute; top: 50%; left: 60%; transform: translate(-50%, -50%); font-size: 160px; opacity: .1; pointer-events: none; }
.detail-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.2) 0%, rgba(12,12,12,.9) 80%); }
.detail-breadcrumb { font-size: 12px; color: var(--text-dim); margin-bottom: 12px; }
.detail-breadcrumb a { color: var(--text-dim); transition: color .15s; }
.detail-breadcrumb a:hover { color: var(--gold); }
.detail-cat { margin-bottom: 12px; display: flex; gap: 8px; flex-wrap: wrap; }
.detail-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 52px); font-weight: 900; color: var(--white); margin-bottom: 14px; line-height: 1.1; }
.detail-meta-row { display: flex; gap: 20px; flex-wrap: wrap; font-size: 14px; color: var(--text-dim); margin-bottom: 30px; }
.detail-body { padding: 48px 0; }
.detail-layout { display: grid; grid-template-columns: 1fr 380px; gap: 28px; align-items: start; }
.detail-description { padding: 0 24px 24px; font-size: 15px; color: var(--text); line-height: 1.8; }
.kpi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }
.kpi-item { background: var(--charcoal); padding: 20px; }
.kpi-item:hover { background: var(--mid); }
.kpi-value { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--white); }
.kpi-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-dim); margin-top: 4px; }
.detail-info-list { padding: 4px 24px 20px; }
.detail-info-row { display: flex; align-items: flex-start; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.detail-info-row:last-child { border-bottom: none; }
.detail-info-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.detail-info-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-dim); }
.detail-info-value { font-size: 14px; color: var(--text); margin-top: 2px; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1200px) {
  .events-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1100px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-right { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .browse-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .sidebar { display: none; }
  .inner-main { padding: 28px 20px; }
  .form-row-2, .form-row-3 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-user-name, .nav-caret { display: none; }
}
@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .browse-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 38px; }
  .section-inner { padding: 0 20px; }
  .inner-main { padding: 20px 16px; }
  .page-header { flex-direction: column; align-items: flex-start; }
  .detail-right { grid-template-columns: 1fr; }
  .browse-title { font-size: 28px; }
}

/* ─── UPLOAD FELDER ──────────────────────────────────────── */
.upload-block { margin-bottom: 20px; }
.upload-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--text-dim); margin-bottom: 8px; }
.upload-label small { text-transform: none; letter-spacing: 0; font-weight: 400; }
.upload-input {
  display: block; width: 100%;
  background: var(--mid); border: 2px dashed var(--border2);
  border-radius: var(--radius); padding: 16px;
  color: var(--text-dim); font-size: 13px; cursor: pointer;
  transition: border-color .2s;
}
.upload-input:hover { border-color: var(--gold); color: var(--gold); }
.upload-preview { margin-bottom: 10px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.upload-preview img { max-height: 100px; border-radius: var(--radius); border: 1px solid var(--border2); }
.upload-preview video { max-width: 280px; border-radius: var(--radius); }
.upload-remove-label { font-size: 12px; color: var(--red); cursor: pointer; display: flex; align-items: center; gap: 6px; }
.upload-remove-label input { width: auto; }
.divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }

/* ─── CMS EDITOR ─────────────────────────────────────────── */
.cms-page-nav { display: flex; gap: 4px; border-bottom: 2px solid var(--border); margin-bottom: 28px; flex-wrap: wrap; }
.cms-page-tab { padding: 10px 20px; font-size: 13px; font-weight: 600; color: var(--text-dim); border-bottom: 2px solid transparent; margin-bottom: -2px; cursor: pointer; transition: .15s; text-decoration: none; }
.cms-page-tab:hover { color: var(--text); }
.cms-page-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

.cms-field { margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.cms-field:last-child { border-bottom: none; }
.cms-field label { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.cms-key-hint { font-size: 10px; font-family: monospace; background: var(--mid2); color: var(--text-dim); padding: 2px 8px; border-radius: 3px; letter-spacing: 0; text-transform: none; font-weight: 400; }
.cms-hint { font-size: 11px; color: var(--text-dim); margin-top: 5px; }
.cms-html-field { font-family: monospace; font-size: 13px; }

/* ─── MAIL TEMPLATE EDITOR ───────────────────────────────── */
.mail-tpl-item { display: flex; flex-direction: column; gap: 3px; padding: 12px; border-radius: var(--radius); cursor: pointer; text-decoration: none; margin-bottom: 2px; border: 1px solid transparent; transition: .15s; }
.mail-tpl-item:hover { background: var(--mid2); border-color: var(--border2); }
.mail-tpl-item.active { background: rgba(201,168,76,.12); border-color: rgba(201,168,76,.3); }
.mail-tpl-item strong { font-size: 13px; color: var(--white); }
.mail-tpl-key { font-size: 10px; font-family: monospace; color: var(--text-dim); }

.mail-variables-bar { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; background: var(--charcoal); border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 16px; margin-bottom: 20px; font-size: 12px; color: var(--text-dim); }
.var-pill { background: var(--mid2); border: 1px solid var(--border2); color: var(--gold); font-family: monospace; font-size: 11px; padding: 3px 8px; border-radius: 3px; cursor: pointer; transition: .15s; }
.var-pill:hover { background: var(--gold); color: var(--dark); }

.mail-editor-toolbar { display: flex; gap: 4px; align-items: center; background: var(--mid); border: 1px solid var(--border2); border-bottom: none; padding: 8px 10px; border-radius: var(--radius) var(--radius) 0 0; flex-wrap: wrap; }
.mail-editor-toolbar + textarea { border-radius: 0 0 var(--radius) var(--radius); }
.mail-tb-btn { background: var(--mid2); border: 1px solid var(--border2); color: var(--text); padding: 4px 10px; border-radius: 3px; font-size: 12px; font-weight: 600; cursor: pointer; transition: .15s; }
.mail-tb-btn:hover { background: var(--dark); color: var(--gold); border-color: var(--gold); }
.mail-tb-btn-gold { background: rgba(201,168,76,.15); color: var(--gold); border-color: rgba(201,168,76,.3); }
.mail-tb-sep { color: var(--border2); padding: 0 4px; }

.mail-preview-frame { background: var(--white); color: #333; padding: 32px; border-radius: var(--radius); font-family: Arial, sans-serif; font-size: 14px; line-height: 1.6; min-height: 100px; }
.mail-preview-frame h1, .mail-preview-frame h2 { color: #0c0c0c; }
.mail-preview-frame a { color: #C9A84C; }

/* ─── EVENT DETAIL – HERO MEDIA ─────────────────────────── */
.detail-hero { min-height: 380px; display:flex; align-items:flex-end; position:relative; overflow:hidden; }
.detail-hero-photo { position:absolute; inset:0; background-size:cover; background-position:center; }
.detail-event-logo {
  margin-bottom: 16px;
  display: inline-block;
}
.detail-event-logo img {
  max-height: 72px; max-width: 240px;
  background: rgba(255,255,255,.95);
  padding: 8px 14px; border-radius: 4px;
  display: block;
}

/* ─── VIDEO EMBED ────────────────────────────────────────── */
.video-embed-wrap {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
}
.video-embed-wrap iframe {
  position: absolute; top:0; left:0; width:100%; height:100%;
}
.video-embed-sm { margin-top: 14px; border-radius: 4px; overflow:hidden; }

/* ─── AUSSTELLER-KARTEN (Verwaltung) ─────────────────────── */
.exhibitor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.exhibitor-card {
  background: var(--charcoal); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .2s;
}
.exhibitor-card:hover { border-color: var(--gold); }
.exhibitor-card-top { display:flex; align-items:center; gap: 14px; }
.exhibitor-logo { width:56px; height:56px; flex-shrink:0; border-radius:4px; overflow:hidden; background:var(--white); display:flex; align-items:center; justify-content:center; padding:4px; }
.exhibitor-logo img { max-width:100%; max-height:100%; object-fit:contain; }
.exhibitor-logo-placeholder { width:56px; height:56px; flex-shrink:0; border-radius:4px; background:var(--gold); color:var(--dark); font-weight:700; font-size:18px; display:flex; align-items:center; justify-content:center; }
.exhibitor-card-info { flex:1; min-width:0; }
.exhibitor-company { font-size:15px; font-weight:700; color:var(--white); }
.exhibitor-stand { font-size:12px; color:var(--text-dim); margin-top:3px; }
.exhibitor-web { font-size:12px; color:var(--gold); margin-top:4px; display:block; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.exhibitor-desc { font-size:13px; color:var(--text-dim); line-height:1.55; }
.exhibitor-card-actions { display:flex; gap:8px; margin-top:4px; }

/* ─── AUSSTELLER-KARTEN (Detail-Seite) ───────────────────── */
.exhibitor-grid-detail {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
  padding: 20px 24px;
}
.exhibitor-detail-card {
  background: var(--mid); border: 1px solid var(--border2);
  border-radius: var(--radius-lg); padding: 20px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .2s, box-shadow .2s;
}
.exhibitor-detail-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.exhibitor-detail-head { display:flex; align-items:flex-start; gap:14px; }
.exhibitor-detail-logo { width:72px; height:72px; flex-shrink:0; background:var(--white); border-radius:4px; display:flex; align-items:center; justify-content:center; padding:6px; }
.exhibitor-detail-logo img { max-width:100%; max-height:100%; object-fit:contain; }
.exhibitor-detail-logo-placeholder { width:72px; height:72px; flex-shrink:0; background:var(--gold); color:var(--dark); font-weight:700; font-size:22px; border-radius:4px; display:flex; align-items:center; justify-content:center; }
.exhibitor-detail-name { font-family:'Playfair Display',serif; font-size:17px; font-weight:700; color:var(--white); line-height:1.2; }
.exhibitor-detail-stand { font-size:12px; color:var(--gold); margin-top:4px; }
.exhibitor-detail-desc { font-size:13px; color:var(--text-dim); line-height:1.65; }
.exhibitor-detail-photo { border-radius:4px; overflow:hidden; }
.exhibitor-detail-photo img { width:100%; max-height:200px; object-fit:cover; display:block; }
.exhibitor-detail-footer { display:flex; gap:8px; flex-wrap:wrap; padding-top:8px; border-top:1px solid var(--border); margin-top:auto; }

/* ─── RESPONSIVE UPDATES ─────────────────────────────────── */
@media (max-width: 900px) {
  .exhibitor-grid { grid-template-columns: 1fr; }
  .exhibitor-grid-detail { grid-template-columns: 1fr; padding: 14px; }
}

/* ─── OPENING HOURS ROWS ─────────────────────────────────── */
.oh-row { margin-bottom: 10px; }
.oh-row-fields {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1fr 1fr 2fr auto;
  gap: 8px; align-items: end;
}
.oh-field-label, .oh-field-date, .oh-field-time, .oh-field-note { }
.oh-remove-btn { height: 42px; align-self: end; flex-shrink: 0; }

@media (max-width: 900px) {
  .oh-row-fields { grid-template-columns: 1fr 1fr; }
  .oh-field-label { grid-column: span 2; }
  .oh-remove-btn  { grid-column: span 2; width: 100%; }
}

/* ─── DESIGN PAGE ────────────────────────────────────────── */
.design-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.design-preview-panel { position: sticky; top: calc(var(--nav-h) + 20px); }

.color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.color-field label {
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text-dim);
  margin-bottom: 6px; display: block;
}
.color-input-wrap {
  display: flex; gap: 8px; align-items: center;
}
.color-input-wrap input[type=color] {
  width: 44px; height: 40px; padding: 2px;
  border-radius: var(--radius); cursor: pointer;
  flex-shrink: 0;
}
.color-input-wrap input[type=text] {
  width: 90px; font-family: monospace; font-size: 13px;
}

@media (max-width: 1100px) {
  .design-layout { grid-template-columns: 1fr; }
  .design-preview-panel { position: static; }
}

/* ─── GOOGLE MAPS LINK ───────────────────────────────────── */
.maps-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; color: var(--gold); margin-top: 6px;
  transition: color .15s;
}
.maps-link:hover { color: var(--gold2); }

/* ─── ADMIN HEADER LIVE-VORSCHAU ─────────────────────────── */
.header-preview-wrap {
  margin-bottom: 28px;
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.header-preview-bar {
  background: rgba(12,12,12,.96);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 68px;
  display: flex; align-items: center;
  transition: background .2s, height .2s, border-color .2s;
  font-family: inherit;
}
.header-preview-inner {
  display: flex; align-items: center; gap: 24px; width: 100%;
}
.header-preview-brand {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.header-preview-logomark {
  width: 34px; height: 34px;
  background: var(--gold); color: var(--dark);
  font-weight: 700; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  overflow: hidden; flex-shrink: 0;
}
.header-preview-name {
  display: flex; flex-direction: column;
  line-height: 1.1;
}
.header-preview-name span {
  font-size: 14px; font-weight: 700; color: var(--white);
}
.header-preview-name small {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold);
}
.header-preview-links {
  display: flex; gap: 4px; flex: 1;
}
.header-preview-link {
  font-size: 12px; font-weight: 500; color: var(--text-dim);
  padding: 6px 12px; border-radius: var(--radius);
  transition: color .15s;
}
.header-preview-link.active { color: var(--gold); }
.header-preview-right {
  display: flex; gap: 8px; align-items: center; margin-left: auto;
}
.header-preview-btn-ghost {
  font-size: 11px; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; padding: 7px 14px;
  border: 1px solid var(--border2); color: var(--text);
  border-radius: var(--radius);
}
.header-preview-btn-primary {
  font-size: 11px; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; padding: 7px 14px;
  background: var(--gold); color: var(--dark);
  border-radius: var(--radius);
  transition: background .2s;
}
.header-preview-label {
  background: var(--mid2); padding: 8px 16px;
  font-size: 11px; color: var(--text-dim);
  text-align: center; letter-spacing: .5px;
}
