/* Öffentliche Eisstock-Buchungsseite */
.kopf { background: linear-gradient(160deg, var(--gruen-tief), var(--gruen)); padding: 1.75rem 1rem; }
.kopf-inner { max-width: 720px; margin: 0 auto; }
.marke { display: block; color: var(--gold); font-size: 1.5rem; font-weight: 700; text-decoration: none; }
.untertitel { color: var(--creme); font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; }

main { max-width: 720px; margin: 0 auto; padding: 1.5rem 1rem 3rem; }
.intro h1 { color: var(--gruen); margin-bottom: .25rem; }
.intro p { color: var(--text-hell); }

.block {
  background: #fff; border: 1px solid var(--creme-dunkel);
  border-radius: 12px; padding: 1.25rem 1.4rem; margin-bottom: 1.25rem;
}
.block h2 { margin: 0 0 .75rem; color: var(--gruen); font-size: 1.1rem; }
.hinweis { color: var(--text-hell); font-size: .88rem; }
.lade { color: var(--text-hell); }

.datumwahl { display: flex; gap: .5rem; align-items: center; margin-bottom: 1rem; }
.datumwahl input {
  padding: .55rem .7rem; border: 1px solid var(--creme-dunkel); border-radius: 8px; font-size: 1rem;
}
.datumwahl button {
  background: var(--creme); border: 1px solid var(--creme-dunkel); border-radius: 8px;
  padding: .5rem .8rem; cursor: pointer; font-size: 1rem;
}
.datumwahl button:hover { background: var(--creme-dunkel); }

