@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400;1,500&family=Inter:wght@300;400;500&display=swap');

/* ── RESET ──────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }

/* ── TOKENS ─────────────────────────── */
:root {
  --black:   #0F0F0F;
  --dark:    #1a1a1a;
  --red:     #B8111F;
  --red-h:   #8A0D17;
  --cream:   #F5F0E8;
  --cream2:  #EDE7DA;
  --ink:     #1A1208;
  --muted:   #6b5248;
  --bdr:     rgba(26,18,8,.12);
  --display: 'Playfair Display', Georgia, serif;
  --body:    'Inter', system-ui, sans-serif;
  --nh:      62px;
}

/* ── SITE HEADER ────────────────────── */
.site-header {
  position: sticky;
  top: 0; z-index: 200;
  background: #1C0A05;
}
.site-header::before {
  content: '';
  display: block;
  height: 10px;
  background: linear-gradient(to right, #009246 33.33%, #F0EAE0 33.33%, #F0EAE0 66.66%, #CE2B37 66.66%);
}
.header-row {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
}
.site-logo {
  display: flex; flex-direction: column; gap: .2rem;
}
.site-logo img { height: 42px; width: auto; }
.site-logo__tagline {
  font-size: .55rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(200,185,154,.42);
}

/* burger — öffnet Overlay */
.burger {
  display: flex; flex-direction: column; gap: 5px; padding: 6px;
  background: none; border: none; cursor: pointer;
}
.burger span {
  display: block; width: 22px; height: 1.5px;
  background: rgba(200,192,176,.65);
  transition: transform .2s, opacity .2s;
  border-radius: 1px;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Tab-Nav — IMMER SICHTBAR, scrollbar auf Mobile */
.tab-nav {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  background: #150703;
  border-bottom: 1px solid rgba(184,17,31,.3);
}
.tab-nav::-webkit-scrollbar { display: none; }
.tab-nav a {
  flex-shrink: 0;
  display: flex; align-items: center;
  padding: .7rem 1rem;
  font-size: .68rem; font-weight: 500;
  letter-spacing: .09em; text-transform: uppercase;
  color: rgba(200,192,176,.48);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color .15s, border-color .15s;
}
.tab-nav a:hover  { color: rgba(200,192,176,.85); }
.tab-nav a.active { color: #F0EAE0; border-bottom-color: var(--red); }

/* Burger-Overlay (optional, erscheint über allem) */
.nav-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 300;
  background: rgba(10,4,2,.96);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .25rem;
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  font-family: var(--display);
  font-size: 1.8rem; font-style: italic;
  color: rgba(240,234,224,.65);
  padding: .6rem 1.5rem;
  transition: color .15s;
}
.nav-overlay a:hover { color: #F0EAE0; }
.nav-overlay a.active { color: #F0EAE0; }
.nav-overlay__close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: none; border: none; cursor: pointer;
  color: rgba(200,192,176,.5); font-size: 1.5rem;
  padding: .5rem;
}

/* ── HERO ────────────────────────────── */
.hero {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #1a0f08 center/cover no-repeat;
  overflow: hidden;
}
/* Dunkles Gradient-Overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.45) 0%,
    rgba(0,0,0,.2) 45%,
    rgba(0,0,0,.72) 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* Spacer für Abstand oben */
.hero__spacer { flex: 1; }

/* Titel unten links */
.hero__inner {
  position: relative; z-index: 1;
  padding: 1.5rem 1.5rem 2rem;
}
.hero__title {
  font-family: var(--display);
  font-size: 2.8rem; font-style: italic; font-weight: 400;
  line-height: 1.05; color: #F0EAE0; margin-bottom: .55rem;
}
.hero__sub {
  font-size: .7rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(240,234,224,.5);
}

@media (min-width: 600px) {
  .hero { min-height: 480px; }
  .hero__title { font-size: 4rem; }
}

/* ── INTRO LAYOUT ────────────────────── */
.intro-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
  margin-bottom: 1rem;
}
.intro-text { display: flex; flex-direction: column; gap: .5rem; }

/* ── IMAGE BOXES ─────────────────────── */
.ph {
  background: #C8B99A center/cover no-repeat;
  border-radius: 4px;
  flex-shrink: 0;
}
.ph--lg {
  aspect-ratio: 1 / 1;
  width: 100%;
}
.ph--lg svg { width: 32px; height: 32px; }

/* 3 kleine Platzhalter */
.intro-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.ph--sm {
  aspect-ratio: 1 / 1;
  width: 100%;
}
.ph--sm svg { width: 20px; height: 20px; }

/* ── FULL-WIDTH BUTTON ───────────────── */
.btn-full {
  width: 100%;
  justify-content: center;
  display: flex;
}

/* ── MITTAG TEASER ──────────────────── */
.mittag-teaser {
  padding: 3.5rem 0;
}
.mittag-teaser__inner {
  display: flex;
  align-items: center;
}
.mittag-teaser__text {
  max-width: 440px;
}

/* ── INFO STRIP ─────────────────────── */
.info-strip {
  background: var(--dark);
  padding: 1.1rem 0;
}
.info-strip__row {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.info-strip__row span {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .85rem;
  color: rgba(200,192,176,.6);
}
.info-strip__row svg {
  width: 15px; height: 15px; flex-shrink: 0;
  stroke: var(--red); fill: none;
  stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
}
@media (min-width: 600px) {
  .info-strip__row { flex-direction: row; gap: 2.5rem; }
}

/* ── PAGE HERO (interior, shorter) ── */
.page-hero {
  position: relative;
  min-height: 260px;
  display: flex; align-items: flex-end;
  background: #120c06 center/cover no-repeat;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.25) 100%);
}
.page-hero__inner {
  position: relative; z-index: 1;
  padding: 2rem 1.5rem;
}
.page-hero__label {
  font-size: .62rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(240,234,224,.85); margin-bottom: .4rem;
  display: inline-block;
  background: rgba(184,17,31,.55);
  padding: .25rem .7rem;
  border-radius: 2px;
}
.page-hero__title {
  font-family: var(--display);
  font-size: 2.2rem; font-style: italic; font-weight: 400;
  color: #F0EAE0; line-height: 1.05;
}

/* ── BUTTONS ────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--body); font-size: .72rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .85rem 1.75rem; border-radius: 2px;
  border: none; cursor: pointer;
  transition: background .18s, color .18s, border-color .18s;
}
.btn-red     { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-h); }
.btn-outline { background: transparent; color: #F0EAE0; border: 1px solid rgba(240,234,224,.35); }
.btn-outline:hover { border-color: rgba(240,234,224,.75); color: #fff; }
.btn-dark    { background: transparent; color: var(--ink); border: 1px solid var(--bdr); }
.btn-dark:hover { border-color: var(--red); color: var(--red); }

/* ── CONTAINER / SECTION ────────────── */
.container {
  width: 100%; max-width: 1100px;
  margin: 0 auto;
  padding-left: 1.5rem; padding-right: 1.5rem;
}
.section    { padding: 3.5rem 0; }
.section-sm { padding: 2rem 0; }
.bg-cream  { background: var(--cream); }
.bg-cream2 { background: var(--cream2); }
.bg-dark   { background: var(--dark); }
.bg-black  { background: var(--black); }
.bg-white  { background: #fff; }

.section-label {
  font-size: .62rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--red); margin-bottom: .5rem;
}
.section-title {
  font-family: var(--display);
  font-size: 2rem; font-style: italic; font-weight: 400;
  line-height: 1.1; color: var(--ink); margin-bottom: .3rem;
}
.section-title-de {
  font-family: var(--body);
  font-size: .75rem; font-weight: 400;
  letter-spacing: .06em; color: var(--muted);
  margin-bottom: .9rem;
}
.rule {
  width: 36px; height: 2px; background: var(--red);
  border-radius: 1px; margin-bottom: 1.25rem;
}
.body-text { font-size: .9rem; line-height: 1.8; color: var(--muted); }

/* on dark backgrounds */
.on-dark .section-title    { color: #F0EAE0; }
.on-dark .section-title-de { color: rgba(240,234,224,.42); }
.on-dark .section-label    { color: rgba(184,17,31,.8); }
.on-dark .body-text        { color: rgba(240,234,224,.58); }
.on-dark .rule             { background: rgba(184,17,31,.7); }

/* ── GRID HELPERS ───────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1rem; }

@media (min-width: 600px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .hero__title { font-size: 4.2rem; }
  .page-hero { min-height: 320px; }
  .page-hero__title { font-size: 2.8rem; }
  .intro-grid { align-items: center !important; }
}
@media (min-width: 1024px) {
  .hero__title { font-size: 5.5rem; }
  .hero__inner { padding: 3.5rem; }
  .page-hero__title { font-size: 3.4rem; }
}

/* ── FEATURE STRIP (3 Bild-Karten) ── */
.feature-strip { display: grid; grid-template-columns: 1fr; }
.feature-block {
  position: relative; min-height: 220px;
  display: flex; align-items: flex-end;
  background: #120c06 center/cover no-repeat; overflow: hidden;
}
.feature-block::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.08) 100%);
}
.feature-block__body {
  position: relative; z-index: 1; padding: 1.25rem; color: #fff;
}
.feature-block__tag {
  font-size: .58rem; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: .3rem;
}
.feature-block__title {
  font-family: var(--display);
  font-size: 1.5rem; font-style: italic; line-height: 1.05;
}
.feature-block__link {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .68rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-top: .5rem;
  transition: color .15s;
}
.feature-block__link:hover { color: #fff; }
.feature-block__link svg { width: 14px; height: 14px; }

@media (min-width: 640px) {
  .feature-strip { grid-template-columns: repeat(3, 1fr); }
  .feature-block { min-height: 300px; }
}

/* ── PHOTO GRID ─────────────────────── */
.photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.photo-grid img { width: 100%; height: 160px; object-fit: cover; display: block; }
.photo-grid .wide { grid-column: 1 / -1; }
.photo-grid .wide img { height: 220px; }

@media (min-width: 600px) {
  .photo-grid { grid-template-columns: repeat(3, 1fr); }
  .photo-grid .wide { grid-column: span 1; }
  .photo-grid img, .photo-grid .wide img { height: 200px; }
}

/* ── DOWNLOAD CARD ──────────────────── */
.dl-card {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: .85rem;
  padding: 2rem 1.5rem; background: #fff;
  border: 1px solid var(--bdr); border-radius: 3px;
  color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.dl-card:hover {
  border-color: var(--red);
  box-shadow: 0 6px 24px rgba(184,17,31,.09);
}
.dl-card__icon {
  width: 58px; height: 58px; flex-shrink: 0;
  background: rgba(184,17,31,.07); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.dl-card__icon svg { width: 24px; height: 24px; stroke: var(--red); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.dl-card__meta {
  font-size: .6rem; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted); margin-bottom: .1rem;
}
.dl-card__name {
  font-family: var(--display); font-size: 1.15rem;
  font-style: italic; color: var(--ink);
}

/* dl-card Cover-Variante (Bild-Hintergrund) */
.dl-card--cover {
  position: relative;
  background: #1a0f08 center/cover no-repeat;
  border: none;
  min-height: 260px;
  padding: 0;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 4px 20px rgba(0,0,0,.18);
}
.dl-card--cover::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,4,0,.92) 0%, rgba(10,4,0,.45) 55%, rgba(10,4,0,.2) 100%);
  transition: background .35s;
}
.dl-card--cover:hover::before {
  background: linear-gradient(to top, rgba(10,4,0,.96) 0%, rgba(10,4,0,.6) 55%, rgba(10,4,0,.3) 100%);
}
.dl-card--cover:hover {
  box-shadow: 0 8px 36px rgba(0,0,0,.32);
  transform: translateY(-2px);
  transition: transform .25s, box-shadow .25s;
}
.dl-card__cover-body {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  height: 100%; min-height: 260px;
  padding: 1.75rem 1.5rem;
  gap: .35rem;
}
.dl-card__besteck {
  width: 28px; height: 28px;
  color: rgba(200,185,154,.6);
  margin-bottom: .5rem;
}
.dl-card--cover .dl-card__meta {
  font-size: .6rem; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(200,185,154,.55);
}
.dl-card--cover .dl-card__name {
  font-family: var(--display); font-style: italic;
  font-size: 1.65rem; line-height: 1.15; color: #F0EAE0;
}
.dl-card__cta {
  font-size: .68rem; letter-spacing: .1em;
  text-transform: uppercase; color: #CE5C60;
  margin-top: .4rem;
}

/* ── KARTE DIVIDER ──────────────────── */
.karte-divider {
  display: flex; align-items: center; gap: 1rem;
  margin: 2.75rem 0 1.5rem;
}
.karte-divider::before,
.karte-divider::after {
  content: ''; flex: 1;
  height: 1px; background: var(--bdr);
}
.karte-divider span {
  font-family: var(--display); font-style: italic;
  font-size: 1rem; color: var(--muted); white-space: nowrap;
}

/* ── CATEGORY CARD ──────────────────── */
.cat-card {
  position: relative; overflow: hidden; border-radius: 3px;
  background: #1a0f08;
}
.cat-card img {
  width: 100%; height: 240px; object-fit: cover;
  opacity: .88; transition: transform .45s ease, opacity .45s ease;
  display: block;
}
.cat-card:hover img { transform: scale(1.05); opacity: .72; }
.cat-card__body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(10,4,0,.9) 0%, rgba(10,4,0,.45) 65%, transparent 100%);
}
.cat-card__title {
  font-family: var(--display); font-size: 1.2rem;
  font-style: italic; color: #F0EAE0; margin-bottom: .25rem;
}
.cat-card__desc { font-size: .78rem; color: rgba(240,234,224,.65); line-height: 1.6; }

