* {
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: #fff7f0;
  margin: 0;
  padding: 1rem;
  color: #333;
  line-height: 1.5;
}

.container {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

header {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 1rem;
}

h1 {
  margin: 0.5em 0;
  color: #d93a00;
}

h2 {
  font-size: 1.2rem;
  color: #d93a00;
  margin-bottom: 0.8rem;
}

form {
  display: grid;
  gap: 1.5rem;
}

section {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 1rem;
  background: white;
}

label {
  display: block;
  margin-bottom: 0.8rem;
}

input[type="radio"],
input[type="checkbox"] {
  margin-right: 0.5rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="time"],
select,
textarea {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

input:invalid:not(:placeholder-shown):not(:focus),
select:invalid:not(:placeholder-shown):not(:focus) {
  border-color: #ff0000;
  background-color: #fff5f5;
}

button {
  background: #d93a00;
  color: white;
  border: none;
  padding: 1rem;
  font-size: 1.1rem;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
}

button:hover {
  background: #b32d00;
}

small {
  color: #777;
  font-size: 0.8rem;
}

.bowl-bild img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.bowl-bild figcaption {
  text-align: center;
  color: #666;
  margin-top: 0.5rem;
  font-size: 0.85rem;
}

@media (max-width: 480px) {
  .container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .bowl-bild {
    order: -1;
  }

  section {
    padding: 0.8rem;
  }
}

/* ── Bestätigungsseite ──────────────────────────────────────────────── */

.bestell-confirmation {
    max-width: 700px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    line-height: 1.6;
}

.bestell-confirmation h1 {
    color: #d93a00;
    text-align: center;
    margin-bottom: 1.5rem;
}

.bestell-confirmation h2 {
    color: #d93a00;
    margin: 1.8rem 0 0.8rem;
    font-size: 1.4rem;
}

.bestell-confirmation p {
    margin: 0.6rem 0;
}

.bestell-confirmation strong {
    display: inline-block;
    width: 140px;
    color: #444;
}

.bestell-confirmation hr {
    margin: 1.8rem 0;
    border: none;
    border-top: 1px solid #eee;
}

.gesamtpreis {
    font-size: 1.6rem;
    text-align: center;
    margin: 1.5rem 0;
    color: #d93a00;
}

.back-link {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background: #d93a00;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
}

.back-link:hover {
    background: #b32d00;
}