.elementor-2252 .elementor-element.elementor-element-9f228ba{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2252 .elementor-element.elementor-element-9f228ba:not(.elementor-motion-effects-element-type-background), .elementor-2252 .elementor-element.elementor-element-9f228ba > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#0F4336;background-image:url("https://zumwattkorn.de/wp-content/uploads/2025/10/christmas-9870224-scaled.jpg");}.elementor-2252 .elementor-element.elementor-element-373d5cb > .elementor-widget-container{border-radius:8px 8px 8px 8px;}/* Start custom CSS for html, class: .elementor-element-373d5cb *//* Hintergrund-Container (z. B. WordPress-Sektion mit Hintergrundbild) */
.weihnachtsbestellung {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 6em 1.5em;
  display: flex;
  justify-content: center;
}

/* Halbtransparenter Formularblock */
.bestellformular {
  background: rgba(15, 67, 54, 0.88);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  padding: 2.5em;
  max-width: 800px;
  width: 100%;
  color: #fff;
  box-shadow: 0 0 25px rgba(0,0,0,0.3);
}

/* Überschriften */
.bestellformular h2 {
  text-align: center;
  color: #C6A360;
  font-size: 2em;
  margin-bottom: 1em;
  font-family: "Source Sans Pro", sans-serif;
}

.bestellformular h3 {
  border-bottom: 1px solid rgba(198,163,96,0.4);
  padding-bottom: 4px;
  color: #C6A360;
  margin-top: 1.5em;
  font-size: 1.2em;
  
}

/* Eingabefelder */
.bestellformular input[type="text"],
.bestellformular input[type="email"],
.bestellformular input[type="tel"],
.bestellformular input[type="date"],
.bestellformular input[type="time"],
.bestellformular input[type="number"] {
  width: 100%;
  padding: 8px 10px;
  margin-top: 5px;
  margin-bottom: 10px;
  border-radius: 6px;
  border: 1px solid rgba(198,163,96,0.3);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 0.95em;
}

.bestellformular input:focus {
  border-color: #C6A360;
  background: rgba(255,255,255,0.1);
  outline: none;
}

/* Gerichtzeilen */
.gericht {
  display: grid;
  grid-template-columns: 1fr 80px 60px; /* Name | Preis | Menge */
  align-items: center;
  gap: 10px;
  margin: 6px 0;
  border-bottom: 1px dotted rgba(255,255,255,0.15);
  padding-bottom: 6px;
}

.gericht label {
  color: #fff;
  font-size: 0.98em;
  font-weight: 400;
  line-height: 1.3;
}

.price {
  color: #C6A360;
  font-weight: 500;
  font-size: 0.95em;
}

.gericht input[type="number"] {
  width: 55px;
  padding: 4px;
  border-radius: 5px;
  border: 1px solid rgba(198,163,96,0.3);
  background: rgba(255,255,255,0.05);
  color: #fff;
  text-align: center;
  font-size: 0.9em;
}

/* Extras-Gitter */
.extras-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 10px;
}

.extras-grid label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95em;
}

.extras-grid input[type="number"] {
     width: 55px;
}

/* Button */
.bestellformular button {
  display: block;
  width: 100%;
  background-color: #C6A360;
  color: #0F4336;
  padding: 12px;
  font-size: 1em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 1.5em;
  transition: all 0.3s ease;
  font-weight: 600;
}

.bestellformular button:hover {
  background-color: #b8924b;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Abholung */
.abholung {
  margin-top: 1.8em;
  text-align: center;
  font-size: 0.95em;
}

#datum{
    color:white;
    border: 1px solid rgba(198,163,96,0.3);
}

.pdf-download {
  text-align: center;
  margin-top: 2em;
  color: #C6A360;
}

.pdf-button {
  display: inline-block;
  background-color: #C6A360;
  color: #0F4336;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pdf-button:hover {
  background-color: #0F4336;
  color: #C6A360;
  border: 1px solid #C6A360;
}

.datenschutz {
  margin-top: 1.5em;
  margin-bottom: 1em;
  color: #fff;
  font-size: 0.9em;
  line-height: 1.4em;
}

.datenschutz a {
  color: #C6A360;
  text-decoration: underline;
}

.datenschutz input[type="checkbox"] {
  margin-right: 8px;
  transform: scale(1.2);
  accent-color: #C6A360; /* moderne Browser */
}





/* Responsive */
@media (max-width: 768px) {
  .bestellformular {
    padding: 1.5em;
  }
  .extras-grid {
    grid-template-columns: 1fr;
  }
  .gericht {
    flex-direction: column;
    align-items: flex-start;
  }
  .gericht .price {
    margin: 4px 0;
  }
}


@media (max-width: 480px) {
  .gericht {
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "price"
      "qty";
    gap: 4px 0;
  }
  .gericht input[type="number"] { justify-self: start; }
}/* End custom CSS */