/* ── CONTACT ROWS ───────────────────── */
.contact-row {
  display: flex; gap: .9rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--bdr);
  align-items: flex-start;
}
.contact-row:last-child { border-bottom: none; }
.contact-row__icon { width: 18px; height: 18px; flex-shrink: 0; color: var(--red); margin-top: 2px; }
.contact-row__icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.contact-row__label { font-size: .62rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .2rem; }
.contact-row__val   { font-size: .92rem; color: var(--ink); line-height: 1.55; }
.contact-row__val a { color: var(--ink); }
.contact-row__val a:hover { color: var(--red); }

/* ── MAP ────────────────────────────── */
.map-wrap { border-radius: 3px; overflow: hidden;}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── HOURS ROWS ─────────────────────── */
.hours-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: .65rem 0; border-bottom: 1px solid var(--bdr);
  font-size: .9rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row__day  { color: var(--muted); font-size: .85rem; }
.hours-row__time { font-weight: 500; color: var(--ink); }
.hours-row.closed .hours-row__time { color: rgba(26,18,8,.35); font-weight: 400; }

/* ── VOUCHER CARD ───────────────────── */
.voucher-card {
  background: var(--black);
  border-radius: 6px; padding: 2.5rem;
  text-align: center; position: relative; overflow: hidden;
}
.voucher-card::before {
  content: ''; position: absolute; inset: 10px;
  border: 1.5px dashed rgba(184,17,31,.35); border-radius: 4px;
}
.voucher-card__title {
  font-family: var(--display);
  font-size: 1.9rem; font-style: italic;
  color: #F0EAE0; margin-bottom: .35rem;
}
.voucher-card__sub {
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(200,192,176,.4); margin-bottom: 1.25rem;
}
.voucher-card__text {
  font-size: .88rem; line-height: 1.8;
  color: rgba(200,192,176,.55); margin-bottom: 2rem;
  max-width: 440px; margin-left: auto; margin-right: auto;
}

