﻿.produktbild_start {
    display: block;
    max-width: 100%;
    height: auto;
}

.headline-dynamic-wrapper {
  display: inline-block;
  position: relative;
  height: 1.5em;
  width: 230px;
}

.headline-dynamic-text {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.headline-text-active {
  opacity: 1;
  position: relative;
  animation: elementor-headline-flip-in 1.2s;
}

@keyframes elementor-headline-flip-in {
  0% {
    transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  to {
    transform: rotateX(1turn);
    opacity: 1;
  }
}

#admin_count .count {
  position: absolute;
  right: -6px;
  top: -8px;
  background: #a51f1c;
  color: #fff;
  display: inline-block;
  padding: 3px;
  font-size: 12px;
  line-height: 12px;
  text-align: center;
  font-weight: 700;
  min-width: 20px;
  border-radius: 5px;
}

/* Karten-Design */

/* ==========================================
   Grid: Stollenbackstube
   ========================================== */

.grid-backstube {
    display: grid;
    gap: 10px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 1px;
    align-items: stretch;

    /* Desktop */
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
        "g1 g2"
        "g3 g4";
}

/* Bereiche zuweisen */
.grid-backstube .grid1 { grid-area: g1; }
.grid-backstube .grid2 { grid-area: g2; }
.grid-backstube .grid3 { grid-area: g3; }
.grid-backstube .grid4 { grid-area: g4; }

/* ==========================================
   Mobile Ansicht
   ========================================== */

@media (max-width: 768px) {

    .grid-backstube {
        grid-template-columns: 1fr;
        grid-template-areas:
            "g1"
            "g2"
            "g4"
            "g3";
    }

}

/* Basis-Grid-Styles */
.grid-container {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  max-width: 1440px;
  margin: auto;
  padding: 1px;
  align-items: stretch;
}



@media only screen and (max-width: 600px) {
  .grid-container {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 1440px;
    margin: auto;
    padding: 5px;
    margin-bottom: 15px;
  }
}
/* Karten-Design */
.grid-item-visibel {
  border: 1px solid #f0e0c7;
  padding: 10px 1% 15px 1%;
  border-radius: 15px;
  text-align: center;
  background-color: #fff;

  transition:
    box-shadow 0.3s ease-in-out transform 1s ease,
    opacity 1s ease;
}

/* Karten-Design */
.grid-item-visibel-pure {
  border: 1px solid #f0e0c7;
  border-radius: 15px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  transition:
    box-shadow 0.3s ease-in-out transform 1s ease,
    opacity 1s ease;
}
/* Karten-Design */
.grid-item-visibel-blank {
  border: 0px;
  padding: 0px;
}
/* Karten-Design */
.grid-item {
  border: 1px solid #f0e0c7;
  padding: 8px;
  border-radius: 15px;
  text-align: center;
  background-color: #fff;
  opacity: 1; /* Unsichtbar beim Laden */

  transition:
    box-shadow 0.3s ease-in-out transform 1s ease,
    opacity 1s ease;
}

/* Karten-Design */
.grid-item-left {
  border: 1px solid #f0e0c7;
  padding: 8px 8px 12px 20px;
  border-radius: 15px;
  background-color: #fff;
  opacity: 1; /* Unsichtbar beim Laden */
  transition:
    box-shadow 0.3s ease-in-out transform 1s ease,
    opacity 1s ease;
}

.grid-item-left b {
  margin-bottom: 5px;
}

/* Karten-Design */
.grid-item-blank {
  border: 0px;
  padding: 0px;
  opacity: 1; /* Unsichtbar beim Laden */
  height: 100%;
}

.image-container {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  border-radius: 10px; /* Optional: Abgerundete Ecken */
}

/* Bild selbst */
.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Sorgt für korrekte Skalierung */
  border-radius: 10px; /* Gleiche Rundung wie das Div */
  display: block;
}

/* Bild selbst */
.image-container-gutschein img {
  width: 100%;
  height: 100px;
  object-fit: cover; /* Sorgt für korrekte Skalierung */
  border-radius: 10px; /* Gleiche Rundung wie das Div */
  display: block;
}

