:root{
  --bg:#070A10;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.04);
  --line: rgba(255,255,255,.10);
  --text:#EEF2FF;
  --muted: rgba(238,242,255,.72);
  --accent:#F6C453;

  --shadow: 0 22px 70px rgba(0,0,0,.55);
  --shadow2: 0 12px 36px rgba(0,0,0,.35);
  --r16:16px; --r22:22px; --r28:28px;
}
/* Öffnungszeiten sollen in einer Zeile bleiben */
.opening-hours,
.topbar__hours,
.header__hours {
  white-space: nowrap;
}
.topbar__inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.topbar__left{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.topbar__right{
  display: flex;
  align-items: center;
}
.pill{
  white-space: nowrap;
}





*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 18% 0%, rgba(246,196,83,.18), transparent 60%),
    radial-gradient(800px 480px at 80% 10%, rgba(120,160,255,.18), transparent 60%),
    linear-gradient(180deg, #070A10, #0A1020);
}

a{ color:inherit; text-decoration:none; }
.container{ width:min(1160px, 92vw); margin:0 auto; }

.topbar{
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar__inner{
  display:flex; justify-content:space-between; align-items:center;
  gap:12px; padding:10px 0;
}
.topbar__left{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; }
.topbar__left a{
  color: rgba(238,242,255,.78);
  font-size:13px;
}
.dot{ opacity:.35; }
.pill{
  font-size:13px;
  color: rgba(238,242,255,.72);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding:7px 12px;
  border-radius:999px;
}

.header{
  position:sticky; top:0; z-index:50;
  background: rgba(7,10,16,.68);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0; gap:12px;
}

.brand{ display:flex; gap:12px; align-items:center; }
.brand__logo{
  height: 60px;
  max-width: 720px;
  display: block;
  object-fit: contain;
}
.brand__text{ display:flex; flex-direction:column; line-height:1.1; }
.brand__name{ font-weight:900; letter-spacing:.2px; }
.brand__tag{ font-size:13px; color:rgba(238,242,255,.65); margin-top:2px; }

.nav{
  display:flex; gap:10px; align-items:center;
}
.nav__link{
  font-weight:800;
  font-size:13px;
  color: rgba(238,242,255,.80);
  padding:10px 12px;
  border-radius:14px;
  border:1px solid transparent;
}
.nav__link:hover{ background: rgba(255,255,255,.05); }
.nav__link.is-active{
  background: rgba(246,196,83,.10);
  border-color: rgba(246,196,83,.22);
  color: rgba(255,239,200,.95);
}
.nav__cta{
  background: rgba(246,196,83,.12);
  border:1px solid rgba(246,196,83,.22);
}
.nav__toggle{
  display:none;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--text);
  padding:10px 12px;
  border-radius:14px;
}

.hero{ padding:46px 0 18px; }
.hero__grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:16px;
  align-items:stretch;
}
.hero__copy{
  border-radius: var(--r28);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
  padding:22px;
}
.hero h1{ margin:0 0 10px; font-size: clamp(30px, 3.6vw, 52px); line-height:1.05; }
.lead{ margin:0 0 16px; color: var(--muted); line-height:1.7; }
.hero__actions{ display:flex; gap:12px; flex-wrap:wrap; margin: 12px 0 14px; }

.badges{ display:flex; gap:10px; flex-wrap:wrap; }
.badge{
  font-size:13px;
  color: rgba(238,242,255,.72);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding:8px 10px;
  border-radius:999px;
}

.hero__panel{
  border-radius: var(--r28);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
  padding:18px;
}
.panel__title{
  margin:4px 0 12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:12px;
  color: rgba(238,242,255,.72);
}

.section{ padding:46px 0; }
.section--alt{
  background: rgba(255,255,255,.02);
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.section__head{
  display:flex; justify-content:space-between; align-items:end;
  gap:16px; margin-bottom:16px;
}
.section__head--left{ justify-content:flex-start; flex-direction:column; align-items:flex-start; }
.section__head h2{ margin:0; font-size:24px; }
.section__head p{ margin:0; color: var(--muted); }

.grid{ display:grid; gap:14px; }
.grid--2{ grid-template-columns: repeat(2, 1fr); }
.grid--3{ grid-template-columns: repeat(3, 1fr); }

.card{
  border-radius: var(--r22);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow2);
  padding:16px;
}
.card h3{ margin:0 0 8px; }
.card p{ margin:0; color: var(--muted); line-height:1.6; }

.pagehead{
  padding:34px 0 10px;
}
.pagehead h1{ margin:0 0 6px; font-size:34px; }
.pagehead p{ margin:0; color: var(--muted); }

