:root {
  --bg: #0b0907;
  --bg-soft: #15110d;
  --panel: rgba(25, 20, 16, 0.94);
  --panel-strong: rgba(15, 12, 9, 0.97);
  --card: #1c1713;
  --card-soft: #251e18;
  --ink: #f7f1eb;
  --muted: #c2b5a6;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #d9b16f;
  --accent-soft: #f0d49b;
  --accent-glow: rgba(217, 177, 111, 0.28);
  --success: #78c68a;
  --danger: #ff6f61;
  --shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
  font-family: "Avenir Next", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  background: #090705;
  overflow-x: hidden;
}
body { overflow-x: hidden; max-width: 100vw; }

html.preload-event #landing-screen {
  display: none;
}

html.preload-gallery #landing-screen {
  display: none;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(217, 177, 111, 0.14), transparent 22%),
    radial-gradient(circle at bottom right, rgba(185, 140, 78, 0.10), transparent 30%),
    linear-gradient(145deg, #090705 0%, #15100c 46%, #0b0907 100%);
}

body.landing-mode .shell {
  display: none;
}

body.checkout-success-mode .landing-card:not(.landing-card--success),
body.checkout-success-mode .landing-admin-link {
  display: none;
}

body.app-mode #landing-screen {
  display: none;
}

body.app-mode .shell {
  grid-template-columns: 1fr;
  width: min(100%, 1480px);
  margin: 0 auto;
}

body.app-mode .hero {
  border-right: none;
  border-bottom: 1px solid var(--line);
  padding: 28px 24px 22px;
  gap: 14px;
  align-items: center;
  text-align: center;
}

body.app-mode .hero h1 {
  max-width: none;
  font-size: clamp(38px, 5vw, 64px);
}

body.app-mode .hero__copy {
  max-width: 880px;
}

body.app-mode .content {
  padding: 20px 24px 32px;
}

body.app-mode .content > * {
  width: min(100%, 1240px);
  margin-inline: auto;
}

body.gallery-mode .content > * {
  width: min(100%, 1400px);
}

body.app-mode .logo-lockup,
body.app-mode .hero-highlights {
  align-items: center;
  justify-content: center;
}

body.app-mode #admin-panel,
body.app-mode #event-access-panel,
body.app-mode #event-access-fallback {
  display: none !important;
}

body.gallery-mode .topbar,
body.gallery-mode #style-grid,
body.gallery-mode .panel--upload-main,
body.gallery-mode .panel--preview {
  display: none !important;
}

body.admin-mode #landing-screen {
  display: none;
}

body.admin-mode .shell {
  grid-template-columns: 1fr;
}

body.admin-mode .content {
  display: none;
}

body.admin-mode .hero {
  border-right: none;
  background: transparent;
  padding: 28px;
  width: 100%;
  max-width: none;
  margin: 0;
}

body.admin-mode .hero__badge,
body.admin-mode .hero__copy,
body.admin-mode .hero-highlights,
body.admin-mode .hero-rating,
body.admin-mode #event-access-panel,
body.admin-mode .panel--selection:not(#admin-panel) {
  display: none;
}

body.admin-mode .logo-lockup {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

body.admin-mode .brand-logo {
  width: min(100%, 220px);
}

body.admin-mode .brand-submark {
  font-size: 14px;
  letter-spacing: 0.18em;
}

body.admin-mode .hero h1 {
  max-width: none;
  font-size: 40px;
  margin-top: 6px;
}

body.admin-mode .hero {
  gap: 14px;
}

body.admin-mode #admin-panel {
  display: block !important;
  width: 100%;
  padding: 28px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(20, 20, 20, 0.98), rgba(10, 10, 10, 0.96)),
    rgba(10, 10, 10, 0.94);
}

body.admin-mode .admin-create {
  margin-bottom: 18px;
  padding: 20px;
}

body.admin-mode .admin-workspace {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

body.admin-mode .admin-sidebar,
body.admin-mode .admin-main {
  min-width: 0;
}

body.admin-locked .logo-lockup,
body.admin-locked .hero h1,
body.admin-locked #admin-panel > .panel__label,
body.admin-locked #admin-panel > h2,
body.admin-locked #admin-panel > .panel__copy {
  display: none;
}

/* Older rule — superseded by the grid/center rule further down.
   Keep padding here; width + margin handled in the newer block. */
body.admin-locked #admin-panel {
  padding: 28px;
}