.grid-item:hover {
  box-shadow: 0px 5px 15px rgba(240, 224, 199, 1);
}

.grid-item3 {
  background: white;
  padding: 40px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 10px;
  opacity: 0; /* Unsichtbar beim Laden */
  transition:
    transform 1s ease,
    opacity 1s ease;
}

/* 1 Spalte Grid */
.grid-1-column {
  grid-template-columns: 1fr;
}

/* 2 Spalten Grid */
.grid-2-columns {
  grid-template-columns: repeat(2, 1fr);
}

/* 3 Spalten Grid */
.grid-3-columns {
  grid-template-columns: repeat(3, 1fr);
}

/* 4 Spalten Grid */
.grid-4-columns {
  grid-template-columns: repeat(4, 1fr);
}

/* 5 Spalten Grid */
.grid-5-columns {
  grid-template-columns: repeat(5, 1fr);
}

/* 6 Spalten Grid */
.grid-6-columns {
  grid-template-columns: repeat(6, 1fr);
}

/* 6 Spalten Grid */
.grid-8-columns {
  grid-template-columns: repeat(8, 1fr);
}

/* Spannen über 2 oder 3 Spalten */
.grid-double {
  grid-column: span 2;
}

.grid-triple {
  grid-column: span 3;
}

.vvcode_sec label {
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
}

.vvcode_sec input {
  width: 46px;
  flex: 0 0 46px;
}

/* Responsive Verhalten */
@media (max-width: 1024px) {
  .grid-8-columns {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid-5-columns,
  .grid-6-columns {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-3-columns,
  .grid-4-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-8-columns {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid-3-columns,
  .grid-4-columns,
  .grid-5-columns,
  .grid-6-columns {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-2-columns {
    grid-template-columns: 1fr;
  }

  .image-container.grid-8-columns {
    height: 100px; /* Kleinere Höhe für mobile Ansicht */
  }
}

@media (max-width: 400px) {
  .grid-1-column,
  .grid-2-columns,
  .grid-3-columns,
  .grid-4-columns,
  .grid-5-columns,
  .grid-6-columns {
    grid-template-columns: 1fr;
       gap: 10px;
  }

  .grid-8-columns {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-8-columns.image-container {
    height: 100px; /* Kleinere Höhe für mobile Ansicht */
  }
  .grid-8-columns.image-container-gutschein {
    height: 100px; /* Kleinere Höhe für mobile Ansicht */
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Umkehren der Reihenfolge für mobile Darstellung

 */
@media (max-width: 300px) {
  .grid-container {
    display: flex;
    gap: 10px;
    flex-direction: column-reverse;
  }
}

.accordion {
  width: 100%;
  max-width: 1440px;
  margin: auto;
}
.accordion-item {
  background: white;
  border-radius: 5px;
  margin: 0px 5px 0px 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
  overflow: hidden;
}
.accordion-header h2,
.accordion-header {
  background: #f0e0c7;
  color: #ad7738;
  padding: 8px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  transition: background 0.3s;
}
.accordion-header:hover h2,
.accordion-header:hover {
  background: #ad7738;
  color: white;
}

.accordion-content {
  display: block !important;
  padding: 2px;
  background: #ffffff;
  border-top: 1px solid #ddd;
  font-size: 16px;
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  padding-left: 1.5%;
  transition: max-height 0.3s ease;
}
.accordion-content.open {
  max-height: 4000px; /* groß genug */
}

.accordion-content h3 {
  color: #ad7738;
  font-size: 20px;
  padding: 10px 5px 0px 5px;
  opacity: 0.6;
  margin: 0 0 0.5em 0;
}

.gliederung {
  padding: 10px 10px 18px 10px;
  color: #5d5d5d;
  font-weight: 600;
  font-size: 21px;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.font-semibold {
  font-weight: 600;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.gap-3 {
  gap: 0.75rem;
}
.items-start {
  align-items: flex-start;
}
.flex {
  display: flex;
}

.hidden {
  display: none;
}

.bg-blue-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}

.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.border {
  border-width: 1px;
}
.rounded {
  border-radius: 0.25rem;
}

button,
input:where([type="button"]),
input:where([type="reset"]),
input:where([type="submit"]) {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
  border-style: none;
  border-color: #fff;
}
button,
select {
  text-transform: none;
}

.grid-item i.fa-whatsapp {
  font-size: 26px;
  color: #6f8f7a;
  margin-bottom: 5px;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}

.grid-item a:hover i.fa-whatsapp {
  color: #a05d3b;
  transform: scale(1.1);
}

/* Anfahrtslisten */
.anfahrt-liste {
  margin: 0;
  padding: 0;
  list-style: none;
}

.anfahrt-liste li {
  padding: 12px 10px;
  border-bottom: 1px solid #f0e0c7;
}

.anfahrt-liste li:last-child {
  border-bottom: 0;
}

.anfahrt-liste i {
  margin-right: 8px;
}

.anfahrt-liste p {
  margin: 7px 0 0 15px;
}

/* =========================================================
   CHECKOUT SHIPPING - VERSANDTERMIN
========================================================= */

.checkout_shipping_date {
  margin-top: 35px;
}

.shipping_date_box {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.shipping_date_icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary_color, #d9a54b);
  color: #fff;
  font-size: 18px;
}

.shipping_date_content {
  flex: 1;
  min-width: 0;
}


/* Kalender
--------------------------------------------------------- */

#shipping_datepicker {
  width: 100%;
  max-width: 380px;
}

#shipping_datepicker .ui-datepicker {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
}

#shipping_datepicker .ui-datepicker-header {
  padding: 10px 0;
  border: 0;
  background: transparent;
}

#shipping_datepicker .ui-datepicker-title {
  font-size: 17px;
  font-weight: 600;
}

#shipping_datepicker .ui-datepicker-calendar {
  width: 100%;
  border-collapse: separate;
  border-spacing: 4px;
}

#shipping_datepicker .ui-datepicker-calendar th {
  padding: 5px;
  font-size: 12px;
  font-weight: 500;
}

#shipping_datepicker .ui-datepicker-calendar td {
  padding: 0;
  text-align: center;
}

#shipping_datepicker .ui-state-default {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 5px;
  border: 0;
  border-radius: 5px;
  background: #f4f4f4;
  color: inherit;
  text-decoration: none;
}