.vcard{
  border-radius: var(--r22);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow2);
  overflow:hidden;
}
.vcard__media{
  aspect-ratio: 16/10;
  display:grid; place-items:center;
  background: rgba(255,255,255,.04);
  border-bottom:1px solid rgba(255,255,255,.10);
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  color: rgba(238,242,255,.65);
}
.vcard__body{ padding:14px; display:grid; gap:10px; }
.vcard__body p{ margin:0; color: var(--muted); line-height:1.6; }
.vcard__meta{ display:flex; gap:8px; flex-wrap:wrap; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-weight:900;
  cursor:pointer;
}
.btn--primary{
  background: linear-gradient(135deg, rgba(246,196,83,.98), rgba(255,224,154,.86));
  color:#120E06;
  border-color: rgba(246,196,83,.26);
}
.btn--ghost{ background: transparent; }
.btn--small{ padding:10px 12px; border-radius:14px; font-size:13px; }
.btn--block{ width:100%; }

.form{ display:grid; gap:12px; }
.form--panel{
  margin-top:14px;
  padding:14px;
  border-radius: var(--r22);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}
.form__row{ display:grid; gap:8px; }
.form__row--2{ grid-template-columns: 1fr 1fr; gap:12px; }
label{ font-weight:800; font-size:13px; color: rgba(238,242,255,.74); }

input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--text);
  outline:none;
}
textarea{ resize: vertical; }
input:focus, select:focus, textarea:focus{
  border-color: rgba(246,196,83,.40);
  box-shadow: 0 0 0 4px rgba(246,196,83,.12);
}

.check{ display:flex; gap:10px; align-items:flex-start; color: var(--muted); font-size:13px; }
.check input{ margin-top:3px; accent-color: var(--accent); }

.form__hint{ margin:0; min-height:18px; color: var(--muted); }

.recaptcha-box{
  min-height: 78px; /* Platz reservieren */
}


.contact{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:16px;
  align-items:start;
}
.mini{
  border-radius: var(--r22);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding:12px;
}
.mini__label{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color: rgba(238,242,255,.60);
  font-weight:900;
}
.mini__value{ margin-top:6px; display:inline-block; font-weight:900; color: rgba(238,242,255,.92); }

.map{
  border-radius: var(--r28);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}
.map iframe{ width:100%; height: 520px; border:0; display:block; }

.cta{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
}
.cta--boxed{
  border-radius: var(--r28);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow2);
  padding:18px;
}
.cta h2{ margin:0 0 6px; }
.cta p{ margin:0; color: var(--muted); }

.section__spacer{ height:14px; }

.footer{
  border-top:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.20);
  padding:22px 0;
}
.footer__inner{
  display:flex; justify-content:space-between; align-items:center;
  gap:14px; flex-wrap:wrap;
}
.footer__brand{ font-weight:1000; }
.footer__small{ color: rgba(238,242,255,.55); font-size:13px; margin-top:6px; }
.footer__links{ display:flex; gap:12px; }
.footer__links a{ color: rgba(238,242,255,.70); font-weight:800; font-size:13px; }

@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr; }
  .grid--2{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .map iframe{ height: 340px; }
}

@media (max-width: 720px){
  .nav__toggle{ display:inline-flex; }
  .nav{
    position:absolute;
    right: 4vw;
    top: calc(100% + 10px);
    flex-direction:column;
    align-items:stretch;
    width:min(360px, 92vw);
    padding:12px;
    border-radius: 18px;
    border:1px solid rgba(255,255,255,.10);
    background: rgba(12,16,28,.98);
    display:none;
  }
  .nav.is-open{ display:flex; }
}