/* ── SITE FOOTER ────────────────────── */
.site-footer {
  background:
    linear-gradient(rgba(12,5,1,.82), rgba(12,5,1,.90)),
    url('../img/DolceStart.jpg')
    center/cover no-repeat;
  padding: 0 0 1.5rem;
  color: rgba(255,255,255,.75);
}
.site-footer::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(to right, #009246 33.33%, #F0EAE0 33.33%, #F0EAE0 66.66%, #CE2B37 66.66%);
}

/* Footer-Italia: Vespa + Zitat */
.footer-top {
  text-align: center;
  padding: 2rem 1.25rem 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
  margin-bottom: 2.5rem;
}
.footer-quote {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  margin-bottom: .3rem;
  letter-spacing: .01em;
}
.footer-quote-sub {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
}
.footer-logo-img {
  height: 34px; width: auto; margin-bottom: .65rem;
  mix-blend-mode: lighten; /* schwarzer Logo-Hintergrund wird transparent */
}
.footer-tagline  { font-size: .8rem; line-height: 1.75; color: rgba(255,255,255,.55); }
.footer-col-title {
  font-size: .62rem; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: .8rem;
}
.footer-col a {
  display: block; font-size: .84rem;
  color: rgba(255,255,255,.7); padding: .25rem 0;
  transition: color .15s;
}
.footer-col a:hover { color: #fff; }
.footer-info-row {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .82rem; color: rgba(255,255,255,.7);
  padding: .3rem 0; line-height: 1.55;
}
.footer-info-row svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; stroke: #CE5C60; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.footer-bar {
  margin-top: 2.5rem; padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.18);
  display: flex; flex-wrap: wrap; gap: .4rem 1.5rem;
  font-size: .7rem; color: rgba(255,255,255,.4);
}
.footer-bar a { color: rgba(255,255,255,.4); transition: color .15s; }
.footer-bar a:hover { color: #fff; }

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1.8fr 1fr 1fr; }
}