body.admin-mode .admin-summary {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-system-status {
  margin: 14px 0 16px;
}

.admin-system-panel {
  padding: 18px;
}

.admin-system-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.admin-system-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.admin-system-card strong {
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

.admin-system-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.metric-bar {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.metric-bar__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.metric-bar__top span {
  color: #f0f0f0;
  font-size: 12px;
  font-weight: 700;
}

.metric-bar__top strong {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.metric-bar__track {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.metric-bar__fill {
  height: 100%;
  border-radius: 999px;
  transition: width 180ms ease;
}

.metric-bar__fill.is-accent {
  background: linear-gradient(90deg, rgba(92, 255, 47, 0.72), rgba(92, 255, 47, 1));
}

.metric-bar__fill.is-warn {
  background: linear-gradient(90deg, rgba(255, 201, 79, 0.72), rgba(255, 201, 79, 1));
}

.metric-bar__fill.is-danger {
  background: linear-gradient(90deg, rgba(255, 111, 97, 0.72), rgba(255, 111, 97, 1));
}

.admin-system-log {
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.admin-system-log__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.admin-system-log__head strong {
  color: #fff;
}

.admin-error-list {
  display: grid;
  gap: 10px;
  max-height: 320px;
  overflow: auto;
  padding-right: 4px;
}

.admin-error-item {
  border-radius: 16px;
  border: 1px solid rgba(255, 111, 97, 0.14);
  background: rgba(255, 111, 97, 0.06);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.admin-error-item__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.admin-error-item__top strong {
  color: #fff;
  font-size: 14px;
}

.admin-error-badge {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(255, 111, 97, 0.18);
  color: #ffd7d2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-error-empty {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
  color: var(--muted);
}

body.admin-mode .admin-events {
  display: grid;
  gap: 14px;
}

body.admin-mode .admin-event-item {
  border-top: none;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  padding: 18px;
}

body.admin-mode .admin-event-item.is-selected {
  background: rgba(92, 255, 47, 0.06);
  border-color: rgba(92, 255, 47, 0.18);
}

.landing-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.landing-layout {
  width: min(100%, 980px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: start;
}

.landing-card {
  width: 100%;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.98), rgba(15, 15, 15, 0.95));
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.landing-card--order {
  align-items: stretch;
  text-align: left;
}

.landing-layout .landing-card {
  max-width: 980px;
  margin-inline: auto;
}

.landing-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -35% auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(92, 255, 47, 0.2), transparent 70%);
  pointer-events: none;
}

.landing-logo {
  width: min(100%, 260px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(92, 255, 47, 0.16));
}

.landing-card h1 {
  max-width: 12ch;
}

.landing-card--order h2 {
  margin: 0;
}

.order-overview {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.order-overview__item {
  border-radius: 18px;
  border: 1px solid rgba(217, 177, 111, 0.14);
  background: rgba(217, 177, 111, 0.06);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.order-overview__item span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.order-overview__item strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}

.order-trust {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.order-trust__item {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px 16px;
  text-align: left;
}

.order-trust__item strong {
  display: block;
  color: #fff;
  margin-bottom: 6px;
}

.order-trust__item span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.order-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}

.order-flow__step {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 12px;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.order-flow__step.is-active {
  color: #fff;
  border-color: rgba(92, 255, 47, 0.28);
  background: rgba(92, 255, 47, 0.09);
}

.order-section {
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 18px;
}

.order-section__title {
  margin: 4px 0 0;
  color: #fff;
}

.order-cta-note {
  width: 100%;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin-top: -2px;
}

.landing-access {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  width: 100%;
  align-items: end;
}

.landing-access .text-input {
  margin-top: 0;
}

.landing-feedback {
  min-height: 24px;
  color: var(--muted);
  font-size: 14px;
}

.landing-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.landing-highlights--order {
  justify-content: flex-start;
}

.landing-lead {
  max-width: 52ch;
  color: #f0f0f0;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
}

.landing-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.landing-cta__hint {
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.landing-hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.landing-hero-meta span {
  border-radius: 999px;
  padding: 8px 12px;
  border: 1px solid rgba(217, 177, 111, 0.22);
  background: rgba(217, 177, 111, 0.08);
  color: var(--accent-soft);
  font-size: 12px;
  font-weight: 700;
}

.landing-sales {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.landing-sales__item {
  border-radius: 22px;
  border: 1px solid rgba(217, 177, 111, 0.16);
  background: rgba(217, 177, 111, 0.06);
  padding: 18px;
  text-align: left;
}

.landing-sales__item strong {
  display: block;
  color: #fff;
  margin-bottom: 8px;
}

.landing-sales__item span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.landing-trust {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.landing-trust__item {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
  text-align: left;
}

.landing-trust__item strong {
  display: block;
  color: #fff;
  margin-bottom: 6px;
}

.landing-trust__item span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.landing-story {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(217, 177, 111, 0.18);
  background: rgba(217, 177, 111, 0.07);
  padding: 18px;
  text-align: left;
}

.landing-usecases {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.landing-usecases__title {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
}

.landing-usecases__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.landing-usecases__list span {
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.landing-proof {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.landing-proof__item {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
  text-align: left;
}

.landing-proof__item strong {
  display: block;
  color: #fff;
  margin-bottom: 6px;
}

.landing-proof__item span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.landing-showcase,
.landing-faq__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.landing-showcase__card,
.landing-local,
.landing-faq__item {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 18px;
}

.landing-showcase__card h3,
.landing-local h3 {
  margin: 6px 0 10px;
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
}

.landing-showcase__card p,
.landing-local p,
.landing-faq__item span {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.landing-local {
  width: 100%;
  text-align: left;
}

.landing-faq {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.landing-faq__item strong {
  display: block;
  color: #fff;
  margin-bottom: 8px;
}

.landing-card--access {
  align-items: stretch;
  text-align: left;
}

.landing-card--access h2,
.landing-card--access .hero__copy,
.landing-card--access .landing-feedback {
  text-align: center;
}

.landing-card--success {
  align-items: stretch;
  text-align: left;
}

.landing-card--success h2,
.landing-card--success .hero__copy {
  text-align: center;
}

.payment-success-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr);
  gap: 16px;
}

.payment-success-card {
  border-radius: 24px;
  border: 1px solid rgba(120, 198, 138, 0.18);
  background:
    radial-gradient(circle at top right, rgba(120, 198, 138, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.03);
  padding: 20px;
}

.payment-success-card--qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.payment-success-meta {
  display: grid;
  gap: 10px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
  margin-top: 8px;
}

.payment-success-meta strong {
  color: #fff;
}

.payment-success-meta a {
  color: var(--accent-soft);
}

.payment-success-image {
  width: min(100%, 220px);
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: 22px;
  padding: 12px;
  object-fit: contain;
}

.payment-success-actions {
  margin-top: 18px;
}

.payment-success-next {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.payment-success-next__item {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
}

.payment-success-next__item strong {
  display: block;
  color: #fff;
  margin-bottom: 6px;
}

.payment-success-next__item span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.landing-card--compliance {
  align-items: stretch;
  text-align: left;
}

.landing-card--compliance h2,
.landing-card--compliance .hero__copy {
  text-align: center;
}

.compliance-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.compliance-card {
  border-radius: 22px;
  border: 1px solid rgba(217, 177, 111, 0.16);
  background: rgba(217, 177, 111, 0.06);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.compliance-card strong {
  color: #fff;
  font-size: 16px;
}

.compliance-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.legal-panels {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.legal-panel {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
}

.legal-panel h3 {
  margin: 6px 0 12px;
  color: #fff;
  font-size: 20px;
  line-height: 1.25;
}

.legal-panel p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.legal-note {
  color: var(--accent-soft) !important;
  font-size: 13px !important;
}

.landing-admin-link {
  width: 100%;
  text-align: center;
  padding-top: 2px;
}

.landing-admin-link a {
  color: rgba(255, 255, 255, 0.34);
  font-size: 11px;
  text-decoration: none;
}

.landing-admin-link a:hover {
  color: rgba(255, 255, 255, 0.58);
}

.landing-footer {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto 28px;
  padding: 24px 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.landing-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.landing-footer__brand strong {
  color: #fff;
  font-size: 18px;
}

.landing-footer__brand span,
.landing-footer__meta span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.landing-footer__nav,
.landing-footer__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
}

.landing-footer__nav a {
  color: var(--accent-soft);
  text-decoration: none;
}

.landing-footer__nav a:hover {
  text-decoration: underline;
}

.landing-steps {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
}

.landing-step {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
  text-align: left;
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}

.order-grid .text-input {
  margin-top: 0;
}

.order-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.order-field--full {
  grid-column: 1 / -1;
}

.order-field__label {
  font-size: 13px;
  color: var(--accent-soft);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.order-style-grid {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.style-category {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.style-category__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.style-category__head h4 {
  margin: 0;
  font-size: 16px;
  color: #fff;
}

.style-category__head span {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.style-category__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.style-category__grid--order {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.order-package-grid {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.order-package-card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(23, 23, 23, 0.96), rgba(13, 13, 13, 0.96));
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  transition: transform 120ms ease, border-color 120ms ease, box-shadow 120ms ease;
}

.order-package-card:hover {
  transform: translateY(-1px);
  border-color: rgba(92, 255, 47, 0.2);
}

.order-package-card.is-selected {
  border-color: rgba(92, 255, 47, 0.45);
  box-shadow: 0 0 0 2px rgba(92, 255, 47, 0.18);
}

.order-package-card.is-featured {
  background:
    radial-gradient(circle at top right, rgba(92, 255, 47, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(23, 23, 23, 0.98), rgba(13, 13, 13, 0.96));
}

.order-package-card__top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: start;
}

.order-package-card__name {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}

.order-package-card__badge {
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(92, 255, 47, 0.12);
  color: var(--accent-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-package-card__price {
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.order-package-card__sub {
  color: var(--muted);
  font-size: 13px;
}

.order-package-card__desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.order-package-summary {
  margin-top: 12px;
  min-height: 24px;
  color: var(--muted);
  font-size: 14px;
}

.order-style-actions {
  justify-content: center;
}

.order-package-select {
  display: none !important;
}

.order-style-toggle {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  min-width: 0;
  min-height: 232px;
}

.order-style-toggle input {
  display: none;
}

.order-style-toggle img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
}

.order-style-toggle span {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  overflow-wrap: anywhere;
  min-height: 36px;
}

.order-style-toggle.is-selected {
  border-color: rgba(92, 255, 47, 0.4);
  box-shadow: 0 0 0 2px rgba(92, 255, 47, 0.18);
}

.order-result {
  margin-top: 8px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(92, 255, 47, 0.18);
  background: rgba(92, 255, 47, 0.06);
}

.order-result[data-state="paid"] {
  border-color: rgba(120, 198, 138, 0.28);
  background:
    radial-gradient(circle at top right, rgba(120, 198, 138, 0.14), transparent 30%),
    rgba(120, 198, 138, 0.07);
}

.order-result[data-state="cancelled"] {
  border-color: rgba(217, 177, 111, 0.22);
  background:
    radial-gradient(circle at top right, rgba(217, 177, 111, 0.14), transparent 30%),
    rgba(217, 177, 111, 0.05);
}

.order-result__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.order-result__qr {
  width: 160px;
  height: 160px;
  border-radius: 18px;
  background: #fff;
  padding: 10px;
  object-fit: contain;
}

.order-result__meta {
  margin-top: 12px;
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
}

.order-next-steps {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.order-next-steps__label {
  color: var(--accent-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.order-next-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.order-next-step {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
}

.order-next-step strong {
  display: block;
  color: #fff;
  margin-bottom: 6px;
}

.order-next-step span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.order-result__actions {
  margin-top: 16px;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.payment-checkout {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scroll-margin-top: 24px;
}

.payment-checkout.is-highlighted .payment-checkout__intro,
.payment-checkout.is-highlighted .payment-method {
  border-color: rgba(92, 255, 47, 0.4);
  box-shadow: 0 0 0 3px rgba(92, 255, 47, 0.16), 0 26px 56px rgba(0, 0, 0, 0.32);
}

.payment-checkout__intro {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 16px 18px;
}

.payment-checkout__focus {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: 2px;
  margin-bottom: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(92, 255, 47, 0.12);
  color: var(--accent-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-checkout__intro h3 {
  margin: 2px 0 8px;
  font-size: 20px;
  color: #fff;
}

.payment-checkout__intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}

.payment-method {
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(10, 10, 10, 0.96);
  color: #fff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.payment-method:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.32);
}

.payment-method--stripe {
  border-color: rgba(124, 92, 255, 0.24);
  background:
    radial-gradient(circle at top right, rgba(124, 92, 255, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(10, 10, 10, 0.96);
}

.payment-method--paypal {
  border-color: rgba(0, 156, 222, 0.26);
  background:
    radial-gradient(circle at top right, rgba(0, 156, 222, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(10, 10, 10, 0.96);
}

.payment-method__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.payment-method__brand {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.payment-method__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.payment-method__badges span {
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  color: #f5f5f5;
}

.payment-method__title {
  font-size: 16px;
  font-weight: 800;
}

.payment-method__copy {
  font-size: 13px;
  line-height: 1.45;
  color: #bfbfbf;
}

.landing-step strong,
.admin-stat strong {
  display: block;
  color: #fff;
  margin-bottom: 6px;
}

.landing-step span,
.admin-stat span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.shell {
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 100vh;
}

.hero {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.98), rgba(17, 17, 17, 0.94)),
    rgba(10, 10, 10, 0.92);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.logo-lockup {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.brand-logo {
  display: block;
  width: min(100%, 520px);
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  filter: drop-shadow(0 0 24px rgba(163, 255, 61, 0.22));
}

.brand-submark {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.hero__badge,
.eyebrow,
.panel__label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--accent-soft);
  font-weight: 700;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-size: 48px;
  line-height: 0.95;
  max-width: 12ch;
  color: #fff;
}

h2 {
  font-size: 28px;
  margin-top: 6px;
  color: #fff;
}

.hero__copy {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-chip {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(92, 255, 47, 0.08);
  border: 1px solid rgba(92, 255, 47, 0.2);
  color: #eaffea;
  font-size: 13px;
  font-weight: 700;
}

.hero-rating {
  color: #d8ffd0;
  font-weight: 800;
  font-size: 14px;
}

.content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.quick-upload-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 22px);
  top: auto;
  z-index: 34;
  display: flex;
  justify-content: center;
  width: auto;
  pointer-events: none;
}

@keyframes quickUploadPulse {
  0%, 100% {
    box-shadow:
      0 22px 52px rgba(0, 0, 0, 0.5),
      0 0 0 0 rgba(255, 214, 122, 0.55),
      inset 0 1px 0 rgba(255, 255, 255, 0.28);
  }
  50% {
    box-shadow:
      0 26px 60px rgba(0, 0, 0, 0.55),
      0 0 0 14px rgba(255, 214, 122, 0),
      inset 0 1px 0 rgba(255, 255, 255, 0.28);
  }
}

@keyframes quickUploadShine {
  0% { transform: translateX(-120%) skewX(-18deg); }
  60%, 100% { transform: translateX(220%) skewX(-18deg); }
}

.quick-upload-button {
  position: relative;
  overflow: hidden;
  width: auto;
  min-width: 280px;
  max-width: 360px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 221, 140, 0.45);
  background:
    linear-gradient(135deg, #ff8a2a 0%, #ff5a3c 45%, #c8341f 100%);
  color: #fff;
  font-family: inherit;
  cursor: pointer;
  pointer-events: auto;
  animation: quickUploadPulse 2.4s ease-out infinite;
  transition: transform 160ms ease, filter 160ms ease;
}

.quick-upload-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  animation: quickUploadShine 3.2s ease-in-out infinite;
  pointer-events: none;
}

.quick-upload-button:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.08);
}

.quick-upload-button:active {
  transform: translateY(0) scale(0.99);
}

.quick-upload-button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}

.quick-upload-button__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.quick-upload-button__eyebrow {
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}

.quick-upload-button__title {
  font-size: 22px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.camera-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.camera-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 3, 0.8);
  backdrop-filter: blur(8px);
}

.camera-modal__sheet {
  position: relative;
  width: min(100%, 520px);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(24, 24, 24, 0.98), rgba(10, 10, 10, 0.96));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
  padding: 18px;
}

.camera-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.camera-modal__header h3 {
  margin: 4px 0 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.1;
}

.camera-close-button {
  white-space: nowrap;
}

.camera-modal__preview {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #090909;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.camera-video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #000;
}

.camera-modal__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  margin-top: 14px;
}

/* Countdown-Ring: zirkulärer Rand um die ganze Live-View — "drains" über 5s */
.camera-countdown-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
  overflow: visible;
}
.camera-countdown-ring__track,
.camera-countdown-ring__progress {
  fill: none;
  vector-effect: non-scaling-stroke;
}
.camera-countdown-ring__track {
  stroke: rgba(163, 255, 61, 0.15);
  stroke-width: 4;
}
.camera-countdown-ring__progress {
  stroke: var(--ns-accent, #a3ff3d);
  stroke-width: 6;
  stroke-linecap: butt;
  stroke-dasharray: 100;
  stroke-dashoffset: 0;
  filter: drop-shadow(0 0 6px rgba(163, 255, 61, 0.85)) drop-shadow(0 0 16px rgba(163, 255, 61, 0.45));
  transform-origin: center;
  transition: stroke-dashoffset linear var(--countdown-duration, 5s);
}
.camera-countdown-ring.is-counting .camera-countdown-ring__progress {
  stroke-dashoffset: 100;  /* drain to empty during countdown */
}

/* Countdown-Zahl: klein, oben mittig im Video, kein Block mehr vorm Gesicht */
.camera-countdown {
  position: absolute;
  left: 50%;
  top: calc(env(safe-area-inset-top, 0px) + 20px);
  transform: translateX(-50%);
  min-width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.55);
  border: 2px solid var(--ns-accent, #a3ff3d);
  color: var(--ns-accent, #a3ff3d);
  font-family: var(--ns-font, -apple-system, sans-serif);
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 0 24px rgba(163, 255, 61, 0.45),
    0 10px 28px rgba(0, 0, 0, 0.4),
    inset 0 0 20px rgba(163, 255, 61, 0.1);
  text-shadow:
    0 0 14px rgba(163, 255, 61, 0.85),
    0 0 28px rgba(163, 255, 61, 0.5);
  z-index: 5;
  animation: countdownTick 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Pop-Tick per Zahl (transform wirkt auf translateX wegen Positionierung oben mittig) */
@keyframes countdownTick {
  0% {
    transform: translateX(-50%) scale(0.65);
    opacity: 0.25;
  }
  25% {
    transform: translateX(-50%) scale(1.18);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
}

/* Pulsing ring outside the countdown */
/* Alter Pulse-Ring um die große Zahl wird nicht mehr benötigt (SVG-Ring außen übernimmt) */

.panel--selection-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.app-mode .topbar {
  text-align: center;
  flex-direction: column;
}

body.app-mode .topbar > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.health-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(92, 255, 47, 0.08);
  border: 1px solid rgba(92, 255, 47, 0.18);
  color: #f2ffe9;
  font-weight: 700;
  white-space: nowrap;
}

.panel {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.98), rgba(15, 15, 15, 0.95));
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.panel__copy {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.45;
  font-size: 14px;
}

.panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 12px;
}

.preview-status {
  color: var(--accent-soft);
  font-size: 13px;
  font-weight: 700;
  text-align: right;
}

.flow-stage {
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(92, 255, 47, 0.12), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(92, 255, 47, 0.16);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.flow-stage.ready {
  background: linear-gradient(135deg, rgba(92, 255, 47, 0.12), rgba(255, 255, 255, 0.03));
}

.flow-stage.waiting {
  background: linear-gradient(135deg, rgba(92, 255, 47, 0.18), rgba(122, 240, 84, 0.08));
}

.flow-stage.processing {
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.2), rgba(92, 255, 47, 0.08));
}

.flow-stage.completed {
  background: linear-gradient(135deg, rgba(31, 199, 82, 0.26), rgba(92, 255, 47, 0.1));
}

.flow-stage.failed {
  background: linear-gradient(135deg, rgba(255, 111, 97, 0.22), rgba(255, 90, 90, 0.08));
}

.selected-card {
  min-height: 72px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}

body.app-mode .selected-card {
  text-align: center;
  align-items: center;
}

.selected-card.empty {
  color: var(--muted);
}

.actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.actions--hidden {
  display: none;
}

.actions--result {
  flex-wrap: wrap;
}

.actions--stack {
  flex-direction: column;
}

.file-input {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid rgba(92, 255, 47, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
}

.file-input--hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.upload-dropzone {
  margin-top: 14px;
  min-height: 164px;
  border-radius: 24px;
  border: 1px dashed rgba(92, 255, 47, 0.32);
  background:
    radial-gradient(circle at top right, rgba(92, 255, 47, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(22, 22, 22, 0.96), rgba(12, 12, 12, 0.96));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 20px;
  cursor: pointer;
  transition: transform 120ms ease, border-color 120ms ease, box-shadow 120ms ease;
}

.upload-dropzone:hover {
  transform: translateY(-1px);
  border-color: rgba(92, 255, 47, 0.52);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.upload-dropzone__icon {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(92, 255, 47, 0.14);
  border: 1px solid rgba(92, 255, 47, 0.2);
  color: var(--accent-soft);
  font-size: 30px;
  font-weight: 400;
}

.upload-dropzone__title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.upload-dropzone__copy {
  max-width: 28ch;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.upload-file-name {
  margin-top: 10px;
  min-height: 20px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

.auto-upload-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

.text-input,
select.text-input {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid rgba(92, 255, 47, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
}

.event-access {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: end;
}

.event-access .text-input {
  margin-top: 12px;
}

.event-card,
.admin-events {
  margin-top: 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
}

.event-card.empty,
.admin-events.empty {
  color: var(--muted);
}

.event-card strong,
.admin-event-item strong {
  display: block;
  color: #fff;
  margin-bottom: 4px;
}

.event-card span {
  display: block;
  margin-top: 2px;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.admin-grid .text-input {
  margin-top: 0;
}

.admin-event-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 16px;
}

.admin-login {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.admin-stat {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
}

.admin-event-item {
  align-items: flex-start;
}

.admin-event-item.is-selected {
  background: rgba(92, 255, 47, 0.05);
  border-radius: 18px;
  padding-left: 12px;
  padding-right: 12px;
}

.admin-event-item__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.admin-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.05);
  color: #f3f3f3;
}

.admin-badge.is-paid {
  background: rgba(99, 212, 113, 0.14);
  color: #dfffe3;
}

.admin-badge.is-open {
  background: rgba(255, 207, 92, 0.12);
  color: #ffefbe;
}

.admin-event-meta {
  display: grid;
  gap: 4px;
}

.admin-editor {
  margin: 14px 0 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
}

.admin-editor.empty {
  color: var(--muted);
}

.admin-editor h3 {
  margin: 6px 0 4px;
  color: #fff;
}

.admin-editor__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.admin-editor__head > div:first-child {
  flex: 1 1 auto;
}

.admin-editor__section {
  margin-top: 18px;
}

.admin-look-actions {
  margin-top: 12px;
}

.admin-qr {
  width: 140px;
  height: 140px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: white;
  padding: 8px;
  flex: 0 0 auto;
}

.admin-qr img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.admin-look-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.admin-look-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
  color: #f3f3f3;
}

.custom-style-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.custom-style-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
}

.custom-style-card__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.custom-style-card__head strong {
  color: #fff;
}

.custom-style-card textarea.text-input {
  min-height: 132px;
  resize: vertical;
}

.admin-event-item:first-child {
  border-top: none;
  padding-top: 0;
}

.admin-event-item:last-child {
  padding-bottom: 0;
}

.admin-event-item a {
  color: var(--accent-soft);
  text-decoration: none;
}

body.admin-mode .admin-grid {
  grid-template-columns: 2fr 1fr 1fr 1fr;
}

body.admin-mode .admin-login {
  max-width: 480px;
}

body.admin-mode .admin-login[hidden],
body.admin-mode #admin-secure[hidden] {
  display: none !important;
}

body.admin-mode .admin-events {
  margin-top: 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

body.admin-mode .admin-event-item {
  padding: 18px;
}

.admin-event-group {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.admin-event-group__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.admin-event-group__head h4 {
  margin: 0;
  font-size: 16px;
  color: #fff;
}

.admin-event-group__list {
  padding: 0 18px;
}

.admin-event-group__list.is-empty {
  padding: 18px 20px;
}

.admin-empty {
  color: var(--muted);
  font-size: 14px;
}

body.admin-mode .admin-editor {
  padding: 22px;
  margin: 0;
}

body.app-mode #event-access-panel {
  display: none;
}

.upload-feedback {
  margin-top: 14px;
  border-radius: 18px;
  border: 1px solid rgba(92, 255, 47, 0.16);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

body.app-mode .upload-feedback {
  justify-content: center;
  text-align: center;
  padding: 16px 18px;
}

.upload-feedback[data-state="completed"] {
  border-color: rgba(99, 212, 113, 0.26);
  background: rgba(99, 212, 113, 0.08);
}

.upload-feedback[data-state="failed"] {
  border-color: rgba(255, 111, 97, 0.28);
  background: rgba(255, 111, 97, 0.08);
}

.upload-feedback__spinner {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.14);
  border-top-color: var(--accent);
  flex: 0 0 auto;
  animation: spin 0.9s linear infinite;
}

.upload-feedback[data-state="completed"] .upload-feedback__spinner {
  border: none;
  width: 24px;
  height: 24px;
  background: rgba(99, 212, 113, 0.18);
  display: grid;
  place-items: center;
  animation: none;
}

.upload-feedback[data-state="completed"] .upload-feedback__spinner::before {
  content: "✓";
  color: var(--success);
  font-size: 14px;
  font-weight: 800;
}

.upload-feedback[data-state="failed"] .upload-feedback__spinner {
  border: none;
  width: 24px;
  height: 24px;
  background: rgba(255, 111, 97, 0.18);
  display: grid;
  place-items: center;
  animation: none;
}

.upload-feedback[data-state="failed"] .upload-feedback__spinner::before {
  content: "!";
  color: var(--danger);
  font-size: 14px;
  font-weight: 800;
}

.upload-feedback__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

body.app-mode .upload-feedback__text {
  align-items: center;
}

.upload-feedback__text strong {
  font-size: 15px;
  color: #fff;
}

.upload-feedback__text span {
  font-size: 13px;
  color: var(--muted);
}

.button {
  border: none;
  border-radius: 16px;
  padding: 14px 18px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.button--primary {
  background: linear-gradient(135deg, #37d914, #74ff52);
  color: #061003;
  box-shadow: 0 16px 40px rgba(92, 255, 47, 0.24);
}

.button--ghost,
.button--small {
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.button--small {
  padding: 10px 14px;
}

.style-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}

.style-category {
  width: 100%;
}

.style-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0;
  background: linear-gradient(180deg, rgba(27, 27, 27, 0.98), rgba(14, 14, 14, 0.96));
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
  text-align: left;
  min-height: 304px;
  display: flex;
  flex-direction: column;
}

.style-card:hover,
.style-card.is-selected {
  transform: translateY(-3px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.5);
  border-color: rgba(92, 255, 47, 0.25);
}

.style-card.is-selected {
  outline: 2px solid rgba(92, 255, 47, 0.55);
}

.style-card__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.style-card__icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.74);
  color: #fff;
  font-size: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
}

.style-card__name,
.style-card__model {
  display: block;
  padding: 0 13px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.style-card__name {
  padding-top: 12px;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  min-height: 52px;
}

.style-card__model {
  padding-top: 5px;
  padding-bottom: 14px;
  color: #b4b4b4;
  font-size: 12px;
  min-height: 46px;
  margin-top: auto;
}

.status-list,
.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.status-item,
.job-item {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  padding: 12px 14px;
}

.session-log {
  margin-top: 10px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.35;
  color: #c8c8c8;
  max-height: 120px;
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-word;
}

.session-log.empty {
  color: var(--muted);
}

.session-log-wrap {
  margin-top: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 10px;
}

.session-log-wrap summary {
  cursor: pointer;
  list-style: none;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-soft);
}

.session-log-wrap summary::-webkit-details-marker {
  display: none;
}

.status-item strong,
.job-item strong {
  display: block;
  margin-bottom: 2px;
  color: #fff;
}

.meta {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.job-status {
  font-weight: 700;
}

.job-status.completed {
  color: var(--success);
}

.job-status.failed {
  color: var(--danger);
}

.panel--preview {
  padding: 14px;
}

.result-preview {
  margin-top: 10px;
  min-height: 320px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(9, 9, 9, 0.96));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.result-preview.empty {
  color: var(--muted);
  font-weight: 700;
}

.result-preview img {
  display: block;
  width: 100%;
  max-height: 68vh;
  object-fit: contain;
  background: #050505;
}

.gallery-screen {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px;
}

.gallery-screen__hero {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.gallery-screen__actions {
  margin-top: 0;
}

.gallery-feedback {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
  color: var(--muted);
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.gallery-card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(24, 24, 24, 0.98), rgba(12, 12, 12, 0.96));
  overflow: hidden;
}

.gallery-card__head {
  padding: 16px 18px 0;
}

.gallery-card__head strong {
  display: block;
  color: #fff;
  margin-bottom: 4px;
}

.gallery-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
}

.gallery-image-card {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.gallery-image-card figcaption {
  padding: 12px 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-soft);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.gallery-image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #050505;
}

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

  .hero {
    padding-bottom: 22px;
  }

  .content {
    padding-top: 18px;
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 18px 16px;
    gap: 16px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .brand-logo {
    width: min(100%, 190px);
  }

  body.app-mode .content {
    padding: calc(env(safe-area-inset-top, 0px) + 22px) 14px 16px;
    gap: 16px;
  }

  h1 {
    font-size: 34px;
    max-width: none;
  }

  h2 {
    font-size: 22px;
  }

  .hero__copy {
    font-size: 15px;
  }

  .hero__badge,
  .hero-rating,
  .eyebrow {
    display: none;
  }

  .hero-highlights {
    gap: 8px;
  }

  .hero-chip {
    font-size: 12px;
    padding: 8px 10px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  /* Stage-Header (Event-Ansicht) Mobile: Logo mittig, Pill rechts */
  .stage-header {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr;
    flex-direction: row !important;
    align-items: center !important;
    padding: 14px 16px !important;
    gap: 8px !important;
  }
  .stage-header__mark {
    grid-column: 2;
    justify-self: center;
  }
  .stage-header__logo {
    height: 56px !important;
  }
  .stage-header__hint { display: none; }
  .stage-header__count {
    grid-column: 1;
    font-size: 10px !important;
    justify-self: start;
    opacity: 0.6;
  }
  .stage-header__pill {
    grid-column: 3;
    justify-self: end;
  }

  .topbar h2 {
    margin: 0;
    font-size: 18px;
    line-height: 1.15;
  }

  .quick-upload-bar {
    left: 12px;
    right: 12px;
    width: auto;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
    z-index: 30;
  }

  .quick-upload-button {
    width: 100%;
    min-width: 0;
    max-width: none;
    padding: 13px 18px 14px;
    border-radius: 20px;
    box-shadow:
      0 18px 34px rgba(0, 0, 0, 0.35),
      0 10px 22px rgba(122, 75, 9, 0.28);
  }

  .quick-upload-button__title {
    font-size: 18px;
  }

  .camera-modal {
    align-items: flex-end;
    padding: 0;
  }

  .camera-modal__sheet {
    width: 100%;
    border-radius: 26px 26px 0 0;
    padding: 16px 16px calc(env(safe-area-inset-bottom, 0px) + 16px);
  }

  .camera-modal__header h3 {
    font-size: 22px;
  }

  .camera-modal__actions {
    grid-template-columns: 1fr;
  }

  .panel {
    padding: 14px;
    border-radius: 20px;
  }

  .upload-dropzone {
    min-height: 146px;
    border-radius: 20px;
    padding: 18px;
  }

  .upload-dropzone__title {
    font-size: 19px;
  }

  .upload-dropzone__copy {
    font-size: 13px;
  }

  .style-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .event-access,
  .admin-grid,
  .landing-access {
    grid-template-columns: 1fr;
  }

  .landing-sales,
  .order-overview,
  .order-trust,
  .landing-steps,
  .landing-proof,
  .landing-trust,
  .landing-showcase,
  .compliance-grid,
  .legal-panels,
  .payment-success-next,
  .landing-faq__grid,
  .admin-summary,
  .admin-system-grid,
  .admin-look-grid {
    grid-template-columns: 1fr;
  }

  .payment-success-grid {
    grid-template-columns: 1fr;
  }

  .custom-style-grid {
    grid-template-columns: 1fr;
  }

  body.admin-mode .admin-workspace {
    grid-template-columns: 1fr;
  }

  .admin-editor__head {
    flex-direction: column;
  }

  .admin-qr {
    width: 180px;
    height: 180px;
  }

  .style-card {
    border-radius: 18px;
    min-height: 0;
  }

  .landing-card {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .landing-lead {
    font-size: 16px;
  }

  .order-grid,
  .order-package-grid,
  .style-category__grid--order {
    grid-template-columns: 1fr 1fr;
  }

  .style-category__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }

  .order-next-steps__grid {
    grid-template-columns: 1fr;
  }

  body.admin-mode .hero {
    padding: 18px 14px;
  }

  body.admin-mode #admin-panel {
    padding: 18px;
    border-radius: 24px;
  }

  .style-card__image {
    aspect-ratio: 3 / 4;
  }

  .style-card__icon {
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .style-card__name {
    font-size: 15px;
    padding-top: 10px;
    min-height: 0;
    padding-left: 11px;
    padding-right: 11px;
  }

  .style-card__model {
    font-size: 11px;
    padding-bottom: 12px;
    min-height: 0;
    padding-left: 11px;
    padding-right: 11px;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .result-preview {
    min-height: 240px;
    border-radius: 20px;
  }

  .result-preview img {
    max-height: 52vh;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-screen__hero {
    flex-direction: column;
  }

  .gallery-pair {
    grid-template-columns: 1fr;
  }

  .selected-card {
    min-height: 0;
  }

  .flow-stage {
    font-size: 16px;
    padding: 12px 14px;
  }

  .preview-status {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 16px 14px;
  }

  body.app-mode .content {
    padding: calc(env(safe-area-inset-top, 0px) + 18px) 12px 12px;
  }

  h1 {
    font-size: 28px;
    line-height: 1;
  }

  .style-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .order-grid,
  .order-package-grid,
  .style-category__grid--order {
    grid-template-columns: 1fr;
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }

  .style-category__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .style-card__image {
    aspect-ratio: 3 / 4;
  }

  .order-flow {
    grid-template-columns: 1fr 1fr;
  }

  .order-result__top {
    flex-direction: column;
  }

  .order-result__qr {
    width: 132px;
    height: 132px;
  }

  .brand-logo {
    width: min(100%, 168px);
  }

  .hero-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .hero-chip {
    text-align: center;
  }

  .content {
    padding: 10px;
    gap: 12px;
  }

  .panel {
    padding: 12px;
    border-radius: 18px;
  }

  .upload-dropzone {
    min-height: 132px;
    border-radius: 18px;
    gap: 6px;
  }

  .upload-dropzone__icon {
    width: 46px;
    height: 46px;
    font-size: 26px;
  }

  .upload-dropzone__title {
    font-size: 17px;
  }

  .selected-card,
  .status-item,
  .job-item {
    padding: 12px;
  }

  .style-card {
    min-height: 0;
  }

  .style-card__name {
    font-size: 13px;
    padding-left: 10px;
    padding-right: 10px;
    line-height: 1.15;
  }

  .style-card__model {
    font-size: 10px;
    padding-left: 10px;
    padding-right: 10px;
    line-height: 1.25;
  }

  .result-preview {
    min-height: 210px;
  }
}

/* ===== Fotobox Overlay (Waiting / Result / Error) ===== */
.booth-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: radial-gradient(ellipse at top, #1a1618 0%, #0a0809 60%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
  animation: boothFadeIn 320ms ease-out;
}

@keyframes boothFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.booth-overlay__inner {
  width: 100%;
  max-width: 980px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.booth-overlay [data-show-on] { display: none; width: 100%; }
.booth-overlay[data-stage="waiting"] [data-show-on="waiting"] { display: flex; flex-direction: column; align-items: center; }
.booth-overlay[data-stage="result"] [data-show-on="result"] { display: flex; flex-direction: column; align-items: center; }
.booth-overlay[data-stage="error"] [data-show-on="error"] { display: flex; flex-direction: column; align-items: center; }

.booth-overlay__cancel { margin-top: 28px; opacity: .6; }
.booth-overlay__cancel:hover { opacity: 1; }

/* --- Waiting --- */
.booth-waiting {
  text-align: center;
  max-width: 560px;
}

.booth-waiting__spinner {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 28px;
}
.booth-waiting__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 4px solid rgba(255, 180, 120, 0.15);
  border-top-color: #ff8a2a;
  border-right-color: #ff5a3c;
  animation: boothSpin 1.4s linear infinite;
  box-shadow: 0 0 50px rgba(255, 138, 42, 0.35);
}
@keyframes boothSpin { to { transform: rotate(360deg); } }
.booth-waiting__icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  animation: boothPulse 2s ease-in-out infinite;
}
@keyframes boothPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.booth-waiting__eyebrow {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ffb37a;
  font-weight: 700;
  margin-bottom: 8px;
}
.booth-waiting__title {
  font-size: clamp(26px, 5vw, 40px);
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.booth-waiting__copy {
  color: #b8a99c;
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 24px;
}
.booth-waiting__progress {
  width: 100%;
  max-width: 360px;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  margin: 0 auto 14px;
}
.booth-waiting__progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ff8a2a, #ff5a3c);
  border-radius: 999px;
  transition: width 400ms ease-out;
}
.booth-waiting__status {
  font-size: 14px;
  color: #8e8075;
  margin: 0;
}

/* --- Result --- */
/* Fullscreen result: image fills viewport, controls float on top */
.booth-overlay[data-stage="result"] { padding: 0; }
.booth-overlay[data-stage="result"] .booth-overlay__inner { max-width: none; }

.booth-overlay[data-stage="result"] .booth-result {
  position: fixed;
  inset: 0;
  background: #000;
  display: block;
}
.booth-result__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
}
.booth-result__cta {
  position: absolute;
  top: calc(env(safe-area-inset-top, 0px) + 18px);
  right: calc(env(safe-area-inset-right, 0px) + 18px);
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 800;
  border-radius: 999px;
  min-width: 0;
  z-index: 3;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.booth-result__qr-card {
  position: absolute;
  left: calc(env(safe-area-inset-left, 0px) + 18px);
  bottom: calc(env(safe-area-inset-bottom, 0px) + 72px);
  background: rgba(255, 255, 255, 0.97);
  color: #111;
  border-radius: 12px;
  padding: 8px 8px 6px;
  text-align: center;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 0 22px rgba(163, 255, 61, 0.22);
  width: 120px;
  z-index: 3;
}
.booth-result__qr-label {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6a5a4d;
  font-weight: 800;
  margin-bottom: 6px;
  white-space: nowrap;
}
.booth-result__qr {
  width: 100%;
  height: auto;
  display: block;
}
.booth-result__timer {
  position: absolute;
  left: 50%;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 18px);
  transform: translateX(-50%);
  font-size: 13px;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  padding: 8px 16px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  z-index: 3;
  white-space: nowrap;
}
.booth-result__timer strong { color: #ffb37a; font-weight: 800; }

/* --- Error --- */
.booth-error { text-align: center; max-width: 480px; }
.booth-error__icon { font-size: 56px; margin-bottom: 12px; }
.booth-error__title { font-size: 26px; margin: 0 0 8px; font-weight: 900; }
.booth-error__copy { color: #b8a99c; margin: 0 0 22px; line-height: 1.5; }

@media (max-width: 680px) {
  .booth-result__qr-card {
    left: 10px;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 56px);
    width: 92px;
    padding: 6px 6px 4px;
    border-radius: 10px;
  }
  .booth-result__qr-label { font-size: 7px; letter-spacing: 0.14em; margin-bottom: 4px; }

  /* Fix: prevent the global mobile rule .button{width:100%} from stretching the CTA */
  .booth-result__cta {
    width: auto !important;
    min-width: 0 !important;
    top: calc(env(safe-area-inset-top, 0px) + 12px) !important;
    right: calc(env(safe-area-inset-right, 0px) + 12px) !important;
    padding: 10px 16px !important;
    font-size: 13px !important;
    gap: 6px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5) !important;
  }
  .booth-result__timer {
    bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
    padding: 6px 12px;
    font-size: 11px;
  }
}

/* ============================================================
   NEURAL STUDIO — modern AI aesthetic (app-mode only)
   Pure black · electric white · cyan accent
   Geist + Geist Mono typography
   Animated gradient mesh background
   ============================================================ */

:root {
  --ns-bg: #000000;
  --ns-bg-1: #050507;
  --ns-bg-2: #0a0a0d;
  --ns-surface: rgba(255, 255, 255, 0.03);
  --ns-surface-2: rgba(255, 255, 255, 0.06);
  --ns-line: rgba(255, 255, 255, 0.08);
  --ns-line-2: rgba(255, 255, 255, 0.14);
  --ns-ink: #ffffff;
  --ns-ink-dim: rgba(255, 255, 255, 0.72);
  --ns-ink-muted: rgba(255, 255, 255, 0.48);
  --ns-ink-faint: rgba(255, 255, 255, 0.28);

  --ns-accent: #a3ff3d;
  --ns-accent-soft: #c9ff7d;
  --ns-accent-glow: rgba(163, 255, 61, 0.42);
  --ns-accent-dim: rgba(163, 255, 61, 0.16);

  --ns-font: "Geist", -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
  --ns-mono: "Geist Mono", "SF Mono", Monaco, Menlo, Consolas, monospace;
}

/* ---------- smooth overlay fade ---------- */
.booth-overlay { transition: opacity 360ms cubic-bezier(0.22, 0.61, 0.36, 1); }
.booth-overlay.is-leaving { opacity: 0; pointer-events: none; }

/* ============================================================
   BODY + ANIMATED MESH BACKGROUND
   ============================================================ */

body.app-mode {
  font-family: var(--ns-font);
  font-feature-settings: "ss01", "cv11";
  color: var(--ns-ink);
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(163, 255, 61, 0.08), transparent 70%),
    var(--ns-bg);
  background-attachment: fixed;
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Hide heavy landing hero + legacy panels (but keep hero visible in admin mode — admin-panel lives inside) */
body.app-mode:not(.admin-mode) .hero { display: none !important; }
body.app-mode:not(.admin-mode) .panel--upload-main,
body.app-mode:not(.admin-mode) .panel--preview { display: none !important; }

/* Admin mode: hide the public-facing stage chrome — admin has its own layout */
body.admin-mode .stage-header,
body.admin-mode .ns-hero,
body.admin-mode .ns-cat-nav,
body.admin-mode #style-grid,
body.admin-mode #quick-upload-bar,
body.admin-mode .panel--upload-main,
body.admin-mode .panel--preview,
body.admin-mode #gallery-screen,
body.admin-mode #camera-modal,
body.admin-mode #booth-overlay { display: none !important; }

/* ===== Camera modal fullscreen on mobile/touch ===== */
@media (max-width: 900px), (pointer: coarse) {
  .camera-modal {
    padding: 0 !important;
    align-items: stretch !important;
  }
  .camera-modal__backdrop {
    background: #000;
    backdrop-filter: none;
  }
  .camera-modal__sheet {
    width: 100% !important;
    max-width: none !important;
    border-radius: 0 !important;
    border: none !important;
    background: #000 !important;
    padding: 0 !important;
    box-shadow: none !important;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
  }
  .camera-modal__header {
    padding: calc(env(safe-area-inset-top, 0px) + 14px) 16px 10px;
    margin-bottom: 0;
    color: #fff;
  }
  .camera-modal__header h3 {
    font-size: 18px;
    color: #fff;
  }
  .camera-modal__preview {
    flex: 1;
    border-radius: 0 !important;
    border: none !important;
    min-height: 0;
  }
  .camera-video {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
    position: absolute;
    inset: 0;
    background: #000;
  }
  .camera-modal__preview {
    position: relative;
  }
  .camera-modal__actions {
    padding: 14px 16px calc(env(safe-area-inset-bottom, 0px) + 16px);
    grid-template-columns: 1fr 1.2fr;
    gap: 10px;
    background: rgba(0, 0, 0, 0.6);
  }
  .camera-modal__actions .button {
    padding: 14px 18px;
    font-size: 15px;
    border-radius: 999px;
  }
}

body.app-mode .shell {
  grid-template-columns: minmax(0, 1fr) !important;
  width: 100%;
  max-width: 100%;
  margin: 0;
  position: relative;
  z-index: 1;
  min-width: 0;
}

body.app-mode .content {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

/* ============================================================
   STAGE HEADER — minimal monospace chrome
   ============================================================ */

.stage-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px max(32px, calc((100% - 1400px) / 2 + 32px));
  gap: 16px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--ns-line);
  animation: nsFadeDown 500ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

/* Center the hint pill against the viewport, independent of left/right widths */
.stage-header__hint {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@keyframes nsFadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

.stage-header__mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ns-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ns-ink);
  justify-self: start;
}

.stage-header__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ns-accent);
  box-shadow: 0 0 0 2px rgba(163, 255, 61, 0.18), 0 0 10px var(--ns-accent-glow);
  animation: nsDotPulse 2s ease-in-out infinite;
}

@keyframes nsDotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 2px rgba(163, 255, 61, 0.18), 0 0 10px var(--ns-accent-glow); }
  50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(163, 255, 61, 0.08), 0 0 16px var(--ns-accent-glow); }
}

.stage-header__mark {
  text-decoration: none;
  transition: opacity 200ms ease, transform 200ms ease;
}
.stage-header__mark:hover { opacity: 0.85; transform: translateY(-1px); }

.stage-header__logo {
  height: 44px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 12px rgba(163, 255, 61, 0.28));
}

.stage-header__mark .stage-header__dot { display: none; }

/* Remove the old big Fraunces title and ornament divider — replaced by minimal section below */
.stage-header__title { display: none; }
.stage-header__divider { display: none; }

/* Central: live indicator */
.stage-header__hint {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  font-family: var(--ns-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--ns-ink-dim);
  border: 1px solid var(--ns-line);
  border-radius: 999px;
  background: var(--ns-surface);
  font-weight: 500;
}
.stage-header__hint span,
.stage-header__hint-sep { display: none; }
.stage-header__hint::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a3ff5a;
  box-shadow: 0 0 0 2px rgba(163, 255, 90, 0.14), 0 0 8px rgba(163, 255, 90, 0.5);
  animation: nsDotPulse 2s ease-in-out infinite;
}
.stage-header__hint::after {
  content: "AI READY · MODEL ONLINE";
}

/* Right: live counter (populated by JS) */
.stage-header__count {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ns-mono);
  font-size: 11px;
  color: var(--ns-ink-muted);
  letter-spacing: 0.02em;
  font-weight: 500;
  text-transform: none;
}

.stage-header__pill {
  display: none;
}

/* ============================================================
   HERO SECTION — big minimal title + subtle supporting text
   ============================================================ */

.ns-hero {
  position: relative;
  padding: 72px 28px 28px;
  text-align: center;
  max-width: 1400px;
  margin-inline: auto;
  animation: nsFadeUp 700ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 100ms;
}

@keyframes nsFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.ns-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ns-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ns-accent);
  margin-bottom: 20px;
  padding: 6px 12px;
  border: 1px solid var(--ns-accent-dim);
  border-radius: 999px;
  background: rgba(163, 255, 61, 0.05);
  font-weight: 500;
}

.ns-hero__eyebrow::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ns-accent);
  box-shadow: 0 0 8px var(--ns-accent);
}

.ns-hero__title {
  font-family: var(--ns-font);
  font-size: clamp(54px, 10vw, 140px);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: var(--ns-ink);
  margin: 0 0 16px;
  max-width: none;
}

.ns-hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--ns-accent) 0%, #a3ff5a 50%, var(--ns-accent) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: nsGradientShift 6s ease-in-out infinite;
}

@keyframes nsGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.ns-hero__sub {
  font-family: var(--ns-font);
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--ns-ink-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.5;
  font-weight: 400;
}

.ns-hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  font-family: var(--ns-mono);
  font-size: 11px;
  color: var(--ns-ink-faint);
  letter-spacing: 0.04em;
}
.ns-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ns-hero__meta span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ns-ink-faint);
}

/* ============================================================
   CATEGORY CHIPS NAVIGATION
   ============================================================ */

.ns-cat-nav {
  position: sticky;
  top: 66px;
  z-index: 15;
  padding: 16px max(32px, calc((100% - 1400px) / 2 + 32px));
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--ns-line);
  margin-bottom: 32px;
}

.ns-cat-nav__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 2px;
}

.ns-cat-nav__inner::-webkit-scrollbar { display: none; }

.ns-cat-chip {
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--ns-line);
  background: var(--ns-surface);
  color: var(--ns-ink-dim);
  font-family: var(--ns-font);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.22, 0.61, 0.36, 1);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ns-cat-chip:hover {
  border-color: var(--ns-line-2);
  color: var(--ns-ink);
  background: var(--ns-surface-2);
  transform: translateY(-1px);
}

.ns-cat-chip.is-active {
  border-color: var(--ns-accent);
  color: var(--ns-accent);
  background: rgba(163, 255, 61, 0.08);
  box-shadow: 0 0 0 1px var(--ns-accent-dim), 0 0 20px rgba(163, 255, 61, 0.15);
}

.ns-cat-chip__count {
  font-family: var(--ns-mono);
  font-size: 10px;
  opacity: 0.7;
  letter-spacing: 0;
}

/* ============================================================
   STYLE GRID + CARDS
   ============================================================ */

body.app-mode #style-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px 120px;
  gap: 56px;
  animation: nsFadeUp 700ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 200ms;
}

body.app-mode .style-category {
  gap: 20px;
  scroll-margin-top: 140px;
}

body.app-mode .style-category__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 0 2px 4px;
}

body.app-mode .style-category__head h4 {
  font-family: var(--ns-font);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ns-ink);
  line-height: 1;
}

body.app-mode .style-category__head span {
  font-family: var(--ns-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ns-ink-faint);
  font-weight: 500;
  text-transform: none;
}

body.app-mode .style-category__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
@media (min-width: 1600px) {
  body.app-mode .style-category__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

/* --- Card: minimal frame with animated conic border on hover/selected --- */
body.app-mode .style-card {
  position: relative;
  min-height: 0;
  background: #0a0a0d;
  border: none !important;
  border-top: none !important;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  transition:
    transform 320ms cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 320ms cubic-bezier(0.22, 0.61, 0.36, 1);
  padding: 0;
  cursor: pointer;
  isolation: isolate;
}

/* Simple solid-accent border on hover/selected (conic effect removed) */
body.app-mode .style-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1.5px solid var(--ns-accent);
  opacity: 0;
  transition: opacity 200ms ease;
  pointer-events: none;
  z-index: 4;
}

body.app-mode .style-card:hover::before,
body.app-mode .style-card.is-selected::before {
  opacity: 1;
}

/* Static subtle border always visible so card has structure */
body.app-mode .style-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid var(--ns-line);
  pointer-events: none;
  z-index: 3;
  transition: border-color 320ms ease;
}

body.app-mode .style-card:hover::after {
  border-color: transparent;
}
body.app-mode .style-card.is-selected::after {
  border-color: transparent;
}

body.app-mode .style-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(163, 255, 61, 0.2);
}