#shipping_datepicker .ui-state-default:hover {
  background: #e8e8e8;
}

#shipping_datepicker .ui-datepicker-current-day .ui-state-default {
  background: var(--primary_color, #d9a54b);
  color: #fff;
  font-weight: 600;
}

#shipping_datepicker .ui-datepicker-unselectable .ui-state-default {
  opacity: .35;
}


/* =========================================================
   CHECKOUT - WUNSCH-VERSANDTERMIN
========================================================= */
/* =========================================================
   CHECKOUT - WUNSCH-VERSANDTERMIN
========================================================= */

.checkout_shipping_date {
  margin-top: 35px;
}

.shipping_calendar {
  width: 100%;
  max-width: 420px;
  margin-top: 20px;
}


/* Kopf
--------------------------------------------------------- */

.shipping_calendar_header {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  margin-bottom: 12px;
}

.shipping_calendar_title {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}

.shipping_calendar_nav {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #f2f2f2;
  cursor: pointer;
}

.shipping_calendar_nav:hover:not(:disabled) {
  background: #e5e5e5;
}

.shipping_calendar_nav:disabled {
  opacity: .25;
  cursor: default;
}


/* Wochentage
--------------------------------------------------------- */

.shipping_calendar_weekdays,
.shipping_calendar_days {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 5px;
}

.shipping_calendar_weeknumber {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #888;
  border-right: 1px solid #ddd;
}

.shipping_calendar_weekdays {
  margin-bottom: 5px;
}

.shipping_calendar_weekdays span {
  padding: 5px 0;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #777;
}


/* Kalendertage
--------------------------------------------------------- */