/* ── ORDER FORM ─────────────────────── */
.order-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-field  { display: flex; flex-direction: column; gap: .4rem; }
.form-label  {
  font-size: .72rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted);
}
.form-input {
  width: 100%; padding: .85rem 1rem;
  border: 1px solid var(--bdr); border-radius: 3px;
  background: #fff; font-family: var(--body);
  font-size: .95rem; color: var(--ink);
  outline: none; transition: border-color .2s;
  -webkit-appearance: none;
}
.form-input:focus { border-color: var(--red); }
.form-textarea { resize: vertical; min-height: 90px; }

/* Wert-Auswahl */
.value-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .5rem;
}
.value-btn {
  display: flex; align-items: center; justify-content: center;
  padding: .65rem .25rem;
  border: 1px solid var(--bdr); border-radius: 3px;
  font-size: .9rem; font-weight: 500; color: var(--ink);
  cursor: pointer; background: #fff;
  transition: border-color .15s, background .15s, color .15s;
  user-select: none;
}
.value-btn input[type="radio"] { display: none; }
.value-btn:has(input:checked) {
  background: var(--red); color: #fff; border-color: var(--red);
}
.value-btn:hover { border-color: var(--red); }

/* Datenschutz-Checkbox */
.form-check {
  display: flex; align-items: flex-start; gap: .65rem;
}
.form-check input[type="checkbox"] {
  margin-top: .25rem; accent-color: var(--red);
  flex-shrink: 0; width: 16px; height: 16px;
}
.form-check label {
  font-size: .82rem; color: var(--muted); line-height: 1.6;
}
.form-check a { color: var(--red); text-decoration: underline; }

.form-hint {
  font-size: .72rem; color: var(--muted);
  text-align: center; margin-top: .25rem;
}