body.app-mode .style-card.is-selected {
  transform: translateY(-4px);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(163, 255, 61, 0.3);
  animation: nsBreath 3s ease-in-out infinite;
}

@keyframes nsBreath {
  0%, 100% {
    transform: translateY(-4px) scale(1);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.6), 0 0 40px rgba(163, 255, 61, 0.3);
  }
  50% {
    transform: translateY(-5px) scale(1.005);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.65), 0 0 56px rgba(163, 255, 61, 0.45);
  }
}

/* Image: Ken-Burns on hover */
body.app-mode .style-card__image {
  aspect-ratio: 3 / 4;
  filter: saturate(1.05);
  transition: transform 900ms cubic-bezier(0.22, 0.61, 0.36, 1), filter 400ms ease;
  background: #000;
}

body.app-mode .style-card:hover .style-card__image {
  transform: scale(1.06) translateY(-1%);
  filter: saturate(1.15);
}

body.app-mode .style-card.is-selected .style-card__image {
  transform: scale(1.04);
  filter: saturate(1.1);
}

/* Name over image — gradient scrim, zero backdrop-filter (mobile-friendly) */
body.app-mode .style-card__name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 44px 14px 14px;
  font-family: var(--ns-font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: #ffffff;
  line-height: 1.2;
  text-align: left;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 55%, rgba(0, 0, 0, 0.92) 100%);
  z-index: 2;
  min-height: 0;
  border: none;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