.shipping_calendar_day {
  aspect-ratio: 1 / 1;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: #f5f5f5;
  color: #333;
  font: inherit;
  cursor: pointer;
}

.shipping_calendar_day:hover {
  background: #faedce;

}

.shipping_calendar_day.today {
  box-shadow: inset 0 0 0 2px #d9a54b;
}

.shipping_calendar_day.selected {
  background: #d9a54b;
  color: #fff;
  font-weight: 600;
}

.shipping_calendar_day.disabled {
  background: #fafafa;
  color: #bbb;
  cursor: default;
}


/* Ergebnis
--------------------------------------------------------- */

.shipping_date_result {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  margin-top: 15px;
}

.shipping_date_message {
  font-size: 14px;
  color: #666;
}

.shipping_date_message i {
  margin-right: 5px;
  color: #d9a54b;
}

.shipping_date_delete {
  display: none;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #eee;
  color: #666;
  cursor: pointer;
}

.shipping_date_delete:hover {
  background: #ddd;
  color: #222;
}


/* Smartphone
--------------------------------------------------------- */

@media only screen and (max-width: 400px) {

  .shipping_calendar {
    max-width: none;
  }

  .shipping_calendar_weekdays,
  .shipping_calendar_days {
    gap: 3px;
  }

  .shipping_calendar_day {
    border-radius: 4px;
  }

}

.advent_dates {
  margin-top: 15px;
}

.advent_dates .subline {
  margin-bottom: 6px;
}

.advent_date {
  display: grid;
  grid-template-columns: 80px auto;
  gap: 8px;
  line-height: 1.6;
}

.advent_number {
  display: inline-block;
  width: 14px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.advent_date span:last-child {
  font-variant-numeric: tabular-nums;
}

/* =========================================================
   CHECKOUT - LIEFERADRESSEN
========================================================= */

.shipping_address_list {
  margin: 10px 0 12px 0;
}


/* einzelne Adresse
--------------------------------------------------------- */

.shipping_address_card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;

  margin: 0;
  padding: 10px 34px 10px 8px;

  border-bottom: 1px solid #e5e5e5;

  cursor: pointer;
  transition:
    background-color .15s ease,
    border-color .15s ease;
}

.shipping_address_card:first-child {
  border-top: 1px solid #e5e5e5;
}

.shipping_address_card:hover {
  background: #faf8f3;
}


/* ausgewählte Adresse
--------------------------------------------------------- */

.shipping_address_card.selected {
  background: #f3f9f1;
}


/* Radio
--------------------------------------------------------- */

.shipping_address_radio {
  flex: 0 0 18px;
  padding-top: 3px;
}

.shipping_address_radio input {
  width: 16px;
  height: 16px;
  margin: 0;
  cursor: pointer;
}


/* Adressinhalt
--------------------------------------------------------- */

.shipping_address_content {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;

  line-height: 1.4;
}

.shipping_address_company {
  display: block;
  font-weight: 600;
}

.shipping_address_name {
  display: block;
  font-weight: 600;
}

.shipping_address_street,
.shipping_address_city {
  display: block;
}


/* Haken
--------------------------------------------------------- */

.shipping_address_check {
  position: absolute;
  top: 50%;
  right: 10px;

  display: none;

  transform: translateY(-50%);

  color: #57975b;
  font-size: 15px;
}

.shipping_address_card.selected
.shipping_address_check {
  display: block;
}


/* Neue Lieferadresse
--------------------------------------------------------- */

.shipping_address_new {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  margin-top: 4px;

  font-weight: 600;
  text-decoration: none;
}

.shipping_address_new:hover {
  text-decoration: underline;
}
/* ==========================================
   Stollengruß
   ========================================== */

.stollengruss-icon {
  margin: 10px 0 15px 0;
  text-align: center;
  font-size: 36px;
  line-height: 1;
  color: #d9a54b;
}

.stollengruss-cta {
  margin-top: 20px;
  padding: 25px 3%;
  background: #fefaef;
}

