/* Grundlayout */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fefcf9;
  color: #3b2f2f;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fffaf3;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.08);
}

/* Überschriften */
h1, h2 {
  color: #7e5e45;
  text-align: center;
}

/* Formularfelder */
label {
  display: block;
  margin-bottom: 1.2rem;
  font-weight: 500;
}
input[type=text],
input[type=number],
input[type=email],
select,
textarea {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  background: #fffdf8;
}

/* Button */
.btn {
  background-color: #a97e5c;
  color: #fff;
  border: none;
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn:hover {
  background-color: #8b654a;
}

/* Gutschein-Vorlagen */
.template-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.template-card {
  position: relative;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}
.template-card img {
  width: 240px;
  height: auto;
  display: block;
  border-radius: 8px;
}
.template-card input[type=radio] {
  position: absolute;
  top: 10px;
  left: 10px;
  transform: scale(1.3);
}
.template-card .caption {
  text-align: center;
  font-weight: bold;
  margin-top: 0.5rem;
}
.template-card input[type=radio]:checked ~ img {
  outline: 3px solid #a97e5c;
}

/* Zusammenfassung */
.summary {
  background: #f6f2e8;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 2rem;
}
.summary p {
  margin: 0.3rem 0;
}