body.app-mode .style-card__model { display: none; }

/* Small index chip top-left (replaces star icon's position intent) */
body.app-mode .style-card__icon {
  top: 12px;
  left: 12px;
  right: auto;
  width: auto;
  height: 22px;
  padding: 0 8px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--ns-mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--ns-ink-dim);
  letter-spacing: 0.02em;
  z-index: 2;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
}

/* Selected checkmark indicator top-right */
body.app-mode .style-card.is-selected::after {
  /* ::after is already used for border; use a different approach: inner span */
}

body.app-mode .style-card.is-selected .style-card__icon {
  background: var(--ns-accent);
  color: #000;
  border-color: var(--ns-accent);
  box-shadow: 0 0 16px var(--ns-accent-glow);
}

/* Loading shimmer skeleton for images while they load */
body.app-mode .style-card__image[src=""],
body.app-mode .style-card__image:not([src]) {
  background:
    linear-gradient(90deg, transparent, rgba(163, 255, 61, 0.04), transparent),
    #0a0a0d;
  background-size: 200% 100%;
  animation: nsShimmer 1.4s ease-in-out infinite;
}

@keyframes nsShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ============================================================
   Floating "Kamera starten" button — accent-colored, modern
   ============================================================ */

body.app-mode .quick-upload-button {
  background: var(--ns-accent) !important;
  color: #000 !important;
  border: 1px solid var(--ns-accent) !important;
  min-width: 260px;
  padding: 14px 24px !important;
  border-radius: 999px !important;
  box-shadow:
    0 0 0 1px rgba(163, 255, 61, 0.3),
    0 20px 50px rgba(163, 255, 61, 0.35),
    0 10px 20px rgba(0, 0, 0, 0.4) !important;
  animation: nsButtonPulse 2.4s ease-out infinite !important;
}

@keyframes nsButtonPulse {
  0%, 100% {
    box-shadow:
      0 0 0 0 rgba(163, 255, 61, 0.5),
      0 20px 50px rgba(163, 255, 61, 0.35),
      0 10px 20px rgba(0, 0, 0, 0.4);
  }
  50% {
    box-shadow:
      0 0 0 14px rgba(163, 255, 61, 0),
      0 20px 50px rgba(163, 255, 61, 0.35),
      0 10px 20px rgba(0, 0, 0, 0.4);
  }
}

body.app-mode .quick-upload-button::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent) !important;
}

body.app-mode .quick-upload-button__icon {
  background: rgba(0, 0, 0, 0.15) !important;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2) !important;
  color: #000 !important;
}

body.app-mode .quick-upload-button__eyebrow {
  color: rgba(0, 0, 0, 0.7) !important;
  font-family: var(--ns-mono) !important;
}

body.app-mode .quick-upload-button__title {
  color: #000 !important;
  text-shadow: none !important;
  font-family: var(--ns-font) !important;
  font-weight: 700 !important;
}

body.app-mode .quick-upload-button:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.05);
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 900px) {
  .stage-header {
    padding: 12px 16px;
    grid-template-columns: auto 1fr;
    gap: 10px;
  }
  .stage-header__mark { font-size: 10px; }
  .stage-header__hint { display: none; }
  .stage-header__count { font-size: 10px; justify-self: end; }

  .ns-cat-nav {
    top: 49px;
    padding: 10px 16px;
  }

  .ns-hero {
    padding: 44px 20px 20px;
  }
  .ns-hero__title {
    font-size: clamp(42px, 13vw, 80px);
    letter-spacing: -0.035em;
  }
  .ns-hero__meta {
    gap: 12px;
    font-size: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  body.app-mode #style-grid {
    padding: 0 16px 120px;
    gap: 36px;
  }
  body.app-mode .style-category__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }
  body.app-mode .style-category {
    scroll-margin-top: 110px;
  }
  body.app-mode .style-category__head h4 {
    font-size: 16px;
  }
}

@media (max-width: 520px) {
  body.app-mode #style-grid {
    padding: 0 12px 120px;
  }
  body.app-mode .style-category__grid {
    gap: 10px;
  }
  body.app-mode .style-card__name {
    font-size: 12px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 6px 10px;
  }
  body.app-mode .style-card__icon {
    top: 8px;
    left: 8px;
    font-size: 9px;
    height: 20px;
    padding: 0 6px;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  body.app-mode::before,
  .ns-hero__title em,
  .stage-header__dot,
  .ns-hero__eyebrow::before,
  body.app-mode .style-card.is-selected,
  body.app-mode .style-card::before,
  body.app-mode .quick-upload-button {
    animation: none !important;
  }
}

/* ============================================================
   MOBILE PERFORMANCE OPTIMIZATIONS
   Strip expensive effects on any touch device (phones in landscape
   often have viewport >900px, so pointer:coarse catches them too).
   ============================================================ */
@media (max-width: 900px), (pointer: coarse) {
  /* Sticky header + cat-nav: solid bg instead of backdrop-blur (expensive on mobile) */
  .stage-header,
  .ns-cat-nav {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(0, 0, 0, 0.94) !important;
  }
  
  /* No hover zoom on mobile (no hover anyway) */
  body.app-mode .style-card__image {
    transition: none !important;
    filter: none !important;
  }
  body.app-mode .style-card:hover .style-card__image,
  body.app-mode .style-card.is-selected .style-card__image {
    transform: none !important;
    filter: none !important;
  }

  /* Index badge: drop backdrop-filter (100× backdrop-blur = Android death) */
  body.app-mode .style-card__icon {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(0, 0, 0, 0.7) !important;
  }
  body.app-mode .style-card.is-selected .style-card__icon {
    background: var(--ns-accent) !important;
    box-shadow: none !important;
  }

  /* Strip ALL transitions on cards & pseudos (frees compositor) */
  body.app-mode .style-card,
  body.app-mode .style-card::before,
  body.app-mode .style-card::after {
    transition: none !important;
  }
  
  /* Remove breathing animation on selected card */
  body.app-mode .style-card.is-selected {
    animation: none !important;
  }
  
  /* Simpler shadow on cards */
  body.app-mode .style-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
    transition: transform 180ms ease !important;
  }
  body.app-mode .style-card:hover,
  body.app-mode .style-card.is-selected {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5), 0 0 0 1.5px var(--ns-accent) !important;
    transform: none !important;
  }
  
  /* Quick-upload button: remove heavy pulsing ring */
  body.app-mode .quick-upload-button {
    animation: none !important;
    box-shadow: 0 12px 28px rgba(163, 255, 61, 0.3), 0 6px 14px rgba(0,0,0,0.4) !important;
  }
  body.app-mode .quick-upload-button::before {
    animation: none !important;
    display: none !important;
  }
  
  /* Drop drop-shadow on logo (expensive) */
  .stage-header__logo {
    filter: none !important;
  }
  
  /* Hero title: no animated gradient on mobile (saves paints) */
  .ns-hero__title em {
    animation: none !important;
    background: var(--ns-accent) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
  }
  
  /* Dots: no pulse */
  .stage-header__dot,
  .ns-hero__eyebrow::before {
    animation: none !important;
  }
  
  /* Hero padding tighter */
  .ns-hero {
    padding: 32px 18px 18px !important;
  }
  .ns-hero__eyebrow {
    font-size: 10px;
    padding: 4px 10px;
  }
  .ns-hero__sub {
    font-size: 14px;
  }
  .ns-hero__meta {
    margin-top: 18px;
  }
  
  /* Status pill (AI READY): hide on mobile — too much chrome */
  .stage-header__hint {
    display: none !important;
  }
  
  /* Body background: keep simple */
  body.app-mode {
    background: var(--ns-bg) !important;
  }
}

/* ============================================================
   NEURAL STUDIO — ADMIN DASHBOARD
   Consistent with public UI: black bg, lime accent, Geist fonts.
   ============================================================ */

/* Kill public-facing chrome when admin mode is active */
body.admin-mode .hero .logo-lockup,
body.admin-mode .hero .hero__badge,
body.admin-mode .hero > h1,
body.admin-mode .hero > .hero__copy,
body.admin-mode .hero-highlights,
body.admin-mode .hero-rating,
body.admin-mode .brand-submark { display: none !important; }

/* Shell: full width, reset sidebar layout */
body.admin-mode .shell {
  grid-template-columns: minmax(0, 1fr) !important;
  width: 100%;
  max-width: none !important;
}

body.admin-mode .hero {
  display: block !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  min-height: 100vh;
}

body.admin-mode {
  background: var(--ns-bg);
  color: var(--ns-ink);
  font-family: var(--ns-font);
}

/* Admin top bar — similar to stage-header but for admin */
body.admin-mode #admin-panel[hidden] { display: block !important; }
body.admin-mode #admin-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border: none;
  background: transparent;
  position: relative;
  min-height: 100vh;
}

body.admin-mode #admin-panel > .panel__label,
body.admin-mode #admin-panel > h2,
body.admin-mode #admin-panel > p.panel__copy { display: none !important; }

/* Locked state: login card centered on a full-viewport canvas */
body.admin-locked #admin-panel {
  display: grid !important;
  place-items: center !important;
  padding: 20px !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  min-height: 100vh;
  min-height: 100dvh;
  box-sizing: border-box;
}

body.admin-locked #admin-panel > * { display: none !important; }
body.admin-locked #admin-panel > #admin-login {
  display: flex !important;
  flex-direction: column;
  gap: 20px;
  width: min(420px, 100%);
  padding: 40px 32px;
  border-radius: 20px;
  background: linear-gradient(180deg, #0c0c10 0%, #080809 100%);
  border: 1px solid var(--ns-line);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(163, 255, 61, 0.06);
  position: relative;
}

body.admin-locked #admin-panel > #admin-login::before {
  content: "KI·FOTOBOX / ADMIN";
  position: absolute;
  top: 18px;
  left: 32px;
  font-family: var(--ns-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ns-accent);
  font-weight: 600;
}

body.admin-locked #admin-panel > #admin-login::after {
  content: "Zugang";
  position: absolute;
  top: 42px;
  left: 32px;
  font-family: var(--ns-font);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ns-ink);
}

body.admin-locked #admin-panel > #admin-login > * { margin-top: 0; }
body.admin-locked #admin-panel > #admin-login #admin-password {
  margin-top: 60px;
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--ns-line);
  border-radius: 12px;
  color: var(--ns-ink);
  font-family: var(--ns-mono);
  font-size: 15px;
  letter-spacing: 0.04em;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease;
}
body.admin-locked #admin-panel > #admin-login #admin-password:focus {
  border-color: var(--ns-accent);
  background: rgba(163, 255, 61, 0.04);
  box-shadow: 0 0 0 3px rgba(163, 255, 61, 0.12);
}

body.admin-locked #admin-panel > #admin-login .actions {
  margin-top: 0;
}

body.admin-locked #admin-panel > #admin-login .button--primary {
  width: 100%;
  padding: 14px 20px;
  background: var(--ns-accent);
  color: #000;
  border: none;
  border-radius: 12px;
  font-family: var(--ns-font);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: filter 160ms ease, transform 160ms ease;
  box-shadow: 0 10px 28px rgba(163, 255, 61, 0.25);
}
body.admin-locked #admin-panel > #admin-login .button--primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

body.admin-locked #admin-login-feedback {
  font-family: var(--ns-mono);
  font-size: 11px;
  color: var(--ns-ink-muted);
  text-align: center;
  letter-spacing: 0.02em;
}

/* Logged-in admin: full dashboard layout */
body.admin-mode:not(.admin-locked) #admin-panel {
  padding: 0;
}

body.admin-mode:not(.admin-locked) #admin-login {
  display: none !important;
}

body.admin-mode #admin-secure[hidden] { display: none !important; }
body.admin-mode #admin-secure {
  display: flex !important;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  max-width: 1800px;
  width: 100%;
  margin: 0 auto;
}

/* Admin sticky header */
body.admin-mode .admin-top-actions {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  margin: 0 -24px 4px;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid var(--ns-line);
}
body.admin-mode .admin-top-actions::before {
  content: "KI·FOTOBOX / ADMIN";
  font-family: var(--ns-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--ns-accent);
}

body.admin-mode .admin-top-actions .button {
  padding: 8px 14px;
  border-radius: 8px;
  font-family: var(--ns-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--ns-line);
  color: var(--ns-ink-dim);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}
body.admin-mode .admin-top-actions .button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--ns-line-2);
  color: var(--ns-ink);
}

/* Wrap content with consistent padding */
body.admin-mode #admin-secure > *:not(.admin-top-actions) {
  padding-left: 24px;
  padding-right: 24px;
}

/* System status + summary cards */
body.admin-mode .admin-system-status,
body.admin-mode .admin-summary {
  background: #0c0c10;
  border: 1px solid var(--ns-line);
  border-radius: 14px;
  padding: 16px 18px;
  color: var(--ns-ink-dim);
  font-family: var(--ns-mono);
  font-size: 12px;
  line-height: 1.5;
}

/* Create event card */
body.admin-mode .admin-create {
  background: #0c0c10 !important;
  border: 1px solid var(--ns-line) !important;
  border-radius: 18px;
  padding: 24px !important;
  box-shadow: none !important;
}
body.admin-mode .admin-create .panel__label {
  font-family: var(--ns-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ns-accent);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

body.admin-mode .admin-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}
@media (max-width: 900px) {
  body.admin-mode .admin-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  body.admin-mode .admin-grid { grid-template-columns: 1fr; }
}

body.admin-mode .admin-grid .text-input,
body.admin-mode .admin-grid select {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--ns-line);
  border-radius: 10px;
  color: var(--ns-ink);
  font-family: var(--ns-font);
  font-size: 14px;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease;
}
body.admin-mode .admin-grid .text-input:focus,
body.admin-mode .admin-grid select:focus {
  border-color: var(--ns-accent);
  background: rgba(163, 255, 61, 0.04);
}

body.admin-mode .admin-create .actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
body.admin-mode .admin-create .button--primary {
  padding: 12px 20px;
  background: var(--ns-accent);
  color: #000;
  border: none;
  border-radius: 10px;
  font-family: var(--ns-font);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: filter 160ms ease;
}
body.admin-mode .admin-create .button--primary:hover {
  filter: brightness(1.05);
}
body.admin-mode .admin-create .button--ghost {
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ns-ink-dim);
  border: 1px solid var(--ns-line);
  border-radius: 10px;
  font-family: var(--ns-font);
  font-size: 14px;
  cursor: pointer;
  transition: background 160ms ease;
}
body.admin-mode .admin-create .button--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ns-ink);
}

/* Workspace: 2-column layout */
body.admin-mode .admin-workspace {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

@media (max-width: 900px) {
  body.admin-mode .admin-workspace {
    grid-template-columns: 1fr;
  }
}

body.admin-mode .admin-sidebar {
  background: #0c0c10;
  border: 1px solid var(--ns-line);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}

body.admin-mode .admin-sidebar .panel__label {
  font-family: var(--ns-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ns-accent);
  font-weight: 600;
  text-transform: uppercase;
}

body.admin-mode .admin-events {
  padding: 0;
  background: transparent;
  border: none;
  color: var(--ns-ink);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
body.admin-mode .admin-events.empty {
  color: var(--ns-ink-muted);
  font-family: var(--ns-mono);
  font-size: 12px;
  padding: 20px;
  text-align: center;
}

body.admin-mode .admin-main {
  background: #0c0c10;
  border: 1px solid var(--ns-line);
  border-radius: 18px;
  padding: 24px;
  min-height: 400px;
}

body.admin-mode .admin-editor.empty {
  color: var(--ns-ink-muted);
  font-family: var(--ns-font);
  font-size: 15px;
  padding: 60px 20px;
  text-align: center;
  border: 1px dashed var(--ns-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.01);
}

body.admin-mode .admin-editor h3 {
  font-family: var(--ns-font);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ns-ink);
  margin: 0;
}

body.admin-mode .admin-editor .panel__label {
  font-family: var(--ns-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ns-accent);
  font-weight: 600;
  text-transform: uppercase;
}

/* Generic inputs/selects inside admin */
body.admin-mode .admin-editor input.text-input,
body.admin-mode .admin-editor select.text-input,
body.admin-mode .admin-editor textarea.text-input {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--ns-line);
  border-radius: 10px;
  color: var(--ns-ink);
  font-family: var(--ns-font);
  font-size: 14px;
  outline: none;
}
body.admin-mode .admin-editor input.text-input:focus,
body.admin-mode .admin-editor select.text-input:focus {
  border-color: var(--ns-accent);
}