.stollengruss-cta h2 {
  margin-top: 5px;
}



.col_account {
  position: relative;
}

#col_cart {
  position: relative;
}

.header_customer_name {
  position: absolute;
  right: 5px;
  bottom: calc(100% + 10px);

  font-size: 14px;
  line-height: 13px;
  font-weight: bold;
  color: #fcd75e;
  white-space: nowrap;
  text-align: center;
}

.vimeo-lite {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
    cursor: pointer;
    border-radius: 10px;
}

.vimeo-lite img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vimeo-lite-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 72px;
    height: 50px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.75);
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.vimeo-lite-play span {
    display: block;
    width: 0;
    height: 0;
    margin: auto;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 18px solid #fff;
}

.vimeo-lite:hover .vimeo-lite-play {
    background: rgba(215, 37, 53, 0.95);
}

.vimeo-lite iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.product-siblings-group {
    margin: 15px 0;
}

.product-siblings-group-title {
    font-weight: 600;
    margin-bottom: 6px;
}

.product-siblings-group-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.rezept-schritt {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;
}

.rezept-schritt span:last-child {
    font-size: 0.8em;
    font-weight: normal;
    color: #555;
}
.rezept-einkaufsliste {
    margin: 40px 0;
}

.einkauf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px 30px;

    padding: 30px;
}

.einkauf-item {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 14px;
    background: #fff;
}

.einkauf-item strong {
    white-space: nowrap;
}

.einkauf-hinweis {
    margin-top: 15px;
}
.rezept-kopf {
    margin-bottom: 20px;
}

.rezept-kopf h2,
.rezept-einkaufsliste h2 {
    margin-bottom: 8px;
}

.rezept-kopf p {
    margin: 5px 0;
}


/* Ablauf ------------------------------------------------ */

.rezept-ablauf {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    margin-top: 15px;
    padding: 12px 15px;
    background: #faf7f2;
    border-radius: 5px;
}

.rezept-ablauf span {
    white-space: nowrap;
}


/* Rezeptkarten ------------------------------------------ */

.rezept-karten {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.rezept-karte {
    padding: 14px 18px;
    border: 1px solid #e8c99e;
    border-radius: 10px;
    background: #fff;
}

.rezept-karte-breit {
    grid-column: 1 / -1;
}

.rezept-schritt {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 15px;
    margin: 13px 0 8px 0;
}

.rezept-schritt small {
    font-size:smaller;
    font-weight: 400;
    color: #555;
    white-space: nowrap;
}

.rezept-karte table {
    width: 100%;
    border-collapse: collapse;
}

.rezept-karte td {
    padding: 3px 0;
    line-height: 1.35;
}

.rezept-karte td:last-child {
    width: 90px;
    text-align: right;
    white-space: nowrap;
}


/* Großer Stollenteigblock ------------------------------- */

.rezept-zutaten-2spalten {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 45px;
}


/* Einkaufsliste ----------------------------------------- */

.rezept-einkaufsliste {
    margin-top: 28px;
}

.rezept-einkaufsliste > p {
    margin: 4px 0 12px;
}

.einkauf-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 30px;
}

.einkauf-item {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 5px 0;
    border-bottom: 1px dotted #ddd;
}

.einkauf-item strong {
    white-space: nowrap;
}

.rezept-nach-dem-backen {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 25px;
    margin-top: 15px;
    padding: 10px 15px;
    background: #faf7f2;
    border-radius: 5px;
}


/* Mobil ------------------------------------------------- */

@media (max-width: 700px) {

    .rezept-karten,
    .rezept-zutaten-2spalten,
    .einkauf-grid {
        grid-template-columns: 1fr;
    }

    .rezept-karte-breit {
        grid-column: auto;
    }

    .rezept-ablauf {
        display: grid;
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .rezept-schritt {
        align-items: flex-start;
    }
}

/* Stollenwissen Navigation */
.stollenwissen-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 0px 0;
    padding: 0 0 12px 0;
    border-radius: 4px;
}