@media (max-width: 600px){
  .topbar__inner{
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .topbar__right{
    align-self: flex-end;
  }
}
.linkcard{
  display:flex;
  align-items:center;
  gap:12px;
  padding:16px;
  border-radius: var(--r22);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow2);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.linkcard:hover{
  transform: translateY(-3px);
  background: rgba(255,255,255,.05);
  border-color: rgba(246,196,83,.18);
}

.linkcard__icon{
  width:46px;
  height:46px;
  border-radius: 18px;
  display:grid;
  place-items:center;
  background: rgba(246,196,83,.12);
  border:1px solid rgba(246,196,83,.20);
  font-size:20px;
  flex: 0 0 auto;
}

.linkcard__body{
  display:flex;
  flex-direction:column;
  gap:2px;
  min-width: 0;
}

.linkcard__title{
  font-weight:900;
  letter-spacing:.2px;
}

.linkcard__text{
  color: var(--muted);
  font-size:14px;
  line-height:1.4;
}

.linkcard__arrow{
  margin-left:auto;
  opacity:.8;
  font-weight:900;
}
.category-nav{
  margin-top: 14px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.category-nav__link{
  font-weight:800;
  font-size:13px;
  color: rgba(238,242,255,.80);
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}

.category-nav__link:hover{
  background: rgba(255,255,255,.05);
  border-color: rgba(246,196,83,.18);
}

.pill{
  font-size:12px;
  color: rgba(238,242,255,.72);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding:6px 9px;
  border-radius:999px;
}

.about-wide{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
  padding:18px;
  border-radius: var(--r28);
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(120% 120% at 20% 20%, rgba(246,196,83,.10), transparent 55%),
    rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}

.about-wide__content h3{
  margin:0 0 8px;
  font-size:22px;
}

.about-wide__content p{
  margin:0 0 10px;
  color: var(--muted);
  line-height:1.7;
}

.about-wide__media{
  display:flex;
  align-items:stretch;
}

.about-wide__placeholder{
  flex:1;
  border-radius: 18px;
  border:1px dashed rgba(255,255,255,.25);
  display:grid;
  place-items:center;
  color: rgba(238,242,255,.55);
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,.04),
      rgba(255,255,255,.04) 10px,
      transparent 10px,
      transparent 20px
    );
}
@media (max-width: 980px){
  .about-wide{
    grid-template-columns: 1fr;
  }
}