body.admin-mode .admin-editor .button--primary {
  background: var(--ns-accent);
  color: #000;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}
body.admin-mode .admin-editor .button--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--ns-ink-dim);
  border: 1px solid var(--ns-line);
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
}
body.admin-mode .admin-editor .button--danger {
  background: rgba(255, 100, 90, 0.1);
  color: #ff6f61;
  border: 1px solid rgba(255, 100, 90, 0.3);
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
}

/* Mobile admin tweaks */
@media (max-width: 900px) {
  body.admin-mode .admin-top-actions {
    padding: 10px 16px;
    margin: 0 -16px 4px;
  }
  body.admin-mode #admin-secure > *:not(.admin-top-actions) {
    padding-left: 16px;
    padding-right: 16px;
  }
  body.admin-mode .admin-sidebar {
    position: static;
    max-height: none;
  }
}

/* ============================================================
   ADMIN V2 — tabbed layout (overrides parts of previous admin CSS)
   ============================================================ */

/* Admin topbar with tabs */
body.admin-mode .admin-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 12px 24px;
  margin: 0 -24px 24px;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid var(--ns-line);
}

body.admin-mode .admin-topbar__brand {
  font-family: var(--ns-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--ns-accent);
  white-space: nowrap;
}

body.admin-mode .admin-tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  justify-self: center;
}
body.admin-mode .admin-tabs::-webkit-scrollbar { display: none; }

body.admin-mode .admin-tab {
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ns-ink-muted);
  font-family: var(--ns-font);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
  white-space: nowrap;
}
body.admin-mode .admin-tab:hover {
  color: var(--ns-ink);
  background: rgba(255, 255, 255, 0.05);
}
body.admin-mode .admin-tab.is-active {
  color: var(--ns-accent);
  background: rgba(163, 255, 61, 0.1);
  border-color: rgba(163, 255, 61, 0.3);
}

body.admin-mode .admin-topbar__actions {
  display: flex;
  gap: 6px;
}
body.admin-mode .admin-topbar__actions .button {
  padding: 8px 12px;
  font-size: 12px;
  font-family: var(--ns-mono);
}

/* Pane visibility */
body.admin-mode .admin-pane { display: none !important; }
body.admin-mode .admin-pane.is-active {
  display: flex !important;
  flex-direction: column;
  gap: 16px;
}

/* Filter bar */
body.admin-mode .admin-filterbar {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  padding: 14px;
  background: #0c0c10;
  border: 1px solid var(--ns-line);
  border-radius: 14px;
}
body.admin-mode .admin-filterbar .text-input {
  flex: 1;
  min-width: 180px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--ns-line);
  border-radius: 10px;
  color: var(--ns-ink);
  font-family: var(--ns-font);
  font-size: 13px;
  outline: none;
}
body.admin-mode .admin-filterbar .text-input:focus {
  border-color: var(--ns-accent);
}

/* ===== Dashboard ===== */
body.admin-mode .admin-summary {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  background: transparent;
  border: none;
}
@media (max-width: 900px) {
  body.admin-mode .admin-summary { grid-template-columns: 1fr 1fr; }
}

body.admin-mode .admin-stat {
  background: #0c0c10;
  border: 1px solid var(--ns-line);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
body.admin-mode .admin-stat strong {
  font-family: var(--ns-font);
  font-size: 32px;
  font-weight: 700;
  color: var(--ns-ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
body.admin-mode .admin-stat span {
  font-family: var(--ns-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ns-ink-muted);
  font-weight: 500;
}

/* Recent sessions list (dashboard) */
body.admin-mode .admin-recent-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
body.admin-mode .admin-recent-item {
  display: grid;
  grid-template-columns: 48px 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
  background: #0c0c10;
  border: 1px solid var(--ns-line);
  border-radius: 10px;
  font-family: var(--ns-font);
  font-size: 13px;
}
body.admin-mode .admin-recent-item img {
  width: 48px; height: 48px;
  border-radius: 6px;
  object-fit: cover;
  background: #000;
}
body.admin-mode .admin-recent-item__meta {
  font-family: var(--ns-mono);
  font-size: 11px;
  color: var(--ns-ink-muted);
}

/* Status badges */
body.admin-mode .admin-status {
  padding: 3px 8px;
  border-radius: 999px;
  font-family: var(--ns-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
body.admin-mode .admin-status--completed { background: rgba(163, 255, 61, 0.12); color: var(--ns-accent); border: 1px solid rgba(163, 255, 61, 0.3); }
body.admin-mode .admin-status--processing { background: rgba(120, 180, 255, 0.1); color: #7ab5ff; border: 1px solid rgba(120, 180, 255, 0.3); }
body.admin-mode .admin-status--failed { background: rgba(255, 111, 97, 0.12); color: #ff8877; border: 1px solid rgba(255, 111, 97, 0.3); }
body.admin-mode .admin-status--started { background: rgba(200, 180, 255, 0.08); color: #b9a6ff; border: 1px solid rgba(200, 180, 255, 0.25); }

body.admin-mode .admin-section-title {
  font-family: var(--ns-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ns-accent);
  font-weight: 600;
  margin: 8px 0 4px;
}

/* ===== Sessions list ===== */
body.admin-mode .admin-sessions-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body.admin-mode .admin-session {
  display: grid;
  grid-template-columns: 80px 80px 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: #0c0c10;
  border: 1px solid var(--ns-line);
  border-radius: 12px;
}
@media (max-width: 720px) {
  body.admin-mode .admin-session {
    grid-template-columns: 56px 56px 1fr;
    gap: 8px;
  }
  body.admin-mode .admin-session__status,
  body.admin-mode .admin-session__actions {
    grid-column: 1 / -1;
    justify-self: start;
  }
}
body.admin-mode .admin-session img {
  width: 80px;
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
  background: #000;
  border: 1px solid var(--ns-line);
}
body.admin-mode .admin-session img.empty {
  background: rgba(255,255,255,0.02);
  border-style: dashed;
}
body.admin-mode .admin-session__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
body.admin-mode .admin-session__info strong {
  color: var(--ns-ink);
  font-size: 14px;
}
body.admin-mode .admin-session__info .meta {
  font-family: var(--ns-mono);
  font-size: 11px;
  color: var(--ns-ink-muted);
}
body.admin-mode .admin-session__actions {
  display: flex;
  gap: 6px;
}
body.admin-mode .admin-session__actions .button {
  padding: 7px 12px;
  font-size: 11px;
  font-family: var(--ns-mono);
  border-radius: 8px;
}

/* ===== Looks grid ===== */
body.admin-mode .admin-looks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}
body.admin-mode .admin-look {
  background: #0c0c10;
  border: 1px solid var(--ns-line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
body.admin-mode .admin-look__image {
  aspect-ratio: 3/4;
  width: 100%;
  object-fit: cover;
  background: #000;
}
body.admin-mode .admin-look__body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
body.admin-mode .admin-look__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ns-ink);
}
body.admin-mode .admin-look__meta {
  font-family: var(--ns-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--ns-ink-muted);
  line-height: 1.4;
}
body.admin-mode .admin-look__tag {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(163, 255, 61, 0.1);
  color: var(--ns-accent);
  font-size: 9px;
  letter-spacing: 0.1em;
  margin-right: 4px;
  margin-bottom: 2px;
}

body.admin-mode .admin-looks-count {
  font-family: var(--ns-mono);
  font-size: 11px;
  color: var(--ns-ink-muted);
  letter-spacing: 0.04em;
}

/* ===== Orders list ===== */
body.admin-mode .admin-orders-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
body.admin-mode .admin-order {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: #0c0c10;
  border: 1px solid var(--ns-line);
  border-radius: 12px;
  font-family: var(--ns-font);
  font-size: 13px;
}
@media (max-width: 720px) {
  body.admin-mode .admin-order {
    grid-template-columns: 1fr auto;
    gap: 6px;
  }
  body.admin-mode .admin-order__price,
  body.admin-mode .admin-order__status {
    justify-self: start;
  }
}
body.admin-mode .admin-order__customer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
body.admin-mode .admin-order__customer strong {
  color: var(--ns-ink);
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
body.admin-mode .admin-order__customer .meta {
  font-family: var(--ns-mono);
  font-size: 11px;
  color: var(--ns-ink-muted);
}
body.admin-mode .admin-order__price {
  font-family: var(--ns-mono);
  font-size: 13px;
  color: var(--ns-ink);
  font-weight: 600;
}
body.admin-mode .admin-order__meta {
  font-family: var(--ns-mono);
  font-size: 10px;
  color: var(--ns-ink-muted);
  text-align: right;
}

/* ===== Settings ===== */
body.admin-mode .admin-settings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 720px) {
  body.admin-mode .admin-settings-grid { grid-template-columns: 1fr; }
}
body.admin-mode .admin-setting {
  background: #0c0c10;
  border: 1px solid var(--ns-line);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
body.admin-mode .admin-setting__label {
  font-family: var(--ns-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ns-accent);
  font-weight: 600;
}
body.admin-mode .admin-setting__value {
  font-family: var(--ns-font);
  font-size: 15px;
  color: var(--ns-ink);
  font-weight: 600;
  word-break: break-all;
}
body.admin-mode .admin-setting__hint {
  font-family: var(--ns-mono);
  font-size: 11px;
  color: var(--ns-ink-muted);
}

/* Events pane tweaks — keep existing admin-workspace functional */
body.admin-mode .admin-workspace {
  grid-template-columns: 340px minmax(0, 1fr);
}
@media (max-width: 900px) {
  body.admin-mode .admin-workspace {
    grid-template-columns: 1fr;
  }
  body.admin-mode .admin-sidebar {
    position: static;
    max-height: 60vh;
  }
  body.admin-mode .admin-topbar {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px 12px;
    margin: 0 -12px 12px;
    max-width: 100%;
  }
  body.admin-mode .admin-topbar__brand,
  body.admin-mode .admin-topbar__actions {
    justify-self: start;
  }
  /* Tab-Leiste kompakter + garantiert horizontal scrollbar, nicht wrap */
  body.admin-mode .admin-tabs {
    width: 100%;
    max-width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 2px;
    justify-self: start;
    scroll-snap-type: x proximity;
  }
  body.admin-mode .admin-tabs .admin-tab {
    padding: 7px 12px !important;
    font-size: 12px !important;
    letter-spacing: -0.005em;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
  /* Filter-Dropdowns full-width damit sie nicht seitlich rausragen */
  body.admin-mode .admin-filterbar {
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    gap: 8px;
  }
  body.admin-mode .admin-filterbar .text-input,
  body.admin-mode .admin-filterbar select {
    width: 100%;
    min-width: 0;
  }
}
@media (max-width: 520px) {
  body.admin-mode .admin-tabs .admin-tab {
    padding: 6px 10px !important;
    font-size: 11px !important;
  }
}

/* Remove older admin-top-actions styles collision */
body.admin-mode .admin-topbar .admin-tabs .admin-tab {
  padding: 8px 14px !important;
  background: transparent !important;
  border: 1px solid transparent !important;
}
body.admin-mode .admin-topbar .admin-tabs .admin-tab.is-active {
  background: rgba(163, 255, 61, 0.1) !important;
  border-color: rgba(163, 255, 61, 0.3) !important;
}

/* ===== Admin Duration Statistics ===== */
body.admin-mode .admin-duration-empty {
  padding: 24px;
  text-align: center;
  color: var(--ns-ink-muted);
  font-family: var(--ns-mono);
  font-size: 12px;
  background: #0c0c10;
  border: 1px dashed var(--ns-line);
  border-radius: 14px;
}

body.admin-mode .admin-duration-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 720px) {
  body.admin-mode .admin-duration-grid { grid-template-columns: 1fr; }
}

body.admin-mode .admin-duration-card {
  background: #0c0c10;
  border: 1px solid var(--ns-line);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 12px;
}
body.admin-mode .admin-duration-grid > .admin-duration-card { margin-bottom: 0; }

body.admin-mode .admin-duration-card__title {
  font-family: var(--ns-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ns-accent);
  font-weight: 600;
  margin-bottom: 14px;
}

/* Percentile + meta grids share styling */
body.admin-mode .admin-percentile-grid,
body.admin-mode .admin-duration-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
body.admin-mode .admin-duration-meta { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 520px) {
  body.admin-mode .admin-percentile-grid,
  body.admin-mode .admin-duration-meta { grid-template-columns: 1fr 1fr; }
}

body.admin-mode .admin-percentile-grid > div,
body.admin-mode .admin-duration-meta > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--ns-line);
  border-radius: 10px;
}

body.admin-mode .admin-percentile-grid span,
body.admin-mode .admin-duration-meta span {
  font-family: var(--ns-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ns-ink-muted);
  font-weight: 600;
}
body.admin-mode .admin-percentile-grid strong,
body.admin-mode .admin-duration-meta strong {
  font-family: var(--ns-font);
  font-size: 18px;
  font-weight: 700;
  color: var(--ns-ink);
  letter-spacing: -0.02em;
}

/* Histogram */
body.admin-mode .admin-histogram {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body.admin-mode .admin-histo-row {
  display: grid;
  grid-template-columns: 72px 1fr 40px;
  gap: 12px;
  align-items: center;
}
body.admin-mode .admin-histo-label {
  font-family: var(--ns-mono);
  font-size: 11px;
  color: var(--ns-ink-muted);
  letter-spacing: 0.04em;
}
body.admin-mode .admin-histo-bar {
  height: 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  overflow: hidden;
}
body.admin-mode .admin-histo-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--ns-accent), #7df27d);
  border-radius: 999px;
  transition: width 500ms cubic-bezier(0.22, 0.61, 0.36, 1);
  box-shadow: 0 0 12px rgba(163, 255, 61, 0.4);
}
body.admin-mode .admin-histo-count {
  font-family: var(--ns-mono);
  font-size: 12px;
  text-align: right;
  color: var(--ns-ink);
  font-weight: 600;
}

/* Style table */
body.admin-mode .admin-style-table {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
body.admin-mode .admin-style-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
  gap: 10px;
  padding: 10px 12px;
  align-items: center;
  font-family: var(--ns-font);
  font-size: 13px;
  color: var(--ns-ink);
  border-radius: 8px;
}
body.admin-mode .admin-style-row:nth-child(even):not(.admin-style-row--head) {
  background: rgba(255, 255, 255, 0.02);
}
body.admin-mode .admin-style-row--head {
  font-family: var(--ns-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ns-ink-muted);
  font-weight: 600;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ns-line);
  margin-bottom: 4px;
  border-radius: 0;
}
body.admin-mode .admin-style-row strong {
  color: var(--ns-accent);
  font-weight: 700;
  font-family: var(--ns-mono);
}
@media (max-width: 680px) {
  body.admin-mode .admin-style-row {
    grid-template-columns: 2fr 1fr 1fr;
    font-size: 11px;
  }
  body.admin-mode .admin-style-row > *:nth-child(n+4) { display: none; }
}

/* ============================================================
   ADMIN V2 — Events Pane Restyle (fixes cramped sidebar + editor)
   ============================================================ */

/* Event-Anlegen Card: ensure full padding + visible button */
body.admin-mode .admin-pane[data-pane="events"] { padding-top: 0 !important; }
body.admin-mode .admin-pane[data-pane="events"] .admin-create {
  background: #0c0c10 !important;
  border: 1px solid var(--ns-line) !important;
  border-radius: 14px;
  padding: 20px !important;
  margin: 0 0 16px !important;
  display: block !important;
  box-shadow: none !important;
}
body.admin-mode .admin-pane[data-pane="events"] .admin-create > .panel__label { margin-bottom: 12px; }
body.admin-mode .admin-pane[data-pane="events"] .admin-create .actions {
  display: flex; gap: 8px; margin-top: 12px;
}
body.admin-mode .admin-pane[data-pane="events"] .admin-create .button--primary {
  padding: 10px 18px;
  background: var(--ns-accent);
  color: #000;
  border: none;
  border-radius: 10px;
  font-family: var(--ns-font);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}
body.admin-mode .admin-pane[data-pane="events"] .admin-create .button--primary:hover { filter: brightness(1.05); }

/* Sidebar layout */
body.admin-mode .admin-sidebar {
  padding: 16px;
}

body.admin-mode .admin-event-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
body.admin-mode .admin-event-group__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0 2px 4px;
  border-bottom: 1px solid var(--ns-line);
}
body.admin-mode .admin-event-group__head h4 {
  font-family: var(--ns-font);
  font-size: 12px;
  font-weight: 600;
  color: var(--ns-ink);
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
}
body.admin-mode .admin-event-group__head span {
  font-family: var(--ns-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ns-accent);
}

body.admin-mode .admin-event-group__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
body.admin-mode .admin-event-group__list.is-empty {
  padding: 10px;
  font-family: var(--ns-mono);
  font-size: 11px;
  color: var(--ns-ink-muted);
  text-align: center;
}

/* Event card: compact, readable, no URL wrapping */
body.admin-mode .admin-event-item {
  display: block !important;
  padding: 12px !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid var(--ns-line) !important;
  border-radius: 10px !important;
  margin: 0 !important;
  transition: border-color 160ms ease, background 160ms ease;
  cursor: pointer;
  position: relative;
}
body.admin-mode .admin-event-item:hover {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: var(--ns-line-2) !important;
}
body.admin-mode .admin-event-item.is-selected {
  background: rgba(163, 255, 61, 0.06) !important;
  border-color: var(--ns-accent) !important;
  box-shadow: 0 0 0 1px var(--ns-accent-dim), 0 0 20px rgba(163, 255, 61, 0.1) !important;
}

body.admin-mode .admin-event-item__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
body.admin-mode .admin-event-item strong {
  font-size: 14px;
  color: var(--ns-ink);
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

body.admin-mode .admin-event-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
body.admin-mode .admin-event-meta .meta {
  font-family: var(--ns-mono);
  font-size: 10px;
  color: var(--ns-ink-muted);
  letter-spacing: 0.02em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
body.admin-mode .admin-event-meta .meta a {
  color: var(--ns-accent);
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  max-width: 100%;
  vertical-align: bottom;
}

/* Event card actions: small icon-row at bottom */
body.admin-mode .admin-event-item .actions,
body.admin-mode .admin-event-item .actions--stack {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: 4px !important;
  margin-top: 8px !important;
  align-items: stretch;
}
body.admin-mode .admin-event-item .actions .button,
body.admin-mode .admin-event-item .actions--stack .button {
  padding: 5px 9px !important;
  font-size: 10px !important;
  font-family: var(--ns-mono) !important;
  letter-spacing: 0.02em !important;
  border-radius: 6px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid var(--ns-line) !important;
  color: var(--ns-ink-dim) !important;
  width: auto !important;
  min-width: 0 !important;
  white-space: nowrap !important;
  cursor: pointer;
}
body.admin-mode .admin-event-item .actions .button:hover,
body.admin-mode .admin-event-item .actions--stack .button:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--ns-ink) !important;
}
body.admin-mode .admin-event-item .actions .button--primary,
body.admin-mode .admin-event-item .actions--stack .button--primary {
  background: var(--ns-accent) !important;
  color: #000 !important;
  border-color: var(--ns-accent) !important;
  font-weight: 700 !important;
}

/* Status badge in event card */
body.admin-mode .admin-event-item .admin-badge {
  padding: 3px 7px;
  border-radius: 999px;
  font-family: var(--ns-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--ns-line);
  color: var(--ns-ink-dim);
  white-space: nowrap;
}
body.admin-mode .admin-event-item .admin-badge.admin-badge--active,
body.admin-mode .admin-event-item .admin-badge--paid {
  background: rgba(163, 255, 61, 0.12);
  color: var(--ns-accent);
  border-color: rgba(163, 255, 61, 0.3);
}
body.admin-mode .admin-event-item .admin-badge--pending {
  background: rgba(255, 180, 90, 0.12);
  color: #ffb45a;
  border-color: rgba(255, 180, 90, 0.3);
}
body.admin-mode .admin-event-item .admin-badge--ended {
  background: rgba(255, 111, 97, 0.1);
  color: #ff8877;
  border-color: rgba(255, 111, 97, 0.3);
}

/* ===== Event Editor (main area) ===== */
body.admin-mode .admin-editor {
  padding: 0;
}
body.admin-mode .admin-editor.empty {
  padding: 60px 20px;
  color: var(--ns-ink-muted);
  font-family: var(--ns-font);
  font-size: 14px;
  text-align: center;
  border: 1px dashed var(--ns-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.01);
}

body.admin-mode .admin-editor__head {
  display: grid !important;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--ns-line);
  margin-bottom: 20px;
}
body.admin-mode .admin-editor__head > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
body.admin-mode .admin-editor__head .panel__label {
  font-family: var(--ns-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ns-accent);
  font-weight: 600;
}
body.admin-mode .admin-editor__head h3 {
  font-family: var(--ns-font);
  font-size: 26px;
  font-weight: 700;
  color: var(--ns-ink);
  letter-spacing: -0.02em;
  margin: 0;
}
body.admin-mode .admin-editor__head .meta {
  font-family: var(--ns-mono);
  font-size: 11px;
  color: var(--ns-ink-muted);
  letter-spacing: 0.04em;
}

body.admin-mode .admin-qr {
  background: #fff;
  border-radius: 10px;
  padding: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  width: 140px;
  height: 140px;
  flex-shrink: 0;
}
body.admin-mode .admin-qr img {
  width: 100%;
  height: 100%;
  display: block;
}

body.admin-mode .admin-editor__actions {
  display: flex !important;
  flex-wrap: wrap;
  gap: 6px !important;
  margin-bottom: 20px;
}
body.admin-mode .admin-editor__actions .button {
  padding: 8px 14px !important;
  font-size: 12px !important;
  font-family: var(--ns-font) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid var(--ns-line) !important;
  color: var(--ns-ink-dim) !important;
  cursor: pointer;
  width: auto !important;
}
body.admin-mode .admin-editor__actions .button:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--ns-ink) !important;
}
body.admin-mode .admin-editor__actions .button--primary {
  background: var(--ns-accent) !important;
  color: #000 !important;
  border-color: var(--ns-accent) !important;
  font-weight: 700 !important;
}

