.container {
  background: white !important;
}

.pizza-card {
  box-shadow: var(--bs-box-shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.pizza-card:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

h1,
h2 {
  font-weight: bold;
  margin-bottom: 1rem;
}

.keyvisual {
  width: 100%;
  height: 200px;
  background-image: url('../images/keyvisual.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

/* Text im Keyvisual */
.keyvisual-title {
  color: white;
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  margin: 0;
  z-index: 2;
}

.form-check-input:checked {
  background-color: #000;
  border-color: #000;
}

#card {
  height: 120px;
}

#submitOrder {
  transition: all 0.3s ease;
}

.keyvisual-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  margin: 0.4rem 0 0;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.95),
    0 0 14px rgba(0, 0, 0, 0.9);
}