.slotliste { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: .6rem; }
.slot {
  border: 2px solid var(--creme-dunkel); border-radius: 10px;
  padding: .6rem .7rem; cursor: pointer; text-align: center; background: #fff;
  font-size: .9rem; transition: border-color .12s;
}
.slot:hover { border-color: var(--gruen-hell); }
.slot.gewaehlt { border-color: var(--gold); background: #fffbf0; }
.slot .zeit { font-weight: 700; color: var(--gruen); }
.slot .detail { color: var(--text-hell); font-size: .78rem; }

form .zeile { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
@media (max-width: 560px) { form .zeile { grid-template-columns: 1fr; } }
form label { display: block; margin-bottom: .9rem; font-size: .85rem; color: var(--text-hell); }
form input, form textarea {
  display: block; width: 100%; margin-top: .3rem;
  padding: .6rem .7rem; border: 1px solid var(--creme-dunkel);
  border-radius: 8px; font-size: 1rem; font-family: inherit;
}
form input:focus, form textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.hp { position: absolute; left: -9999px; height: 0; opacity: 0; }

.cta {
  background: var(--gruen); color: var(--gold-warm); border: 0; border-radius: 10px;
  padding: .8rem 1.6rem; font-size: 1rem; font-weight: 700; cursor: pointer;
}
.cta:hover { background: var(--gruen-hell); }
.cta:disabled { opacity: .5; }
.fehler { color: #b4432f; font-size: .9rem; }

.erfolg { border-color: var(--gold); background: #fffbf0; }
.erfolg h2 { color: var(--gruen); margin-top: 0; }

/* Stundentabelle: Zeile je Uhrzeit, Spalte je Bahn, Spalte „beide Bahnen" */
.slotliste { display: block; }
.st-kopf, .st-zeile {
  display: grid; grid-template-columns: 6.2rem repeat(var(--spalten, 2), 1fr); gap: .45rem; align-items: stretch;
}
.st-kopf { font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-hell); padding: 0 0 .35rem; }
.st-kopf span:not(:first-child) { text-align: center; }
.st-zeile { margin-bottom: .45rem; }
.st-zeit { display: flex; align-items: center; font-weight: 700; color: var(--gruen); font-variant-numeric: tabular-nums; }
.st-zelle {
  border: 2px solid var(--creme-dunkel); border-radius: 10px; background: #fff; cursor: pointer;
  padding: .55rem .4rem; font: inherit; font-size: .92rem; color: var(--text); text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .05rem; transition: border-color .12s;
}
.st-zelle:hover { border-color: var(--gruen-hell); }
.st-zelle.gewaehlt { border-color: var(--gold); background: #fffbf0; font-weight: 700; }
.st-zelle.exklusiv { border-style: dashed; color: var(--gruen); }
.st-zelle.exklusiv small { font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); }
.st-zelle.exklusiv.gewaehlt { border-style: solid; background: var(--gruen); color: var(--gold-warm); }
.st-zelle.exklusiv.gewaehlt small { color: var(--creme); }
.st-zeile.exklusiv-aktiv .st-zelle:not(.exklusiv) { opacity: .55; }
.st-zelle.belegt { cursor: default; color: var(--text-hell); border-color: transparent; background: var(--creme); font-size: .8rem; }
.st-hinweis { margin: .6rem 0 0; }
@media (max-width: 560px) { .st-kopf, .st-zeile { grid-template-columns: 4.6rem repeat(var(--spalten, 2), 1fr); gap: .3rem; } .st-zelle { padding: .5rem .2rem; font-size: .85rem; } }
.verzehr-intro { margin: 0 0 .5rem; font-size: .92rem; color: var(--text); }

/* Reservierungsformular: Auswahlgruppen, Zusammenfassung, Bedingungen, Storno */
.tage-hinweis { color: var(--text-hell); font-size: .85rem; margin-left: .25rem; }
.link { background: none; border: 0; color: var(--gruen); font-weight: 600; text-decoration: underline; cursor: pointer; font-size: inherit; padding: 0; }
fieldset.wahl { border: 0; padding: 0; margin: 0 0 1rem; display: grid; gap: .5rem; }
fieldset.wahl legend { font-size: .85rem; color: var(--text-hell); margin-bottom: .4rem; }
label.radio {
  display: flex; align-items: flex-start; gap: .6rem; margin: 0;
  border: 2px solid var(--creme-dunkel); border-radius: 10px; padding: .6rem .8rem; cursor: pointer; color: var(--text);
}
label.radio:has(input:checked) { border-color: var(--gold); background: #fffbf0; }
label.radio input { width: auto; margin: .25rem 0 0; }
label.radio span { display: block; font-size: .95rem; }
label.radio small { display: block; color: var(--text-hell); font-size: .8rem; }
.feldhinweis { display: block; color: var(--text-hell); font-size: .78rem; margin-top: .25rem; }
label.plzort .plzort-felder { display: grid; grid-template-columns: 1fr 2fr; gap: .5rem; }
label.plzort .plzort-felder input { margin-top: .3rem; }
.zusammenfassung {
  border: 1px solid var(--creme-dunkel); border-radius: 10px; padding: .7rem .9rem; margin: .25rem 0 1rem;
  display: grid; gap: .3rem; font-size: .95rem;
}
.zusammenfassung div { display: flex; justify-content: space-between; gap: 1rem; }
.zusammenfassung .summe { border-top: 1px solid var(--creme-dunkel); padding-top: .4rem; font-size: 1.05rem; color: var(--gruen); }
.zusammenfassung .klein { font-size: .85rem; color: var(--text-hell); }
.bedingungen { margin: 0 0 1rem; }
.bedingungen label.check { display: flex; gap: .55rem; align-items: flex-start; color: var(--text); font-size: .92rem; margin-bottom: .5rem; }
.bedingungen label.check input { width: auto; margin: .2rem 0 0; }
.bedingungen ol { margin: 0; padding-left: 1.3rem; font-size: .82rem; color: var(--text-hell); line-height: 1.45; }
.bedingungen li { margin-bottom: .3rem; }
.bankbox {
  display: grid; gap: .35rem; background: #fff; border: 1px solid var(--gold); border-radius: 10px;
  padding: .8rem 1rem; margin: .75rem 0; font-size: .95rem;
}
.bankbox div { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.bankbox span { color: var(--text-hell); }
.bankbox strong { font-variant-numeric: tabular-nums; }
.storno ul { padding-left: 1.2rem; }
.warn { color: var(--rot); font-size: .9rem; }
.cta.gefahr { background: var(--rot); color: #fff; }
.cta-link { display: inline-block; color: var(--gruen); font-weight: 600; }
.fuss { text-align: center; color: var(--text-hell); font-size: .8rem; padding: 1.5rem 1rem 2.5rem; }
.fuss a { color: var(--text-hell); }