body.admin-mode .admin-editor__section {
  padding: 20px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--ns-line);
  border-radius: 14px;
}
body.admin-mode .admin-editor__section .panel__label {
  font-family: var(--ns-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ns-accent);
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}
body.admin-mode .admin-editor__section .meta {
  font-family: var(--ns-mono);
  font-size: 11px;
  color: var(--ns-ink-muted);
  margin-bottom: 12px;
}

/* Look action buttons row (all/none) */
body.admin-mode .admin-look-actions {
  display: flex !important;
  flex-direction: row !important;
  gap: 8px !important;
  margin-bottom: 14px !important;
}
body.admin-mode .admin-look-actions .button {
  padding: 8px 14px !important;
  font-size: 11px !important;
  font-family: var(--ns-mono) !important;
  letter-spacing: 0.06em !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid var(--ns-line) !important;
  color: var(--ns-ink-dim) !important;
  width: auto !important;
  cursor: pointer;
}
body.admin-mode .admin-look-actions .button:hover {
  background: rgba(163, 255, 61, 0.08) !important;
  border-color: var(--ns-accent) !important;
  color: var(--ns-accent) !important;
}

/* Look grid: chip-style toggles (replaces browser checkboxes) */
body.admin-mode .admin-look-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)) !important;
  gap: 6px !important;
}

body.admin-mode .admin-look-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--ns-line);
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--ns-font);
  font-size: 12px;
  color: var(--ns-ink-dim);
  transition: all 160ms ease;
  user-select: none;
  position: relative;
}
body.admin-mode .admin-look-toggle:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--ns-line-2);
  color: var(--ns-ink);
}
body.admin-mode .admin-look-toggle input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
body.admin-mode .admin-look-toggle::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1.5px solid var(--ns-line-2);
  background: transparent;
  flex-shrink: 0;
  transition: all 160ms ease;
  display: inline-block;
}
body.admin-mode .admin-look-toggle:has(input:checked) {
  background: rgba(163, 255, 61, 0.08);
  border-color: var(--ns-accent);
  color: var(--ns-ink);
}
body.admin-mode .admin-look-toggle:has(input:checked)::before {
  background: var(--ns-accent);
  border-color: var(--ns-accent);
  box-shadow: inset 0 0 0 3px #000;
}
body.admin-mode .admin-look-toggle span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

/* Custom style cards */
body.admin-mode .custom-style-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 10px;
}
body.admin-mode .custom-style-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--ns-line);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body.admin-mode .custom-style-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body.admin-mode .custom-style-card__head strong {
  font-family: var(--ns-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ns-accent);
  text-transform: uppercase;
}
body.admin-mode .custom-style-card .text-input {
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--ns-line);
  border-radius: 6px;
  color: var(--ns-ink);
  font-family: var(--ns-font);
  font-size: 12px;
  outline: none;
}
body.admin-mode .custom-style-card textarea.text-input {
  font-family: var(--ns-mono);
  min-height: 80px;
  resize: vertical;
}

/* Save button */
body.admin-mode #save-admin-event {
  padding: 10px 20px !important;
  background: var(--ns-accent) !important;
  color: #000 !important;
  border: none !important;
  border-radius: 10px !important;
  font-family: var(--ns-font) !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  cursor: pointer;
  width: auto !important;
}
body.admin-mode #save-admin-event:hover { filter: brightness(1.05); }

body.admin-mode #admin-dirty-note {
  color: #ffb45a;
  font-family: var(--ns-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}

/* Responsive */
@media (max-width: 900px) {
  body.admin-mode .admin-editor__head {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  body.admin-mode .admin-qr {
    width: 120px; height: 120px;
    justify-self: start;
  }
  body.admin-mode .admin-event-item .actions {
    gap: 3px !important;
  }
  body.admin-mode .admin-event-item .actions .button {
    padding: 4px 7px !important;
    font-size: 9px !important;
  }
}

/* Look card stats row */
body.admin-mode .admin-look__stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  margin: 2px 0 4px;
}
body.admin-mode .admin-look-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--ns-line);
  border-radius: 6px;
}
body.admin-mode .admin-look-stat span {
  font-family: var(--ns-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--ns-ink-faint);
}
body.admin-mode .admin-look-stat strong {
  font-family: var(--ns-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--ns-accent);
  letter-spacing: 0;
}

/* Session notes details */
body.admin-mode .admin-session__notes {
  margin-top: 6px;
  font-family: var(--ns-mono);
  font-size: 11px;
}
body.admin-mode .admin-session__notes summary {
  cursor: pointer;
  color: var(--ns-accent);
  padding: 4px 8px;
  background: rgba(163, 255, 61, 0.06);
  border: 1px solid var(--ns-line);
  border-radius: 6px;
  display: inline-block;
  list-style: none;
  letter-spacing: 0.04em;
  user-select: none;
}
body.admin-mode .admin-session__notes summary::-webkit-details-marker { display: none; }
body.admin-mode .admin-session__notes summary::before { content: "▸ "; margin-right: 4px; }
body.admin-mode .admin-session__notes[open] summary::before { content: "▾ "; }
body.admin-mode .admin-session__notes-list {
  margin-top: 6px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--ns-line);
  border-radius: 6px;
  color: var(--ns-ink-dim);
  line-height: 1.5;
  max-height: 200px;
  overflow-y: auto;
}
body.admin-mode .admin-session__notes-list div {
  padding: 2px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
body.admin-mode .admin-session__notes-list div:last-child { border-bottom: none; }

/* ══════════════════════════════════════════
   BOOTH-MODE: Kiosk (QR) vs Phone (direct save)
   Default = phone-mode. ?kiosk=1 → kiosk-mode.
   ══════════════════════════════════════════ */

/* Default (Phone-Mode): QR-Card versteckt, Action-Buttons sichtbar */
.booth-result__qr-card { display: none; }
body.booth-mode-kiosk .booth-result__qr-card { display: block; }

.booth-result__actions {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 72px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  z-index: 3;
  pointer-events: auto;
}
body.booth-mode-kiosk .booth-result__actions { display: none; }

.booth-result__action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  border-radius: 999px;
  font-family: var(--ns-font, -apple-system, sans-serif);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 160ms ease, filter 160ms ease, background 160ms ease;
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  width: 100%;
}

#booth-result-save {
  background: linear-gradient(135deg, #a3ff3d 0%, #7df27d 100%);
  color: #000;
  border-color: transparent;
  box-shadow: 0 10px 28px rgba(163, 255, 61, 0.35);
}
#booth-result-save:hover { transform: translateY(-2px); filter: brightness(1.05); }
#booth-result-save:active { transform: translateY(0); }
#booth-result-save:disabled { opacity: 0.6; cursor: wait; }

#booth-result-share {
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
}
#booth-result-share:hover { background: rgba(0, 0, 0, 0.7); }

.booth-result__save-hint {
  margin-top: 4px;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.6);
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--ns-mono, monospace);
  font-size: 11px;
  letter-spacing: 0.02em;
  text-align: center;
  border-radius: 10px;
  backdrop-filter: blur(6px);
}

/* Auf Desktop: Action-Buttons rechts statt unten */
@media (min-width: 900px) and (pointer: fine) {
  .booth-result__actions {
    left: auto;
    right: calc(env(safe-area-inset-right, 0px) + 18px);
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    width: 220px;
  }
}

/* Phone-Mode: Timer nach oben rücken, da Action-Buttons unten sitzen */
body:not(.booth-mode-kiosk) .booth-result__timer {
  bottom: auto;
  top: calc(env(safe-area-inset-top, 0px) + 70px);
}
@media (max-width: 680px) {
  body:not(.booth-mode-kiosk) .booth-result__timer {
    top: calc(env(safe-area-inset-top, 0px) + 62px);
  }
}

/* Kiosk-Mode: Countdown-Start-Button verstecken (Countdown läuft auto) */
body.booth-mode-kiosk #camera-capture-button { display: none !important; }
/* Auch Galerie-Button verstecken — Gäste sollen nicht in Tablet-Fotos browsen */
body.booth-mode-kiosk #camera-gallery-button { display: none !important; }
/* Kamera-Modal-Header kompakter im Kiosk (mehr Platz für Countdown) */
body.booth-mode-kiosk .camera-modal__actions { min-height: 0; }

/* ═══════════════════════════════════════════════════════════════
   LANDING V2 — "After-Dark Gallery"
   Black base · Lime-Neon accent · Instrument Serif display
   Scoped to body.landing-mode · overrides earlier landing-card styles
   ═══════════════════════════════════════════════════════════════ */

/* Fonts: Instrument Serif (editorial), Figtree (body), JetBrains Mono (labels) */
body.landing-mode {
  font-family: "Figtree", "Manrope", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-feature-settings: "ss01";
  background: #000;
  color: #f4ecd9;
  line-height: 1.55;
  overflow-x: hidden;
}

body.landing-mode * { box-sizing: border-box; }

/* Neutralize all old .landing-card / .landing-* base styles inside new screen */
body.landing-mode .ls-screen {
  position: relative;
  background: #000;
  min-height: 100vh;
  padding: 0;
}

/* ──────────────── Shared ──────────────── */
.ls-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", "Geist Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #a3ff3d;
  padding: 6px 12px;
  border: 1px solid rgba(163, 255, 61, 0.24);
  background: rgba(163, 255, 61, 0.04);
  border-radius: 999px;
  margin-bottom: 14px;
}
.ls-eyebrow--success { color: #a3ff3d; border-color: rgba(163, 255, 61, 0.4); background: rgba(163, 255, 61, 0.1); }
.ls-eyebrow i { font-style: normal; }

.ls-section__head {
  max-width: 960px;
  margin: 0 auto 40px;
  text-align: center;
  padding: 0 20px;
}
.ls-section__head--center { text-align: center; }

.ls-section__title {
  font-family: "Instrument Serif", "Fraunces", Georgia, serif;
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.0;
  color: #fffbe8;
  margin: 0 0 14px;
}
.ls-section__title em {
  font-style: italic;
  background: linear-gradient(135deg, #a3ff3d 0%, #f4ecd9 60%, #a3ff3d 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: lsShimmer 8s ease-in-out infinite;
}
@keyframes lsShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.ls-section__title--center { text-align: center; }
.ls-section__sub {
  max-width: 680px;
  margin: 0 auto;
  font-size: 16px;
  color: rgba(244, 236, 217, 0.72);
  line-height: 1.6;
}

.ls-pulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a3ff3d;
  box-shadow: 0 0 0 3px rgba(163, 255, 61, 0.2), 0 0 12px rgba(163, 255, 61, 0.8);
  animation: lsPulse 2.2s ease-in-out infinite;
}
@keyframes lsPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(163, 255, 61, 0.18), 0 0 12px rgba(163, 255, 61, 0.5); }
  50% { box-shadow: 0 0 0 7px rgba(163, 255, 61, 0), 0 0 20px rgba(163, 255, 61, 1); }
}

/* Buttons */
.ls-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform 200ms cubic-bezier(0.22, 0.61, 0.36, 1), filter 200ms, background 200ms, color 200ms, border-color 200ms;
  white-space: nowrap;
  line-height: 1;
}
.ls-btn--primary {
  background: linear-gradient(135deg, #a3ff3d 0%, #7df27d 100%);
  color: #000;
  border-color: transparent;
  box-shadow: 0 10px 26px rgba(163, 255, 61, 0.32);
}
.ls-btn--primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 14px 34px rgba(163, 255, 61, 0.45);
}
.ls-btn--ghost {
  background: transparent;
  color: #fffbe8;
  border-color: rgba(244, 236, 217, 0.18);
}
.ls-btn--ghost:hover {
  background: rgba(244, 236, 217, 0.06);
  border-color: rgba(244, 236, 217, 0.36);
  transform: translateY(-1px);
}
.ls-btn--lg {
  padding: 18px 32px;
  font-size: 16px;
  font-weight: 700;
}

/* Inputs */
.ls-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(244, 236, 217, 0.04);
  border: 1px solid rgba(244, 236, 217, 0.14);
  border-radius: 12px;
  color: #fffbe8;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 200ms, background 200ms;
}
.ls-input:focus {
  border-color: #a3ff3d;
  background: rgba(163, 255, 61, 0.04);
}
.ls-input--big {
  padding: 20px 24px;
  font-size: 20px;
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}
.ls-input--full { grid-column: 1 / -1; }

.ls-select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(244, 236, 217, 0.04);
  border: 1px solid rgba(244, 236, 217, 0.14);
  border-radius: 10px;
  color: #fffbe8;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  opacity: 0;
  pointer-events: none;
  position: absolute;
}
.ls-select--visible {
  opacity: 1;
  pointer-events: auto;
  position: static;
}

/* ──────────────── Top Nav ──────────────── */
.ls-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px max(24px, calc((100% - 1400px) / 2 + 24px));
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid rgba(244, 236, 217, 0.06);
}
.ls-nav__brand { flex-shrink: 0; }
.ls-nav__logo {
  height: 44px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 12px rgba(163, 255, 61, 0.35));
}
.ls-nav__links {
  display: flex;
  gap: 4px;
  margin-left: auto;
  align-items: center;
}
.ls-nav__links a {
  padding: 8px 14px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(244, 236, 217, 0.7);
  text-decoration: none;
  border-radius: 8px;
  transition: color 160ms, background 160ms;
}
.ls-nav__links a:hover { color: #fffbe8; background: rgba(244, 236, 217, 0.04); }
.ls-nav__cta {
  background: #a3ff3d !important;
  color: #000 !important;
  font-weight: 700 !important;
}
.ls-nav__cta:hover { filter: brightness(1.05); background: #a3ff3d !important; }

.ls-nav__lang {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(244, 236, 217, 0.04);
  border: 1px solid rgba(244, 236, 217, 0.14);
  color: rgba(244, 236, 217, 0.7);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  cursor: pointer;
  flex-shrink: 0;
}
.ls-nav__lang:hover { color: #a3ff3d; border-color: rgba(163, 255, 61, 0.3); }
.ls-nav__lang .ls-lang-alt { opacity: 0.5; }
body.landing-mode[data-lang="en"] .ls-nav__lang .ls-lang-active { opacity: 0.5; }
body.landing-mode[data-lang="en"] .ls-nav__lang .ls-lang-alt { opacity: 1; color: #a3ff3d; }

/* ──────────────── Hero ──────────────── */
.ls-hero {
  position: relative;
  min-height: calc(100vh - 60px);
  padding: 80px 24px 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #000;
}

/* Kontrast-Vignette hinter Hero-Text — hält die helle Schrift lesbar
   unabhängig davon wie hell/bunt die Marquee-Bilder unten/dahinter sind */
.ls-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 50% at 50% 40%, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.3) 70%, transparent 100%),
    radial-gradient(ellipse 55% 40% at 50% 35%, rgba(163, 255, 61, 0.12), transparent 75%);
  pointer-events: none;
  z-index: 1;
}

.ls-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  animation: lsFadeUp 800ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
@keyframes lsFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.ls-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(163, 255, 61, 0.22);
  background: rgba(163, 255, 61, 0.05);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a3ff3d;
  margin-bottom: 28px;
  animation: lsFadeUp 700ms cubic-bezier(0.22, 0.61, 0.36, 1) both 100ms;
}