.stollenwissen-nav a {
    display: flex;
    align-items: center;
    min-height: 38px;
    padding: 7px 14px;
    border: 1px solid #91530d;
    border-radius: 4px;

    background: #ffffff;
    color: #91530d;

    font-size: 15px;
    font-weight: 600;
    line-height: 1.25;
    text-decoration: none;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.stollenwissen-nav a:hover,
.stollenwissen-nav a:focus {
    background: #91530d;
    color: #ffffff;
    text-decoration: none;
}

.stollenwissen-nav a.active {
    background: #91530d;
    color: #ffffff;
    border-color: #91530d;
}


/* Tablet */
@media (max-width: 900px) {

    .stollenwissen-nav a {
        flex: 1 1 calc(33.333% - 8px);
        justify-content: center;
        text-align: center;
    }

}


/* Smartphone */
@media (max-width: 600px) {

    .stollenwissen-nav {
        gap: 6px;
        padding: 8px;
        margin-bottom: 20px;
    }

    .stollenwissen-nav a {
        flex: 1 1 calc(50% - 6px);
        min-height: 42px;
        padding: 7px 10px;
        font-size: 14px;
        justify-content: center;
        text-align: center;
    }

}
.of_col_qty {
  display: flex;
  flex-direction: column;
}

.of_col_qty_inner {
  display: flex;
  align-items: center;
}

.of_col_qty > .of_action {
  display: flex;
  width: 100%;
  margin-top: 5px;

}
/* Zutaten und Nährwerte – vorhandenes Seiten-Grid */
.pd_food_details {
  gap: 24px;
  margin: 15px auto;
}

.pd_food_details > .pd_food_card {
  min-width: 0;
  margin: 0;
  padding: clamp(20px, 3vw, 34px);
  text-align: left;
  border-color: var(--content_line_color, #e6cca2);
  background: linear-gradient(180deg, #fcf9f3 0, #fff 130px);
  box-shadow: 0 3px 14px rgba(117, 68, 11, 0.04);
}

/* Wenn nur ein Bereich befüllt ist: volle Breite */
.pd_food_details > .pd_food_card:only-child {
  grid-column: 1 / -1;
}

.pd_food_card h2 {
  margin: 0 0 24px;
  padding: 0;
  color: var(--categoriesitems_level1_color, #91530d);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
}

.pd_food_card h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  margin-top: 12px;
  background: var(--farbe-navi, #b78852);
}

/* Zutaten aus dem Editor */
.pd_food_card .pd_detail_richtext {
  color: var(--price_default_color, #434343);
  font-size: 1rem;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.pd_food_card .pd_detail_richtext p {
  margin: 0 0 16px;
}

.pd_food_card .pd_detail_richtext > :last-child {
  margin-bottom: 0;
}

.pd_food_card .pd_detail_richtext strong,
.pd_food_card .pd_detail_richtext b {
  font-weight: 700;
}

.pd_food_card .pd_detail_richtext ul,
.pd_food_card .pd_detail_richtext ol {
  padding-left: 22px;
  margin: 0 0 16px;
}

.pd_food_card .pd_detail_richtext li {
  margin-bottom: 6px;
}

/* Nährwerttabelle */
.pd_food_card .pd_detail_nutrition {
  width: 100%;
  margin: 0;
  border: 0;
  border-collapse: collapse;
  color: var(--price_default_color, #434343);
  font-size: 0.95rem;
  line-height: 1.5;
}

.pd_food_card .pd_detail_nutrition caption {
  padding: 0 0 16px;
  color: #666;
  font-size: 0.9rem;
  text-align: left;
  caption-side: top;
}

.pd_food_card .pd_detail_nutrition th,
.pd_food_card .pd_detail_nutrition td {
  padding: 11px 12px;
  border: 0;
  border-bottom: 1px solid #eee5d8;
  vertical-align: top;
  background: transparent;
}

.pd_food_card .pd_detail_nutrition thead th {
  background: #f7f0e5;
  color: var(--categoriesitems_level1_color, #91530d);
  border-bottom-color: var(--content_line_color, #e6cca2);
  font-weight: 600;
  text-align: left;
}

.pd_food_card .pd_detail_nutrition tbody th {
  font-weight: 500;
  text-align: left;
  overflow-wrap: anywhere;
}

.pd_food_card .pd_detail_nutrition td,
.pd_food_card .pd_detail_nutrition thead th:last-child {
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.pd_food_card .pd_detail_nutrition tbody tr:nth-child(even) {
  background: #fcf9f3;
}

.pd_food_card .pd_detail_nutrition tbody tr:last-child > * {
  border-bottom: 0;
}

.pd_food_card .pd_detail_nutrition th.pd_detail_nutrition_indent {
  padding-left: 26px;
  color: #666;
  font-size: 0.9rem;
  font-weight: 400;
}

@media (max-width: 768px) {
  .pd_food_details {
    gap: 16px;
  }
}

/* Reihenfolge auch bei der vorhandenen 300-px-Regel erhalten */
@media (max-width: 300px) {
  .pd_food_details {
    flex-direction: column;
  }
}

   #product_info .pd_detail_sections { clear:both; }
    #product_info .pd_detail_section { margin:10px 0; scroll-margin-top:24px; }
    #product_info .pd_detail_section h2 { margin:0 0 20px; }
    #product_info .pd_detail_tiles { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:24px; }
    #product_info .pd_detail_tile { min-width:0; border:1px solid #ddd; border-radius:8px; overflow:hidden; background:#fff; }
    #product_info .pd_detail_tile_image { display:block; width:100%; height:auto; }
    #product_info .pd_detail_tile_content { padding:24px; }
    #product_info .pd_detail_tile_content h2 { font-size:1.35rem; line-height:1.35; }
    #product_info .pd_detail_richtext { overflow-wrap:anywhere; }
    #product_info .pd_detail_richtext img { max-width:100%; height:auto; }
    #product_info .pd_detail_richtext > :first-child { margin-top:0; }
    #product_info .pd_detail_richtext > :last-child { margin-bottom:0; }
    #product_info .pd_detail_nutrition { width:100%; max-width:720px; border-collapse:collapse; }
    #product_info .pd_detail_nutrition caption { text-align:left; margin-bottom:16px; }
    #product_info .pd_detail_nutrition th, #product_info .pd_detail_nutrition td { padding:12px 16px; border-bottom:1px solid #ddd; text-align:left; }
    #product_info .pd_detail_nutrition thead { background:#f5f5f5; }
    #product_info .pd_detail_nutrition tbody th { font-weight:400; }
    #product_info .pd_detail_nutrition td, #product_info .pd_detail_nutrition thead th:last-child { text-align:right; }
    #product_info .pd_detail_nutrition .pd_detail_nutrition_indent { padding-left:32px; }
    #product_info #product-faq .faq-item { border:1px solid #ddd; border-radius:8px; margin-bottom:12px; background:#fff; overflow:hidden; }
    #product_info #product-faq .faq-item summary { list-style:none; cursor:pointer; padding:15px 50px 15px 20px; font-size:1.1rem; font-weight:600; position:relative; transition:background .2s ease; }
    #product_info #product-faq .faq-item summary:hover { background:#f8f8f8; }
    #product_info #product-faq .faq-item summary:focus-visible { outline:2px solid currentColor; outline-offset:-4px; }
    #product_info #product-faq .faq-item summary::-webkit-details-marker { display:none; }
    #product_info #product-faq .faq-item summary::after { content:"+"; position:absolute; right:20px; top:50%; transform:translateY(-50%); font-size:1.6rem; font-weight:300; color:#666; }
    #product_info #product-faq .faq-item[open] > summary::after { content:"−"; }
    #product_info .pd_detail_faq_answer { padding:0 20px 20px; }
    @media (max-width:600px) {
      #product_info .pd_detail_section { margin:6px 0; }
      #product_info .pd_detail_tiles { grid-template-columns:1fr; gap:20px; }
      #product_info .pd_detail_tile_content { padding:20px; }
      #product_info .pd_detail_nutrition th, #product_info .pd_detail_nutrition td { padding:10px 8px; }
      #product_info .pd_detail_nutrition .pd_detail_nutrition_indent { padding-left:20px; }
    }

    /* Produktkacheln mit wechselnder Bildposition */
#product-tiles.pd_detail_tiles {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  margin: 30px auto;
}

#product-tiles .pd_detail_tile {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas: "image content";
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--content_line_color, #e6cca2);
  border-radius: 15px;
  background: linear-gradient(180deg, #fcf9f3 0, #fff 180px);
  box-shadow: 0 3px 14px rgba(117, 68, 11, 0.04);
}

/* Jede zweite Kachel: Text links, Bild rechts */
#product-tiles .pd_detail_tile:nth-child(even) {
  grid-template-areas: "content image";
}

#product-tiles .pd_detail_tile_media {
  grid-area: image;
  position: relative;
  min-width: 0;
  min-height: 320px;
  overflow: hidden;
  background: var(--body_bg2, #fcf9f3);
}

#product-tiles .pd_detail_tile_image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
}

#product-tiles .pd_detail_tile_content {
  grid-area: content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(24px, 4vw, 52px);
  text-align: left;
}

#product-tiles .pd_detail_tile_content h2 {
  margin: 0 0 24px;
  padding: 0;
  color: var(--categoriesitems_level1_color, #91530d);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
}

#product-tiles .pd_detail_tile_content h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  margin-top: 12px;
  background: var(--farbe-navi, #b78852);
}

#product-tiles .pd_detail_richtext {
  color: var(--price_default_color, #434343);
  font-size: 1rem;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

#product-tiles .pd_detail_richtext p {
  margin: 0 0 16px;
}

#product-tiles .pd_detail_richtext > :last-child {
  margin-bottom: 0;
}

#product-tiles .pd_detail_richtext strong,
#product-tiles .pd_detail_richtext b {
  font-weight: 700;
}

#product-tiles .pd_detail_richtext ul,
#product-tiles .pd_detail_richtext ol {
  margin: 0 0 16px;
  padding-left: 22px;
}

#product-tiles .pd_detail_richtext li {
  margin-bottom: 6px;
}

/* Kacheln mit ausschließlich Text oder Bild */
#product-tiles .pd_detail_tile.pd_detail_tile_no_image {
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas: "content";
}

#product-tiles .pd_detail_tile.pd_detail_tile_image_only {
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas: "image";
}