.grid--4{
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 980px){
  .grid--4{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px){
  .grid--4{
    grid-template-columns: 1fr;
  }
}
@media (max-width: 980px){
  .grid--cards{
    grid-template-columns: repeat(2, 1fr);
  }
  @media (max-width: 1200px){
  .grid--cards{
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px){
  .grid--cards{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 550px){
  .grid--cards{
    grid-template-columns: 1fr;
  }
}


  .grid--cards:has(> :only-child){
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px){
  .grid--cards{
    grid-template-columns: 1fr;
  }
}

/* Mobile Nav */
@media (max-width: 900px){
  .nav{
    position: absolute;
    top: 72px;
    right: 16px;
    left: 16px;

    display: none;
    flex-direction: column;
    gap: 10px;

    padding: 14px;
    border-radius: 18px;
    background: rgba(11,18,32,.95);
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(10px);

    z-index: 2000;
  }

  .nav.is-open{
    display: flex;
  }

  .nav__toggle{
    z-index: 2100;
    position: relative;
  }
}



/* Fahrzeuge Grid responsive */
@media (max-width: 640px){
  .grid--cards{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 78%;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  .grid--cards > *{
    scroll-snap-align: start;
  }

  .grid--cards::-webkit-scrollbar{
    height: 8px;
  }
}
@media (max-width: 640px){
  .grid--cards{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 78%;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  .grid--cards> *{
    scroll-snap-align: start;
  }

  .grid--cards::-webkit-scrollbar{
    height: 8px;
  }
}
@media (max-width: 640px){
  .grid.grid--cards{
    /* WICHTIG: überschreibt 4er-grid */
    grid-template-columns: none !important;

    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 78%;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 14px;
    padding: 0 6px 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .grid.grid--cards > *{
    scroll-snap-align: start;
  }
}


.hero-image{
  position: relative;
  height: 520px;
  width: 100%;
  margin-bottom: 32px;

  background-image: url("images/hero3.png");
  background-repeat: no-repeat;
  background-position: center center;   /* exakt mittig */
  background-size: contain;              /* nichts abschneiden */

  background-color: #070A10;
}

/* Overlay für dunkleren, professionellen Look */
.hero-image::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7,10,16,.35),
    rgba(7,10,16,.65)
  );
}

.hp{
  position:absolute;
  left:-9999px;
  opacity:0;
  height:0;
  width:0;
}

.cookie-banner{
  position: fixed;
  inset: auto 16px 16px 16px;
  z-index: 9999;
  max-width: 560px;
  margin-left: auto;

  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(12,16,28,.96);
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}

.cookie-banner__content{
  padding: 16px;
  display: grid;
  gap: 12px;
}

.cookie-banner p{
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.cookie-banner a{
  color: var(--accent);
  font-weight: 800;
}

.cookie-banner__actions{
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}


.map-placeholder{
  height: 100%;
  min-height: 520px; /* passt zu deiner Map-Höhe */
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 18px;
  text-align: center;

  border-radius: var(--r28);
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,.04),
      rgba(255,255,255,.04) 12px,
      transparent 12px,
      transparent 24px
    );
}

.map-small{
  margin: 0;
  max-width: 46ch;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.map-small a{
  color: var(--accent);
  font-weight: 800;
}

/* Grid für viele Karten (responsive) */
.grid--cards{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}


/* Wenn nur 1 Karte im Grid ist: nicht über die ganze Breite ziehen */
.grid--cards:has(> :only-child){
  grid-template-columns: repeat(4, 1fr); /* bleibt 4-spaltig */
}

.grid--cards:has(> :only-child) > .vcard{
  grid-column: span 1;     /* nur 1 Spalte breit */
  max-width: none;
}

.vcard{
  display: flex;
  flex-direction: column;
  height: 100%;
}

.vcard__body{
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}


.vcard__media{
  aspect-ratio: 16 / 10;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.03);
}

.vcard__media img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* kleine Info-Liste */
.specs{
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.specs li{
  display: grid;
  grid-template-columns: 1fr auto; /* links flexibel, rechts passt sich an */
  align-items: baseline;
  column-gap: 12px;

  font-size: 13px;
  color: rgba(238,242,255,.72);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-bottom: 6px;
}

.specs li span:first-child{
  white-space: nowrap;        /* Labels bleiben in einer Zeile */
  overflow: hidden;
  text-overflow: ellipsis;     /* falls zu lang, wird's sauber gekürzt */
}

.specs li span:last-child{
  text-align: right;
  font-weight: 800;
  color: rgba(238,242,255,.92);
  white-space: nowrap;         /* Werte nicht umbrechen */
}

.price-row{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top: 4px;
}

.vcard__body .btn{
  margin-top: auto;
}


#backToTop{
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 999;

  width: 52px;
  height: 52px;

  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  background: rgba(10,14,24,.85);
  backdrop-filter: blur(10px);

  color: #d4af37; /* Gold */

  box-shadow:
    0 12px 35px rgba(0,0,0,.5),
    inset 0 0 0 1px rgba(255,255,255,.05);

  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all .35s ease;
}

/* Sichtbar beim Scrollen */
#backToTop.show{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hover Effekt */
#backToTop:hover{
  transform: translateY(-4px);
  background: linear-gradient(135deg, #d4af37, #b88a1f);
  color: #111;
}

/* SVG smooth */
#backToTop svg{
  transition: transform .3s ease;
}

#backToTop:hover svg{
  transform: translateY(-2px);
}


/* ===== Legal / Prose Typography ===== */
.prose{
  max-width: 900px;
  margin: 0 auto;
}

.prose h2{
  margin: 26px 0 10px;
  font-size: 22px;
  letter-spacing: .2px;
}

.prose h3{
  margin: 18px 0 8px;
  font-size: 18px;
}

.prose h4{
  margin: 14px 0 6px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(238,242,255,.80);
}

.prose p{
  margin: 0 0 12px;
  line-height: 1.75;
  color: rgba(238,242,255,.78);
}

.prose a{
  color: rgba(246,196,83,.95);
  font-weight: 800;
  text-decoration: none;
}

.prose a:hover{
  text-decoration: underline;
}

.prose ul{
  margin: 0 0 14px;
  padding-left: 18px;
  color: rgba(238,242,255,.78);
}

.prose li{
  margin: 6px 0;
  line-height: 1.65;
}

.prose hr{
  border: none;
  height: 1px;
  background: rgba(255,255,255,.10);
  margin: 18px 0;
}

.legal-figure{
  margin: 14px 0 18px;
  padding: 14px;
  border-radius: var(--r28);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}

.legal-figure img{
  width: 220px;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.legal-figure figcaption{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(238,242,255,.60);
}


.legal-card{
  padding: 16px;
  border-radius: var(--r28);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow2);
  margin: 14px 0;
}

.legal-card h2{
  margin-top: 0;
}

.legal-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.legal-list li{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.legal-list li span:last-child{
  font-weight: 800;
  text-align: right;
}



/* ===== Cookie Banner ===== */
.cookie{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.cookie__box{
  width: 100%;
  max-width: 640px;
  padding: 28px;
  border-radius: 28px;
  background: #0b1220;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 40px 80px rgba(0,0,0,.6);
}

.cookie__content h3{
  margin-top: 0;
  font-size: 20px;
}

.cookie__content p{
  font-size: 14px;
  color: rgba(255,255,255,.7);
}

.cookie__option{
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
}

.cookie__option input{
  margin: 4px 0 0 0;
  width: 16px;
  height: 16px;
  accent-color: #d4af37; /* Gold passend zu deinem Design */
}

.cookie__option small{
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.4;
}

.cookie__option span{
  display: block;
}

.cookie__option strong{
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
}

.cookie__option span span,
.cookie__option span br + text{
  font-size: 13px;
  color: rgba(255,255,255,.65);
}


.cookie__actions{
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