.ls-hero__title {
  font-family: "Instrument Serif", "Fraunces", Georgia, serif;
  font-weight: 400;
  font-size: clamp(52px, 10vw, 160px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  color: #fffbe8;
  margin: 0 0 24px;
  max-width: none;
}
.ls-hero__title em {
  font-style: italic;
  background: linear-gradient(135deg, #a3ff3d 0%, #d0ff9c 50%, #a3ff3d 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: lsShimmer 6s ease-in-out infinite;
  display: inline-block;
}

.ls-hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(244, 236, 217, 0.72);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.55;
}

.ls-hero__ctas {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Marquee — horizontally scrolling preview images */
.ls-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  padding-top: 12px;
}
.ls-marquee__track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: lsMarquee 60s linear infinite;
  padding-bottom: 24px;
}
.ls-marquee__track img {
  height: 180px;
  width: 135px;
  object-fit: cover;
  border-radius: 14px;
  flex-shrink: 0;
  border: 1px solid rgba(244, 236, 217, 0.08);
  opacity: 0.75;
  transition: opacity 300ms;
}
.ls-marquee__track img:hover { opacity: 1; }
@keyframes lsMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ──────────────── Trust Strip ──────────────── */
.ls-trust {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 0 24px;
  max-width: 1400px;
  margin: 40px auto 80px;
  border-top: 1px solid rgba(244, 236, 217, 0.08);
  border-bottom: 1px solid rgba(244, 236, 217, 0.08);
}
.ls-trust__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  padding: 24px 12px;
  text-align: center;
  border-left: 1px solid rgba(244, 236, 217, 0.08);
}
.ls-trust__item:first-child { border-left: none; }
.ls-trust__item strong {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: #a3ff3d;
  letter-spacing: -0.02em;
  line-height: 1;
}
.ls-trust__item span {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 236, 217, 0.5);
}

/* ──────────────── Packages ──────────────── */
.ls-packages {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.ls-packages__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}
.ls-package {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px 28px;
  background: linear-gradient(180deg, rgba(244, 236, 217, 0.03) 0%, rgba(244, 236, 217, 0.01) 100%);
  border: 1px solid rgba(244, 236, 217, 0.1);
  border-radius: 20px;
  transition: transform 300ms, border-color 300ms, box-shadow 300ms;
}
.ls-package:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 236, 217, 0.2);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}
.ls-package--featured {
  background: linear-gradient(180deg, rgba(163, 255, 61, 0.06) 0%, rgba(163, 255, 61, 0.02) 100%);
  border-color: rgba(163, 255, 61, 0.3);
  box-shadow: 0 0 0 1px rgba(163, 255, 61, 0.15), 0 24px 48px rgba(0, 0, 0, 0.3);
}
.ls-package--featured:hover {
  border-color: #a3ff3d;
  box-shadow: 0 0 0 1px rgba(163, 255, 61, 0.4), 0 32px 64px rgba(163, 255, 61, 0.15);
}

.ls-package__tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  background: rgba(244, 236, 217, 0.08);
  color: rgba(244, 236, 217, 0.7);
  align-self: flex-start;
}
.ls-package__tag--primary {
  background: #a3ff3d;
  color: #000;
  font-weight: 700;
}
.ls-package__name {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 44px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fffbe8;
  margin: 4px 0 2px;
}
.ls-package__sub {
  font-size: 14px;
  color: rgba(244, 236, 217, 0.6);
  line-height: 1.5;
  margin: 0 0 4px;
}
.ls-package__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 18px 0;
  border-top: 1px solid rgba(244, 236, 217, 0.08);
  border-bottom: 1px solid rgba(244, 236, 217, 0.08);
  margin: 8px 0 4px;
}
.ls-package__price strong {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 56px;
  font-weight: 400;
  color: #fffbe8;
  letter-spacing: -0.02em;
  line-height: 1;
}
.ls-package--featured .ls-package__price strong { color: #a3ff3d; }
.ls-package__price span {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: rgba(244, 236, 217, 0.5);
  letter-spacing: 0.04em;
}
.ls-package__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ls-package__features li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(244, 236, 217, 0.82);
}
.ls-package__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #a3ff3d;
  font-weight: 700;
}
.ls-package__features strong { color: #fffbe8; }
.ls-package__note {
  padding: 10px 14px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: #ffd27a;
  background: rgba(255, 180, 90, 0.08);
  border: 1px solid rgba(255, 180, 90, 0.25);
  border-radius: 8px;
}
.ls-package__cta {
  margin-top: 8px;
  width: 100%;
}

.ls-packages__disclaimer {
  text-align: center;
  max-width: 680px;
  margin: 32px auto 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(244, 236, 217, 0.4);
}

/* ──────────────── Timeline ──────────────── */
.ls-timeline {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.ls-timeline__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  counter-reset: none;
  position: relative;
}
.ls-timeline__steps::before {
  content: "";
  position: absolute;
  top: 96px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, rgba(163, 255, 61, 0.3), rgba(244, 236, 217, 0.1), rgba(163, 255, 61, 0.3));
  z-index: 0;
}
.ls-timeline__steps li {
  position: relative;
  padding: 20px 12px;
  text-align: center;
  z-index: 1;
}
.ls-timeline__num {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #a3ff3d;
  margin-bottom: 16px;
}
.ls-timeline__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  background: #0a0a0a;
  border: 1px solid rgba(163, 255, 61, 0.25);
  border-radius: 999px;
  box-shadow: 0 0 0 6px #000, 0 0 24px rgba(163, 255, 61, 0.15);
  position: relative;
}
.ls-timeline__steps li h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: #fffbe8;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.ls-timeline__steps li p {
  font-size: 13px;
  color: rgba(244, 236, 217, 0.6);
  line-height: 1.5;
  margin: 0;
}

/* ──────────────── Gallery ──────────────── */
.ls-gallery {
  padding: 80px 24px;
  max-width: 1400px;
  margin: 0 auto;
}
/* Horizontal carousel — alle 100 Looks in einer scrollbaren Reihe */
.ls-gallery__grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 0 20px;
  scroll-padding-left: 24px;
  /* Hide scrollbar visually but keep functionality */
  scrollbar-width: thin;
  scrollbar-color: rgba(163, 255, 61, 0.4) transparent;
  /* Side-fade edges */
  mask-image: linear-gradient(to right, transparent 0%, #000 3%, #000 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 3%, #000 97%, transparent 100%);
}
.ls-gallery__grid::-webkit-scrollbar { height: 6px; }
.ls-gallery__grid::-webkit-scrollbar-thumb {
  background: rgba(163, 255, 61, 0.3);
  border-radius: 999px;
}
.ls-gallery__grid::-webkit-scrollbar-track { background: transparent; }
.ls-tile {
  position: relative;
  margin: 0;
  width: 180px;
  height: 240px;
  flex-shrink: 0;
  scroll-snap-align: start;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(244, 236, 217, 0.06);
  transition: transform 300ms, border-color 300ms;
}
.ls-tile:first-child { margin-left: 24px; }
.ls-tile:last-child { margin-right: 24px; }
.ls-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(163, 255, 61, 0.35);
}
.ls-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.ls-tile:hover img { transform: scale(1.05); }
.ls-tile figcaption {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  padding: 6px 10px 8px;
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: #fffbe8;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.88) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ls-tile figcaption span {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  font-style: normal;
  color: #a3ff3d;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}
/* Die dynamischen --xl / --tall Klassen werden im Carousel ignoriert (alle gleiche Größe) */
.ls-tile--xl, .ls-tile--tall { width: 180px; height: 240px; }

.ls-gallery__more {
  text-align: center;
  margin-top: 32px;
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: 17px;
  color: rgba(244, 236, 217, 0.55);
}

/* ──────────────── How Steps ──────────────── */
.ls-how {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.ls-how__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ls-how__steps li {
  padding: 28px;
  background: rgba(244, 236, 217, 0.02);
  border: 1px solid rgba(244, 236, 217, 0.08);
  border-radius: 18px;
}
.ls-how__num {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  color: #a3ff3d;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.ls-how__steps li h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  color: #fffbe8;
  margin: 0 0 10px;
}
.ls-how__steps li p {
  font-size: 14px;
  color: rgba(244, 236, 217, 0.7);
  line-height: 1.6;
  margin: 0;
}

/* ──────────────── Cases Marquee ──────────────── */
.ls-cases {
  padding: 40px 0 60px;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.ls-cases__line {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: clamp(32px, 5vw, 68px);
  font-weight: 400;
  color: #fffbe8;
  letter-spacing: -0.015em;
  animation: lsMarqueeSlow 40s linear infinite;
}
.ls-cases__line i {
  font-style: normal;
  color: #a3ff3d;
  opacity: 0.5;
  font-size: 0.6em;
}
@keyframes lsMarqueeSlow {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ──────────────── Why ──────────────── */
.ls-why {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.ls-why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.ls-why__grid article {
  padding: 28px;
  background: rgba(244, 236, 217, 0.02);
  border: 1px solid rgba(244, 236, 217, 0.08);
  border-radius: 18px;
}
.ls-why__num {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: rgba(163, 255, 61, 0.8);
  margin: 0 0 12px;
}
.ls-why__grid h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: 28px;
  font-weight: 400;
  color: #fffbe8;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.ls-why__grid p {
  font-size: 15px;
  color: rgba(244, 236, 217, 0.72);
  line-height: 1.6;
  margin: 0;
}

/* ──────────────── Nationwide ──────────────── */
.ls-nationwide {
  padding: 80px 24px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.ls-nationwide__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 32px auto 20px;
  max-width: 860px;
}
.ls-nationwide__cities a {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(244, 236, 217, 0.04);
  border: 1px solid rgba(244, 236, 217, 0.12);
  color: rgba(244, 236, 217, 0.85);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 200ms;
}
.ls-nationwide__cities a:hover {
  background: rgba(163, 255, 61, 0.08);
  border-color: rgba(163, 255, 61, 0.35);
  color: #a3ff3d;
  transform: translateY(-1px);
}
.ls-nationwide__note {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: 18px;
  color: rgba(244, 236, 217, 0.55);
}

/* ──────────────── Order Funnel ──────────────── */
.ls-order {
  padding: 80px 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.ls-order__overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 32px;
  padding: 20px;
  background: rgba(244, 236, 217, 0.02);
  border: 1px solid rgba(244, 236, 217, 0.08);
  border-radius: 16px;
}
.ls-order-overview__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ls-order-overview__item span {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 236, 217, 0.45);
}
.ls-order-overview__item strong {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  color: #fffbe8;
}

.ls-order__flow {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.ls-order__flow-step {
  padding: 10px 18px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  border-radius: 999px;
  background: rgba(244, 236, 217, 0.04);
  border: 1px solid rgba(244, 236, 217, 0.08);
  color: rgba(244, 236, 217, 0.5);
}
.ls-order__flow-step.is-active {
  background: rgba(163, 255, 61, 0.08);
  border-color: rgba(163, 255, 61, 0.3);
  color: #a3ff3d;
}

.ls-order__step {
  margin: 32px 0;
  padding: 28px;
  background: rgba(244, 236, 217, 0.02);
  border: 1px solid rgba(244, 236, 217, 0.08);
  border-radius: 18px;
}
.ls-order__step-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.ls-order__step-num {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  color: #a3ff3d;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.ls-order__step-head h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  color: #fffbe8;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.ls-order__step-head p {
  font-size: 13px;
  color: rgba(244, 236, 217, 0.6);
  line-height: 1.5;
  margin: 0;
}

.ls-order__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ls-order__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ls-order__field--full { grid-column: 1 / -1; }
.ls-order__field span {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 236, 217, 0.5);
}

.ls-order__summary {
  margin-top: 14px;
  padding: 14px;
  background: rgba(244, 236, 217, 0.03);
  border-radius: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: rgba(244, 236, 217, 0.7);
}

.ls-order__actions-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.ls-order__cta {
  text-align: center;
  margin: 32px 0 16px;
}

.ls-feedback {
  padding: 14px 18px;
  background: rgba(244, 236, 217, 0.03);
  border: 1px solid rgba(244, 236, 217, 0.08);
  border-radius: 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: rgba(244, 236, 217, 0.7);
  line-height: 1.5;
}
.ls-feedback--center { text-align: center; }

/* Payment */
.ls-payment {
  margin-top: 32px;
  padding: 28px;
  background: rgba(244, 236, 217, 0.02);
  border: 1px solid rgba(244, 236, 217, 0.08);
  border-radius: 18px;
}
.ls-payment__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.ls-payment__head h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  color: #fffbe8;
  margin: 0 0 4px;
}
.ls-payment__head p {
  font-size: 13px;
  color: rgba(244, 236, 217, 0.6);
  margin: 0;
}
.ls-payment__methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ls-payment__method {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: rgba(244, 236, 217, 0.03);
  border: 1px solid rgba(244, 236, 217, 0.1);
  border-radius: 14px;
  color: #fffbe8;
  text-align: left;
  cursor: pointer;
  transition: all 200ms;
  font-family: inherit;
}
.ls-payment__method:hover {
  border-color: rgba(163, 255, 61, 0.4);
  background: rgba(163, 255, 61, 0.04);
  transform: translateY(-2px);
}
.ls-payment__brand-logo {
  height: 28px;
  width: auto;
  display: block;
  opacity: 0.95;
  margin-bottom: 4px;
}
.ls-payment__badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 6px;
}
.ls-payment__badges img {
  height: 22px;
  width: auto;
  opacity: 0.8;
  transition: opacity 200ms;
}
.ls-payment__method:hover .ls-payment__badges img { opacity: 1; }
.ls-payment__badge-text {
  padding: 3px 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  background: rgba(244, 236, 217, 0.06);
  border-radius: 4px;
  color: rgba(244, 236, 217, 0.7);
  letter-spacing: 0.08em;
}
.ls-payment__title {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  color: #fffbe8;
  margin-top: 4px;
}
.ls-payment__arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 20px;
  color: #a3ff3d;
  transition: transform 200ms;
}
.ls-payment__method:hover .ls-payment__arrow { transform: translateX(4px); }

/* Order Result */
.ls-order__result {
  margin-top: 32px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(163, 255, 61, 0.06), rgba(163, 255, 61, 0.02));
  border: 1px solid rgba(163, 255, 61, 0.25);
  border-radius: 18px;
}
.ls-order__result-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
.ls-order__result-top h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: 28px;
  color: #fffbe8;
  margin: 4px 0 8px;
}
.ls-order__result-top p {
  font-size: 14px;
  color: rgba(244, 236, 217, 0.7);
  margin: 0;
  line-height: 1.5;
}
.ls-order__result-qr {
  width: 120px;
  height: 120px;
  border-radius: 14px;
  background: #fff;
  padding: 8px;
}
.ls-order__result-meta {
  margin-top: 20px;
  padding: 14px;
  background: rgba(244, 236, 217, 0.04);
  border-radius: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(244, 236, 217, 0.8);
}
.ls-order__next {
  margin-top: 20px;
}
.ls-order__next-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.ls-order__next-grid > div {
  padding: 14px;
  background: rgba(244, 236, 217, 0.03);
  border-radius: 10px;
}
.ls-order__next-grid strong {
  display: block;
  font-size: 13px;
  color: #fffbe8;
  margin-bottom: 4px;
  font-weight: 600;
}
.ls-order__next-grid span {
  display: block;
  font-size: 12px;
  color: rgba(244, 236, 217, 0.65);
  line-height: 1.5;
}
.ls-order__result-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* ──────────────── FAQ ──────────────── */
.ls-faq {
  padding: 80px 24px;
  max-width: 860px;
  margin: 0 auto;
}
.ls-faq__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ls-faq__item {
  border: 1px solid rgba(244, 236, 217, 0.08);
  border-radius: 14px;
  background: rgba(244, 236, 217, 0.02);
  overflow: hidden;
  transition: border-color 200ms, background 200ms;
}
.ls-faq__item[open] {
  border-color: rgba(163, 255, 61, 0.25);
  background: rgba(163, 255, 61, 0.03);
}
.ls-faq__item summary {
  padding: 20px 24px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 19px;
  font-style: italic;
  font-weight: 400;
  color: #fffbe8;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 50px;
  letter-spacing: -0.01em;
}
.ls-faq__item summary::-webkit-details-marker { display: none; }
.ls-faq__item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "JetBrains Mono", monospace;
  font-size: 24px;
  color: #a3ff3d;
  font-style: normal;
  transition: transform 200ms;
}
.ls-faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.ls-faq__item p {
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(244, 236, 217, 0.75);
  margin: 0;
}

/* ──────────────── Access ──────────────── */
.ls-access {
  padding: 80px 24px;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.ls-access__form {
  display: flex;
  gap: 10px;
  max-width: 520px;
  margin: 32px auto 16px;
  flex-wrap: wrap;
}
.ls-access__form input {
  flex: 1;
  min-width: 200px;
}

/* ──────────────── Legal ──────────────── */
.ls-legal {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.ls-legal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ls-legal__item {
  padding: 28px;
  background: rgba(244, 236, 217, 0.02);
  border: 1px solid rgba(244, 236, 217, 0.06);
  border-radius: 16px;
}
.ls-legal__item h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  color: #fffbe8;
  margin: 6px 0 14px;
}
.ls-legal__item p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(244, 236, 217, 0.7);
  margin: 0 0 14px;
}
.ls-legal__item p:last-child { margin-bottom: 0; }
.ls-legal__item a {
  color: #a3ff3d;
  text-decoration: none;
}
.ls-legal__item a:hover { text-decoration: underline; }
.ls-legal__item strong { color: #fffbe8; }

/* ──────────────── Footer ──────────────── */
.ls-footer {
  padding: 60px 24px 80px;
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid rgba(244, 236, 217, 0.08);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
}
.ls-footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ls-footer__logo {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(163, 255, 61, 0.25));
}
.ls-footer__brand > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ls-footer__brand strong {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  color: #fffbe8;
  line-height: 1;
}
.ls-footer__brand span {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(244, 236, 217, 0.5);
}
.ls-footer__brand a {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #a3ff3d;
  text-decoration: none;
}
.ls-footer__brand a:hover { text-decoration: underline; }

.ls-footer__nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.ls-footer__nav a {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(244, 236, 217, 0.6);
  text-decoration: none;
}
.ls-footer__nav a:hover { color: #a3ff3d; }

.ls-footer__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-self: end;
  text-align: right;
}
.ls-footer__meta span {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(244, 236, 217, 0.4);
}
.ls-footer__admin {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(244, 236, 217, 0.05);
}
.ls-footer__admin a {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(244, 236, 217, 0.3);
  text-decoration: none;
}
.ls-footer__admin a:hover { color: rgba(163, 255, 61, 0.6); }