#product-tiles .pd_detail_tile_image_only .pd_detail_tile_image {
  position: static;
  height: auto;
}

/* Mobil: Bild immer über dem Text */
@media (max-width: 768px) {
  #product-tiles.pd_detail_tiles {
    gap: 16px;
  }

  #product-tiles .pd_detail_tile,
  #product-tiles .pd_detail_tile:nth-child(even) {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "image"
      "content";
  }

  #product-tiles .pd_detail_tile_media {
    min-height: 0;
  }

  #product-tiles .pd_detail_tile_image {
    position: static;
    height: auto;
  }

  #product-tiles .pd_detail_tile_content {
    padding: 24px;
  }
}
.newsletter_toggle {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  position: relative;
  margin: 18px 0;
  cursor: pointer;
}

.newsletter_toggle_input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.newsletter_toggle_track {
  position: relative;
  display: inline-block;
  flex: 0 0 54px;
  width: 54px;
  height: 30px;
  border-radius: 30px;
  background: #999;
  transition: background 0.2s ease;
}

.newsletter_toggle_track::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgb(0 0 0 / 20%);
  transition: transform 0.2s ease;
}

.newsletter_toggle_input:checked + .newsletter_toggle_track {
  background: #59694b;
}

.newsletter_toggle_input:checked + .newsletter_toggle_track::before {
  transform: translateX(24px);
}

.newsletter_toggle_input:focus-visible + .newsletter_toggle_track {
  outline: 2px solid #a66b16;
  outline-offset: 4px;
}

.newsletter_toggle_input:disabled + .newsletter_toggle_track {
  opacity: 0.6;
}