/* ──────────────── Payment Success Overlay ──────────────── */
.ls-success {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
}
.ls-success__card {
  max-width: 720px;
  width: 100%;
  padding: 40px;
  background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  border: 1px solid rgba(163, 255, 61, 0.3);
  border-radius: 24px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}
.ls-success__card h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 36px;
  font-style: italic;
  font-weight: 400;
  color: #fffbe8;
  margin: 10px 0 12px;
  letter-spacing: -0.02em;
}
.ls-success__copy {
  font-size: 15px;
  color: rgba(244, 236, 217, 0.75);
  line-height: 1.55;
  margin: 0 0 28px;
}
.ls-success__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
}
.ls-success__info { display: flex; flex-direction: column; gap: 14px; }
.ls-success__meta {
  padding: 14px;
  background: rgba(244, 236, 217, 0.04);
  border-radius: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(244, 236, 217, 0.8);
}
.ls-success__actions { display: flex; flex-direction: column; gap: 8px; }
.ls-success__qr {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.ls-success__qr img {
  width: 160px;
  height: 160px;
  background: #fff;
  padding: 8px;
  border-radius: 14px;
}

/* ══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Mobile Nav: Logo mittig, CTA rechts, Lang links */
  .ls-nav {
    padding: 10px 14px;
    gap: 8px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }
  .ls-nav__brand {
    grid-column: 2;
    justify-self: center;
    order: 2;
  }
  .ls-nav__links {
    grid-column: 3;
    order: 3;
    margin-left: 0;
    gap: 2px;
  }
  .ls-nav__links a { padding: 6px 10px; font-size: 11px; }
  .ls-nav__links a:not(.ls-nav__cta) { display: none; }
  .ls-nav__lang {
    grid-column: 1;
    order: 1;
    justify-self: start;
  }
  .ls-nav__logo { height: 36px; }

  .ls-hero {
    padding: 40px 20px 20px;
    min-height: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .ls-hero__inner { max-width: 100%; overflow-wrap: break-word; }
  .ls-hero__title {
    letter-spacing: -0.03em;
    font-size: clamp(36px, 11vw, 64px) !important;
    line-height: 1.02;
    word-break: break-word;
  }
  .ls-hero__sub { font-size: 15px; }
  .ls-hero__ctas { flex-direction: column; gap: 10px; }
  .ls-hero__ctas .ls-btn { width: 100%; }
  /* Marquee auf Mobile nicht mehr absolut - unter Content fließen */
  .ls-marquee {
    position: static;
    margin-top: 16px;
  }
  .ls-marquee__track img { height: 130px; width: 98px; }

  .ls-trust { grid-template-columns: repeat(5, 1fr); gap: 0; margin: 30px 16px 60px; }
  .ls-trust__item { padding: 16px 6px; }
  .ls-trust__item strong { font-size: 20px; }
  .ls-trust__item span { font-size: 8px; letter-spacing: 0.08em; }

  .ls-packages { padding: 60px 16px; }
  .ls-packages__grid { grid-template-columns: 1fr; gap: 16px; }
  .ls-package__name { font-size: 36px; }
  .ls-package__price strong { font-size: 44px; }

  .ls-timeline { padding: 60px 16px; }
  .ls-timeline__steps { grid-template-columns: 1fr 1fr; gap: 20px; }
  .ls-timeline__steps::before { display: none; }
  .ls-timeline__icon { width: 56px; height: 56px; font-size: 24px; }

  .ls-gallery { padding: 60px 16px; }
  .ls-gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .ls-tile--xl { grid-column: span 2; grid-row: span 1; }
  .ls-tile--tall { grid-row: span 1; }

  .ls-how { padding: 60px 16px; }
  .ls-how__steps { grid-template-columns: 1fr; gap: 14px; }
  .ls-how__steps li { padding: 22px; }
  .ls-how__num { font-size: 44px; }
  .ls-how__steps li h3 { font-size: 24px; }

  .ls-why { padding: 60px 16px; }
  .ls-why__grid { grid-template-columns: 1fr; gap: 14px; }

  .ls-nationwide { padding: 60px 16px; }
  .ls-nationwide__cities { gap: 6px; margin-top: 24px; }
  .ls-nationwide__cities a { padding: 8px 14px; font-size: 13px; }

  .ls-order { padding: 60px 16px; }
  .ls-order__flow { flex-wrap: wrap; }
  .ls-order__step { padding: 20px; }
  .ls-order__step-num { font-size: 28px; }
  .ls-order__step-head h3 { font-size: 22px; }
  .ls-order__grid { grid-template-columns: 1fr; }
  .ls-order__next-grid { grid-template-columns: 1fr; }
  .ls-order__result-top { grid-template-columns: 1fr; }

  .ls-payment__methods { grid-template-columns: 1fr; }

  .ls-faq { padding: 60px 16px; }
  .ls-faq__item summary { font-size: 16px; padding: 18px 20px; padding-right: 48px; }
  .ls-faq__item p { padding: 0 20px 16px; font-size: 14px; }

  .ls-access { padding: 60px 16px; }
  .ls-input--big { font-size: 16px; padding: 16px 20px; letter-spacing: 0.1em; }

  .ls-legal { padding: 60px 16px; }
  .ls-legal__grid { grid-template-columns: 1fr; }

  .ls-footer { padding: 40px 16px 60px; grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .ls-footer__brand {
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .ls-footer__brand > div { align-items: center; }
  .ls-footer__logo { height: 48px; max-width: 80%; object-fit: contain; }
  .ls-footer__nav { justify-content: center; flex-wrap: wrap; gap: 8px 14px; }
  .ls-footer__meta { justify-self: center; text-align: center; font-size: 11px; }

  .ls-success__card { padding: 24px; }
  .ls-success__grid { grid-template-columns: 1fr; }
  .ls-success__qr { align-items: flex-start; }
}

@media (max-width: 520px) {
  .ls-trust { grid-template-columns: repeat(3, 1fr); }
  .ls-trust__item:nth-child(n+4) { border-top: 1px solid rgba(244, 236, 217, 0.08); }
  .ls-trust__item:nth-child(4) { border-left: none; }
}

/* Kiosk + App mode still need to work — these are handled by body.app-mode styles elsewhere */

/* "Alle Looks inklusive"-Notiz im Order-Funnel */
.ls-order__all-looks-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  background: linear-gradient(180deg, rgba(163, 255, 61, 0.06), rgba(163, 255, 61, 0.02));
  border: 1px solid rgba(163, 255, 61, 0.25);
  border-radius: 14px;
  margin: 24px 0;
}
.ls-order__all-looks-note > span[aria-hidden] {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #a3ff3d;
  color: #000;
  border-radius: 50%;
  font-weight: 800;
  font-size: 15px;
}
.ls-order__all-looks-note > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ls-order__all-looks-note strong {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  color: #fffbe8;
  letter-spacing: -0.01em;
}
.ls-order__all-looks-note span {
  font-size: 13px;
  color: rgba(244, 236, 217, 0.7);
  line-height: 1.5;
}

/* Mobile: Carousel-Tiles etwas kleiner + Gap enger */
@media (max-width: 520px) {
  .ls-tile, .ls-tile--xl, .ls-tile--tall {
    width: 150px;
    height: 200px;
  }
  .ls-tile figcaption { font-size: 12px; padding: 14px 8px 6px; }
}

/* Custom-Prompt Style-Cards: kein Bild, großes Icon im Zentrum */
body.app-mode .style-card.style-card--custom {
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(163, 255, 61, 0.12), transparent 70%),
    linear-gradient(180deg, #0f0f12 0%, #0a0a0c 100%);
}
body.app-mode .style-card.style-card--custom .style-card__icon.style-card__icon--custom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 20px));
  right: auto;
  background: none;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  font-size: 64px;
  height: auto;
  width: auto;
  padding: 0;
  color: #a3ff3d;
  text-shadow: 0 0 30px rgba(163, 255, 61, 0.6), 0 0 60px rgba(163, 255, 61, 0.25);
}
/* Name sitzt weiter unten — keine Kollision mit zentriertem Icon */
body.app-mode .style-card.style-card--custom .style-card__name {
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.75) 70%);
  padding: 30px 14px 14px;
}
/* Selected-State bei custom: stärkerer Glow */
body.app-mode .style-card.style-card--custom.is-selected .style-card__icon--custom {
  text-shadow: 0 0 40px rgba(163, 255, 61, 0.9), 0 0 80px rgba(163, 255, 61, 0.5);
}

/* Admin Sessions: Mehr-Laden-Button */
body.admin-mode .admin-sessions-more {
  margin-top: 12px;
  text-align: center;
}
body.admin-mode .admin-sessions-more .button {
  padding: 10px 20px;
  font-family: var(--ns-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  background: rgba(163, 255, 61, 0.06);
  border: 1px solid rgba(163, 255, 61, 0.25);
  color: var(--ns-accent);
  border-radius: 10px;
  cursor: pointer;
}
body.admin-mode .admin-sessions-more .button:hover {
  background: rgba(163, 255, 61, 0.12);
  border-color: var(--ns-accent);
}

/* ═══════════════════════════════════════════════════
   EVENT DETAIL CARDS (Admin → Events → selected event)
   ═══════════════════════════════════════════════════ */

body.admin-mode .event-detail-card {
  background: #0c0c10;
  border: 1px solid var(--ns-line);
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 14px;
}

body.admin-mode .event-detail-card__label {
  font-family: var(--ns-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ns-accent);
  font-weight: 600;
  margin-bottom: 14px;
  display: block;
}

/* ── Info Card ── */
body.admin-mode .event-detail-card--info {
  padding: 24px;
}
body.admin-mode .event-detail-card__head h3 {
  font-family: var(--ns-font);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ns-ink);
  margin: 0 0 4px;
}
body.admin-mode .event-detail-card__meta {
  font-family: var(--ns-mono);
  font-size: 12px;
  color: var(--ns-ink-muted);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
body.admin-mode .event-detail-card__badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
body.admin-mode .event-badge {
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--ns-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  border: 1px solid;
}
body.admin-mode .event-badge--success {
  background: rgba(163, 255, 61, 0.1);
  color: var(--ns-accent);
  border-color: rgba(163, 255, 61, 0.35);
}
body.admin-mode .event-badge--warn {
  background: rgba(255, 180, 90, 0.1);
  color: #ffb45a;
  border-color: rgba(255, 180, 90, 0.35);
}
body.admin-mode .event-badge--ended {
  background: rgba(255, 111, 97, 0.1);
  color: #ff8877;
  border-color: rgba(255, 111, 97, 0.35);
}
body.admin-mode .event-badge--info {
  background: rgba(120, 180, 255, 0.08);
  color: #7ab5ff;
  border-color: rgba(120, 180, 255, 0.3);
}

body.admin-mode .event-detail-card__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--ns-line);
}
@media (max-width: 720px) {
  body.admin-mode .event-detail-card__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 460px) {
  body.admin-mode .event-detail-card__grid { grid-template-columns: 1fr; }
}
body.admin-mode .event-detail-card__grid > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
body.admin-mode .event-detail-card__grid span {
  font-family: var(--ns-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ns-ink-faint);
}
body.admin-mode .event-detail-card__grid strong {
  font-family: var(--ns-font);
  font-size: 14px;
  color: var(--ns-ink);
  font-weight: 600;
  word-break: break-word;
}

/* ── Two Links ── */
body.admin-mode .event-links__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 720px) {
  body.admin-mode .event-links__grid { grid-template-columns: 1fr; }
}
body.admin-mode .event-link {
  padding: 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--ns-line);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body.admin-mode .event-link--kiosk {
  border-color: rgba(163, 255, 61, 0.25);
  background: linear-gradient(180deg, rgba(163, 255, 61, 0.05), rgba(163, 255, 61, 0.01));
}
body.admin-mode .event-link__head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
body.admin-mode .event-link__icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}
body.admin-mode .event-link__head strong {
  display: block;
  font-size: 14px;
  color: var(--ns-ink);
  font-weight: 700;
  margin-bottom: 2px;
}
body.admin-mode .event-link__head span {
  display: block;
  font-family: var(--ns-mono);
  font-size: 10px;
  color: var(--ns-ink-muted);
  letter-spacing: 0.02em;
  line-height: 1.4;
}
body.admin-mode .event-link__url {
  display: block;
  padding: 8px 12px;
  background: #000;
  border: 1px solid var(--ns-line);
  border-radius: 8px;
  font-family: var(--ns-mono);
  font-size: 11px;
  color: var(--ns-ink-dim);
  letter-spacing: 0;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
body.admin-mode .event-link__actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
body.admin-mode .event-link__actions .button {
  padding: 7px 12px !important;
  font-size: 11px !important;
  font-family: var(--ns-mono) !important;
  letter-spacing: 0.04em !important;
  border-radius: 8px !important;
  flex: 1 1 auto;
  min-width: 0;
  text-align: center;
}

/* ── Stats ── */
body.admin-mode .event-stats__empty {
  padding: 20px;
  text-align: center;
  color: var(--ns-ink-muted);
  font-family: var(--ns-mono);
  font-size: 12px;
}
body.admin-mode .event-stats__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
body.admin-mode .event-stats__row--dur {
  padding-top: 14px;
  border-top: 1px solid var(--ns-line);
}
@media (max-width: 560px) {
  body.admin-mode .event-stats__row { grid-template-columns: 1fr 1fr; }
}
body.admin-mode .event-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--ns-line);
  border-radius: 10px;
}
body.admin-mode .event-stat strong {
  font-family: var(--ns-font);
  font-size: 20px;
  font-weight: 700;
  color: var(--ns-ink);
  letter-spacing: -0.01em;
  line-height: 1;
}
body.admin-mode .event-stat span {
  font-family: var(--ns-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ns-ink-muted);
}

body.admin-mode .event-stats__looks {
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--ns-line);
}
body.admin-mode .event-stats__looks-label {
  font-family: var(--ns-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ns-ink-muted);
  margin-bottom: 10px;
}
body.admin-mode .event-stats__look {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) 80px 40px;
  gap: 10px;
  align-items: center;
  padding: 5px 0;
  font-family: var(--ns-font);
  font-size: 13px;
}
body.admin-mode .event-stats__look-rank {
  font-family: var(--ns-mono);
  font-size: 11px;
  color: var(--ns-accent);
  font-weight: 700;
}
body.admin-mode .event-stats__look-name {
  color: var(--ns-ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
body.admin-mode .event-stats__look-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  overflow: hidden;
}
body.admin-mode .event-stats__look-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--ns-accent), #7df27d);
  border-radius: 999px;
}
body.admin-mode .event-stats__look-count {
  font-family: var(--ns-mono);
  font-size: 12px;
  color: var(--ns-ink-dim);
  text-align: right;
}
@media (max-width: 560px) {
  body.admin-mode .event-stats__look {
    grid-template-columns: 22px minmax(0, 1fr) 40px;
  }
  body.admin-mode .event-stats__look-bar { display: none; }
}

/* ── Order ── */
body.admin-mode .event-order__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 560px) {
  body.admin-mode .event-order__grid { grid-template-columns: 1fr; }
}
body.admin-mode .event-order__grid > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--ns-line);
  border-radius: 8px;
}
body.admin-mode .event-order__grid-full { grid-column: 1 / -1; }
body.admin-mode .event-order__grid span {
  font-family: var(--ns-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ns-ink-faint);
}
body.admin-mode .event-order__grid strong,
body.admin-mode .event-order__grid code {
  font-family: var(--ns-mono);
  font-size: 12px;
  color: var(--ns-ink);
  word-break: break-all;
}
body.admin-mode .event-order__grid strong {
  font-family: var(--ns-font);
}
body.admin-mode .event-order__status--paid { color: var(--ns-accent); }
body.admin-mode .event-order__status--pending { color: #ffb45a; }
body.admin-mode .event-order__status--cancelled { color: #ff8877; }

/* ═══════════════════════════════════════════════════
   EVENT SHIPPING & TRACKING CARD (Admin)
   ═══════════════════════════════════════════════════ */
body.admin-mode .event-detail-card--shipping {
  border-color: rgba(163, 255, 61, 0.2);
}
body.admin-mode .event-shipping__addr {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--ns-line);
  border-radius: 10px;
  margin-bottom: 14px;
  font-family: var(--ns-font);
  font-size: 14px;
  color: var(--ns-ink);
}
body.admin-mode .event-shipping__addr strong {
  font-weight: 700;
  margin-bottom: 2px;
}
body.admin-mode .event-shipping__addr span {
  color: var(--ns-ink-dim);
}
body.admin-mode .event-shipping__empty {
  padding: 14px;
  color: var(--ns-ink-muted);
  font-family: var(--ns-mono);
  font-size: 12px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--ns-line);
  border-radius: 10px;
  margin-bottom: 14px;
}
body.admin-mode .event-shipping__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body.admin-mode .event-shipping__form-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
}
@media (max-width: 560px) {
  body.admin-mode .event-shipping__form-row { grid-template-columns: 1fr; }
}
body.admin-mode .event-shipping__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
body.admin-mode .event-shipping__field span {
  font-family: var(--ns-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ns-ink-muted);
}
body.admin-mode .event-shipping__field .ls-input,
body.admin-mode .event-shipping__field .ls-select {
  padding: 10px 12px;
  font-size: 13px;
  font-family: var(--ns-mono);
}
body.admin-mode .event-shipping__notify {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ns-font);
  font-size: 13px;
  color: var(--ns-ink-dim);
  cursor: pointer;
  padding: 6px 0;
}
body.admin-mode .event-shipping__notify input {
  width: 16px; height: 16px;
  accent-color: var(--ns-accent);
  cursor: pointer;
}
body.admin-mode .event-shipping__save {
  align-self: flex-start;
  padding: 10px 18px !important;
  font-size: 13px !important;
  font-family: var(--ns-font) !important;
}
body.admin-mode .event-shipping__status {
  margin-top: 4px;
  padding: 10px 14px;
  background: rgba(163, 255, 61, 0.05);
  border: 1px solid rgba(163, 255, 61, 0.2);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
body.admin-mode .event-shipping__status-line {
  font-family: var(--ns-mono);
  font-size: 11px;
  color: var(--ns-ink-dim);
}
body.admin-mode .event-shipping__track-link {
  font-family: var(--ns-font);
  font-size: 13px;
  color: var(--ns-accent);
  text-decoration: none;
  font-weight: 600;
}
body.admin-mode .event-shipping__track-link:hover { text-decoration: underline; }
