/*
Theme Name:  Astra Child
Theme URI:   https://wpastra.com/
Template:    astra
Author:      Astra
Author URI:  https://wpastra.com/
Description: Astra Child Theme
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
*/

/* Füge dein eigenes CSS unterhalb dieser Zeile ein */


/* === 12MEAT – Eventübersicht Styling === */

/* Entfernt überflüssige Standardtitel/Navigation */
body.post-type-archive-tribe_events .tribe-events-header,
body.post-type-archive-tribe_events .tribe-events-page-title,
.tribe-events-c-subscribe-dropdown,
.tribe-events-nav-pagination {
  display: none !important;
}

/* Einheitlicher Hintergrund */
body.post-type-archive-tribe_events {
  background: #fafafa;
}

/* Zentrierter Container */
.tribe-events-loop {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Grid Layout für Events */
.tribe-events-loop .tribe-common-g-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

/* Einzelne Event-Kacheln */
.tribe-events-loop article.type-tribe_events {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 24px;
  text-align: center;
  transition: all 0.25s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.tribe-events-loop article.type-tribe_events:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Eventtitel */
.tribe-events-loop article h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #333;
}

/* Datum & Details */
.tribe-events-loop .tribe-events-event-meta {
  font-size: 0.95rem;
  color: #777;
  margin-bottom: 16px;
}

/* Kurzer Beschreibungstext */
.tribe-events-loop .tribe-events-list-event-description {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
  min-height: 60px;
}

/* 🎟️ Ticket-Button */
.tribe-events-loop .event-ticket-button {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b00, #00c6c3);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.tribe-events-loop .event-ticket-button:hover {
  background: linear-gradient(135deg, #00c6c3, #ff6b00);
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

/* Mobile Optimierung */
@media (max-width: 768px) {
  .tribe-events-loop article.type-tribe_events {
    padding: 20px;
  }
  .tribe-events-loop article h3 {
    font-size: 1.05rem;
  }
}

/* Optional: Überschrift "Unsere Events" über dem Grid */
body.post-type-archive-tribe_events .tribe-events-loop::before {
  content: "🍽️ Unsere Social Dining Events";
  display: block;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 35px;
  color: #333;
}

/* === 12MEAT – Event Produktseite Styling === */

/* Gesamtcontainer: zentriert & luftig */
.single-product {
  background: #fafafa;
  padding: 60px 0;
  font-family: "Poppins", sans-serif;
}

/* Produktbox */
.single-product .product {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  text-align: center;
}

/* Titel */
.single-product .product_title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

/* Untertitel / Pilotphase */
.single-product .woocommerce-product-details__short-description {
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 25px;
}

/* Preis (z. B. €0,00) */
.single-product .price {
  font-size: 1.3rem;
  color: #00c6c3;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Menge + Button nebeneinander */
.single-product form.cart {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

/* Button */
.single-product .single_add_to_cart_button {
  background: linear-gradient(135deg, #ff6b00, #00c6c3);
  color: #fff !important;
  border: none;
  border-radius: 12px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.single-product .single_add_to_cart_button:hover {
  background: linear-gradient(135deg, #00c6c3, #ff6b00);
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

/* Kategorie unten dezent */
.single-product .posted_in {
  display: block;
  margin-top: 20px;
  font-size: 0.9rem;
  color: #999;
}

/* Verfügbarkeit */
.single-product .stock {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

/* Event-Emoji Titel */
.single-product .product_title::before {
  content: "🥂 ";
}

/* Entfernt Breadcrumbs, falls vorhanden */
.woocommerce-breadcrumb {
  display: none;
}

/* === 12MEAT – Eventübersicht Styling (Shop-Seite) === */

.archive.post-type-archive-product,
.tax-product_cat-event {
  background: #fafafa;
  padding: 50px 0;
  font-family: "Poppins", sans-serif;
}

/* Produktliste */
.archive ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px !important;
  max-width: 1100px;
  margin: 0 auto !important;
}

/* Einzelkarte */
.archive ul.products li.product {
  background: #fff !important;
  border-radius: 18px;
  padding: 25px 20px !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: none !important;
}

.archive ul.products li.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Produktbild */
.archive ul.products li.product img {
  border-radius: 14px;
  margin-bottom: 15px;
}

/* Titel */
.archive ul.products li.product h2.woocommerce-loop-product__title {
  font-size: 1.2rem !important;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

/* Preis */
.archive ul.products li.product .price {
  color: #00c6c3 !important;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Button */
.archive ul.products li.product .button {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b00, #00c6c3);
  color: #fff !important;
  border-radius: 12px;
  padding: 10px 22px;
  font-weight: 600;
  text-transform: none;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: none !important;
}

.archive ul.products li.product .button:hover {
  background: linear-gradient(135deg, #00c6c3, #ff6b00);
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

/* Kategorie & Metadaten ausblenden */
.archive ul.products li.product .woocommerce-loop-category__title,
.archive ul.products li.product .posted_in,
.archive ul.products li.product .woocommerce-loop-product__link .woocommerce-loop-product__title a {
  text-decoration: none !important;
}

.archive ul.products li.product .woocommerce-loop-product__link .woocommerce-loop-product__title a:hover {
  color: #ff6b00 !important;
}

/* Entfernt Kategorie-Zeile komplett */
.archive ul.products li.product .woocommerce-loop-product__title + .posted_in,
.archive ul.products li.product .woocommerce-loop-category__title {
  display: none !important;
}

/* Kein "Add to Cart" Text */
.archive ul.products li.product .add_to_cart_button {
  font-size: 0 !important;
}

.archive ul.products li.product .add_to_cart_button::after {
  content: "Details ansehen";
  font-size: 1rem;
  color: #fff;
}

/* === 12MEAT – Events Calendar Übersicht === */

.tribe-events-calendar-list,
.tribe-common {
  font-family: "Poppins", sans-serif;
  background: #fafafa;
  /* Nur border-radius, KEIN overflow: hidden */
  border-radius: 30px; 
}

/* Einzelne Veranstaltungskarte */
.tribe-events-calendar-list__event {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  margin-bottom: 30px;
  /* NEU: Abstand nach links (verschiebt die Box nach rechts) */
  /* --- ÄNDERUNG HIER: --- */
  max-width: 850px; /* Begrenzt die Breite, damit sie nicht unendlich breit werden */
  margin-left: auto; /* Automatisch links... */
  margin-right: auto; /* ...und rechts Abstand = ZENTRIERT */
  /* ---------------------- */
  padding: 55px 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 25px;
  transition: all 0.3s ease;
}

/* Den gesamten Kalender-Block zentrieren */
.tribe-events-view {
    max-width: 800px;       /* Begrenzt die Breite, damit es kompakt bleibt */
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !important; /* Verhindert, dass es links kleben bleibt */
}

/* Die gesamte Liste (Monat + Events) zentrieren */
.tribe-events-calendar-list {
    max-width: 800px;       /* Breite begrenzen */
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important; /* Entfernt Standard-Einrückungen der Liste */
}

.tribe-events-calendar-list__event:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Datumsblock (z. B. FR 28) */
.tribe-events-calendar-list__event-date-tag {
  background: linear-gradient(135deg, #00c6c3, #ff6b00);
  color: #fff;
  border-radius: 14px;
  padding: 12px 18px;
  text-align: center;
  min-width: 70px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* Monat & Zahl im Datumsblock */
.tribe-events-calendar-list__event-date-tag-month {
  font-size: 0.75rem;
  opacity: 0.9;
}

.tribe-events-calendar-list__event-date-tag-daynum {
  font-size: 1.6rem;
  font-weight: 800;
}

/* Textbereich */
.tribe-events-calendar-list__event-details {
  flex: 1;
  text-align: left;
}

/* Titel */
.tribe-events-calendar-list__event-title a {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  text-decoration: none;
}

.tribe-events-calendar-list__event-title a:hover {
  color: #ff6b00;
}

/* Uhrzeit und Ort */
.tribe-events-calendar-list__event-datetime,
.tribe-events-calendar-list__event-venue {
  color: #666;
  font-size: 0.95rem;
  margin-top: 4px;
}

/* Button „Jetzt Ticket sichern“ */
.tribe-events-calendar-list__event-actions a {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b00, #00c6c3);
  color: #fff !important;
  border-radius: 12px;
  padding: 10px 22px;
  font-weight: 600;
  text-transform: none;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.tribe-events-calendar-list__event-actions a:hover {
  background: linear-gradient(135deg, #00c6c3, #ff6b00);
  transform: translateY(-2px);
}

/* Navigation (Vorherige / Heute / Nächste) */
.tribe-events-c-nav {
  text-align: center;
  margin: 40px 0;
}

.tribe-events-c-nav__list a {
  background: #fff;
  border-radius: 10px;
  padding: 8px 16px;
  color: #444;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  margin: 0 8px;
}

.tribe-events-c-nav__list a:hover {
  background: #00c6c3;
  color: #fff;
}

/* === 🥂 12MEAT EVENT ÜBERSICHT – moderner Stil === */

/* Gesamter Hintergrund */
body.post-type-archive-tribe_events {
  background: #fafafa;
  font-family: "Poppins", sans-serif;
  /* NEU: Ecken abrunden */
  border-radius: 30px; 
  
  /* Optional: Sorgt dafür, dass nichts über die runden Ecken hinaussteht */
}

/* Monatsüberschrift (z. B. November 2025) */
.tribe-events-header__title {
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  color: #b84d2e !important; /* warmes 12MEAT-Rot */
  text-align: center;
  margin-top: 30px !important;
  margin-bottom: 40px !important;
  letter-spacing: 0.5px;
}

/* Navigation: Vorherige / Heute / Nächste */
.tribe-events-c-nav {
  text-align: center;
  margin-bottom: 40px;
}

.tribe-events-c-nav__list {
  display: inline-flex;
  gap: 12px;
}

.tribe-events-c-nav__list a {
  background: #fff;
  color: #333;
  padding: 8px 18px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: all 0.25s ease;
}

.tribe-events-c-nav__list a:hover {
  background: linear-gradient(135deg, #ff6b00, #00c6c3);
  color: #fff !important;
  transform: translateY(-2px);
}

/* Veranstaltungskarte */
.tribe-events-calendar-list__event {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  margin-bottom: 30px;
  margin-left: 100px;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 25px;
  transition: all 0.3s ease;
}

.tribe-events-calendar-list__event:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Datumsblock */
.tribe-events-calendar-list__event-date-tag {
  background: linear-gradient(135deg, #00c6c3, #ff6b00);
  color: #fff;
  border-radius: 16px;
  padding: 12px 18px;
  text-align: center;
  min-width: 75px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);

  /* NEU: Verschiebt den Block nach links */
  transform: translateX(-10px); 
  
  /* Falls du auch mehr Abstand zum Text rechts davon willst, erhöhe diesen Wert: */
  margin-right: 15px;
}

.tribe-events-calendar-list__event-date-tag-month {
  font-size: 0.75rem;
  opacity: 0.9;
}

.tribe-events-calendar-list__event-date-tag-daynum {
  font-size: 1.5rem;
  font-weight: 800;
}

/* Titel & Details */
.tribe-events-calendar-list__event-details {
  flex: 1;
}

.tribe-events-calendar-list__event-title a {
  font-size: 1.3rem;
  font-weight: 700;
  color: #222;
  text-decoration: none;
}

.tribe-events-calendar-list__event-title a:hover {
  color: #ff6b00;
}

.tribe-events-calendar-list__event-datetime,
.tribe-events-calendar-list__event-venue {
  color: #666;
  font-size: 0.95rem;
  margin-top: 4px;
}

/* 🎟️ Button */
.tribe-events-calendar-list__event-actions a {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b00, #00c6c3);
  color: #fff !important;
  border-radius: 12px;
  padding: 10px 22px;
  font-weight: 600;
  text-transform: none;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.tribe-events-calendar-list__event-actions a:hover {
  background: linear-gradient(135deg, #00c6c3, #ff6b00);
  transform: translateY(-2px);
}

/* Mobile Optimierung */
@media (max-width: 768px) {
  .tribe-events-calendar-list__event {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .tribe-events-calendar-list__event-date-tag {
    margin-bottom: 10px;
  }
}

/* === 🥂 12MEAT Checkout – Sichtbar, clean & funktional === */

/* Gesamtbereich */
body.woocommerce-checkout {
  background: #fafafa;
  font-family: 'Poppins', sans-serif;
}

/* Formular-Container */
.woocommerce-checkout form.checkout {
  max-width: 720px;
  margin: 50px auto;
  background: #fff;
  padding: 3em 2.8em;
  border-radius: 22px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  text-align: center;
}

/* Überschrift */
.woocommerce-checkout h3 {
  font-size: 1.5rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 25px;
}

/* Entfernt überflüssige Review-Tabellen, aber lässt Beschreibung sichtbar */
#order_review_heading {
  display: none !important;
}

.woocommerce-checkout-review-order-table tfoot,
.woocommerce-privacy-policy-text,
.woocommerce-checkout-review-order .cart-subtotal,
.woocommerce-checkout-review-order .order-total {
  display: none !important;
}

/* Formularfelder */
.woocommerce-billing-fields {
  max-width: 440px;
  margin: 0 auto;
  text-align: left;
}

/* Eingabefelder */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 0.9em 1em;
  font-size: 1em;
  transition: all 0.2s ease;
}

.woocommerce form .form-row input.input-text:focus {
  border-color: #00C6C3;
  box-shadow: 0 0 0 3px rgba(0,198,195,0.15);
}

/* Labels */
.woocommerce form .form-row label {
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
  display: block;
}

/* 🎟️ Teilnahme-Button */
.woocommerce #place_order {
  background: linear-gradient(135deg, #FF6C2C, #00C6C3) !important;
  color: white !important;
  border: none !important;
  text-transform: uppercase;
  font-size: 1.25em;
  font-weight: 700;
  letter-spacing: 0.5px;
  width: 100%;
  max-width: 460px; /* etwas breiter */
  padding: 1.2em 0;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  margin: 1.8em auto 0;
  display: block;
  transition: all 0.3s ease;
}

.woocommerce #place_order:hover {
  background: linear-gradient(135deg, #00C6C3, #FF6C2C) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Notices (z. B. Fehlermeldungen) */
.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  border-radius: 10px;
  padding: 1em 1.2em;
  margin-bottom: 1.5em;
  text-align: left;
}

/* Mobil-Optimierung */
@media (max-width: 768px) {
  .woocommerce-checkout form.checkout {
    max-width: 95%;
    padding: 2em 1.5em 2.8em;
  }

  .woocommerce #place_order {
    max-width: 100%;
    font-size: 1.1em;
    padding: 1em;
  }
}

/* Breadcrumbs oder Header ausblenden */
.woocommerce-breadcrumb,
.entry-header {
  display: none !important;
}

/* 🧾 Entfernt den Hinweis "wurde deinem Warenkorb hinzugefügt" */
.woocommerce-message,
.woocommerce-cart-notice,
.woocommerce-info {
  display: none !important;
}

/* 🌈 12MEAT Eventseite mit Farbverlauf-Hintergrund */

/* Gesamter Produktbereich */
.single-product .site-main {
  background: linear-gradient(135deg, rgba(242, 101, 34, 0.08), rgba(0, 179, 179, 0.08));
  padding: 40px 0;
  border-radius: 20px;
}

/* Produkt-Container leicht hervorheben */
.woocommerce div.product {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  padding: 40px;
  max-width: 960px;
  margin: 0 auto;
}

/* Bild (wie zuvor) */
.woocommerce div.product div.images img {
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  border: 3px solid #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.woocommerce div.product div.images img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.25);
}

/* Button bleibt wie bisher */
.woocommerce div.product form.cart .button {
  background-color: #00b3b3;
  color: #fff;
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.woocommerce div.product form.cart .button:hover {
  background-color: #009999;
  transform: scale(1.03);
}

/* Titel + Preis */
.woocommerce div.product .product_title {
  color: #222;
  font-weight: 700;
  font-size: 1.8rem;
}

.woocommerce div.product span.price {
  color: #f26522;
  font-size: 1.3rem;
  font-weight: 600;
}

/* Responsiv */
@media (max-width: 768px) {
  .woocommerce div.product {
    padding: 20px;
  }
}

/* 12MEAT Event-Karten Hover-Design */
.twelve-meat-event-card {
  transition: all 0.25s ease;
}

.twelve-meat-event-card:hover {
  background-color: #fff8f3; /* leichtes Orange */
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

/* === 🥂 Premium 12MEAT Button === */
.twelve-meat-btn {
  background: linear-gradient(180deg, #ff7a1a 0%, #ff6600 100%);
  color: #fff;
  padding: 9px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(255, 102, 0, 0.35);
  border: none;
}

/* Hover: dunklerer Verlauf + sanfter Glow */
.twelve-meat-btn:hover {
  background: linear-gradient(180deg, #ff8533 0%, #e55a00 100%);
  box-shadow: 0 4px 14px rgba(255, 102, 0, 0.55);
  transform: scale(1.06);
}

/* Active (beim Klick): minimal gedrückt */
.twelve-meat-btn:active {
  transform: scale(0.98);
  box-shadow: 0 1px 4px rgba(255, 102, 0, 0.4);
}

/* Optional: sanfter Glanz-Effekt von oben */
.twelve-meat-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  border-radius: 8px 8px 0 0;
  background: rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

/* 12MEAT – Veranstaltungsort (Venue) überall ausblenden */
.tribe-events-venue,
.tribe-events-venue-details,
.tribe-events-venue-location,
.tribe-events-meta-group-venue,
.tribe-events-event-meta .tribe-venue,
.tribe-event-schedule-details + .tribe-events-venue-details,
.tribe-venue {
    display: none !important;
}

/* 🟠 Versteckt Ort/Location-Zeile, wenn leer */
.tribe-events-venue:empty,
.tribe-events-venue span:empty,
.tribe-events-venue a:empty {
    display: none !important;
}

/* Falls The Events Calendar Wrapper leer ist */
.tribe-events-venue:has(br),
.tribe-events-venue:has(:not(:empty)) {
    display: block;
}

/* 🎭 Location-Text unter Events auf der Übersicht ausblenden */
.tribe-events-calendar-list__event-venue,
.tribe-events-calendar-list__event-venue * {
  display: none !important;
}

body.post-type-archive-tribe_events .tribe-events-calendar-list__event-venue,
body.post-type-archive-tribe_events .tribe-events-calendar-list__event-venue * {
  display: none !important;
}

.twelvemeat-city-page {
  max-width: 800px;
}

.twelvemeat-city-page .city-image {
  width: 280px;
  height: 280px;
  object-fit: cover;
}

.twelvemeat-city-page .text-primary {
  color: #d96d42; /* 12meat Farbton */
}

.twelvemeat-city-page .button.primary {
  background-color: #d96d42;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.twelvemeat-city-page .button.primary:hover {
  background-color: #c65f38;
}

/* ===============================================
   Stripe-Zahlungsfeld – Styling für Astra Checkout
   =============================================== */

/* Stripe-Feld auf gleiche Breite wie die Eingabefelder bringen */
.woocommerce-checkout .wc-stripe-elements-field,
.woocommerce-checkout .stripe-card-group {
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box;
  margin-top: 0.5em;
}

/* Das Stripe-iframe-Feld anpassen */
.woocommerce-checkout .wc-stripe-elements-field iframe {
  width: 100% !important;
  min-height: 50px !important;
  padding: 10px 12px !important;
  border-radius: 6px !important;
  border: 1px solid #d1d1d1 !important;
  box-shadow: none !important;
  background: #fff !important;
}

/* Fokus-Effekt wie bei Astra-Inputs */
.woocommerce-checkout .wc-stripe-elements-field iframe:focus-within {
  border-color: #0073aa !important; /* Astra-Primary-Farbe */
  box-shadow: 0 0 0 1px #0073aa !important;
}

/* Abstand zu Labels & anderen Elementen angleichen */
.woocommerce-checkout .wc_payment_method label {
  display: block;
  margin-bottom: 0.5em;
}

.woocommerce-checkout .wc_payment_method .form-row {
  margin-bottom: 1.25em;
}

/* Optional: Feld leicht größer wirken lassen */
.woocommerce-checkout .wc-stripe-elements-field iframe {
  font-size: 16px !important;
}

/* Mobile Optimierung */
@media (max-width: 768px) {
  .woocommerce-checkout .wc-stripe-elements-field iframe {
    min-height: 46px !important;
    font-size: 15px !important;
  }
}

/* Nur das Label-Wort "Verfügbarkeit:" ausblenden */
.single-product .product_meta .label,
.single-product .availability .label,
.single-product .stock strong,
.single-product .stock-label,
.single-product .stock span.label {
  display: none !important;
}

/* ==========================================================
   12MEAT: Menüpunkt "Jetzt Events entdecken" (angepasst)
   ========================================================== */

/* Einheitliche Schriftgröße + kein Layout-Shift */
.main-header-menu .menu-item > a {
  white-space: nowrap; /* verhindert Zeilenumbruch bei langen Wörtern */
}

/* Button-Stil für "Jetzt Events entdecken" */
.main-header-menu .menu-item.menu-button > a {
  background-color: transparent;
  color: #25C0B5;
  padding: 5px 16px; /* etwas kompakter, bündiger mit Restmenü */
  border: 2px solid #25C0B5;
  border-radius: 24px;
  font-weight: 600;
  font-size: inherit; /* gleiche Schriftgröße wie andere Menülinks */
  box-shadow: none;
  text-decoration: none;
  display: inline-block;
  line-height: 1.4;
  transition: all 0.3s ease;
  margin-left: 8px;
  vertical-align: middle;
}

/* Hover-Effekt (Desktop) */
.main-header-menu .menu-item.menu-button > a:hover {
  background-color: #25C0B5;
  color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transform: translateY(-1px);
}

/* ==========================================================
   Mobile-Version (dezente Variante)
   ========================================================== */
.ast-mobile-header-wrap .menu-item.menu-button > a {
  display: inline-block;
  width: 100%;
  background-color: rgba(37, 192, 181, 0.08);
  color: #eff4f4;
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  font-weight: 600;
  margin: 6px 0;
  transition: all 0.3s ease;
}

.ast-mobile-header-wrap .menu-item.menu-button > a:hover {
  background-color: rgba(37, 192, 181, 0.2);
  color: #25C0B5;
}

/* 12MEAT SEO-Textblock Design */
.twelve-meat-seo-block {
  max-width: 780px;
  margin: 60px auto 30px;
  padding: 25px 30px;
  background: #fafafa;
  border-radius: 16px;
  border: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.twelve-meat-seo-block h2 {
  font-size: 1.3rem;
  color: #25C0B5;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 600;
}

.twelve-meat-seo-block a {
  color: #25C0B5;
  text-decoration: none;
  font-weight: 500;
}

.twelve-meat-seo-block a:hover {
  text-decoration: underline;
}

/* 12MEAT Whiteboard – Animated Black & White Edition */
.meat-wb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
  padding: 2rem 1rem;
  justify-items: center;
  background: #fff;
}

/* Animierter Einstieg */
.meat-wb-item {
  background: #f8f8f8;
  border: 2px solid #000;
  border-radius: 18px;
  padding: 1.5rem;
  text-align: center;
  max-width: 320px;
  box-shadow: 4px 4px 0 #000;
  opacity: 0;
  transform: translateY(20px);
  animation: wbFadeIn 0.8s ease forwards;
  animation-delay: calc(var(--i, 1) * 0.1s);
  transition: all 0.25s ease;
}

/* Hover-Wippeffekt */
.meat-wb-item:hover {
  background: #fff;
  box-shadow: 6px 6px 0 #000;
  transform: translate(-2px, -2px) rotate(-1deg);
}

/* QR & Bild */
.meat-wb-thumb {
  border-radius: 12px;
  margin-bottom: 1rem;
  border: 1px solid #000;
  max-width: 180px;
  transition: transform 0.3s ease;
}
.meat-wb-thumb:hover {
  transform: scale(1.05);
}

/* Typografie */
.meat-wb-item h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #000;
  margin-top: 0.5rem;
  line-height: 1.4;
  transition: transform 0.2s ease;
}

.meat-wb-item a {
  color: #000;
  text-decoration: none;
  border-bottom: 1px dashed #000;
  transition: all 0.2s ease;
}

.meat-wb-item a:hover {
  border-bottom: 1px solid #000;
}

/* Responsive */
@media (max-width: 600px) {
  .meat-wb-grid {
    grid-template-columns: 1fr;
  }
}

/* Keyframes für Einstiegseffekt */
@keyframes wbFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.updated,
.error {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.95rem;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  display: inline-block;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.updated {
  background: #e6ffe6;
  color: #0a7d0a;
}

.error {
  background: #ffecec;
  color: #a00;
}

/* === 12MEAT Poster-Galerie zentrieren & 3-spaltig darstellen === */
.poster-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-content: center;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

/* Einzelne Karten */
.poster-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.poster-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* Bilder gleichmäßig darstellen */
.poster-image {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Titel stilistisch angleichen */
.poster-title {
  padding: 1.2rem 1rem;
}

.poster-title-big {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #000;
}

.poster-title-small {
  font-size: 1rem;
  color: #555;
  margin-top: 0.2rem;
}

/* Der kleine Pfeil unten rechts */
.poster-icon {
  display: inline-block;
  font-size: 1.3rem;
  color: #00bfa6;
  text-decoration: none;
  margin-bottom: 1rem;
  transition: color 0.2s ease;
}

.poster-icon:hover {
  color: #ff6b00;
}

/* === 12MEAT – Beitragsnavigation global ausblenden === */
.single-post-navigation,
.ast-single-post-navigation,
.ast-previous-post,
.ast-next-post,
.post-navigation {
  display: none !important;
}

/* Featured Image & Banner bei Kategorie 12meat entfernen */
.single-post.category-12meat .ast-single-post-featured-section,
.single-post.category-12meat .ast-article-image-container,
.single-post.category-12meat .ast-single-entry-banner {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Header + Content ohne Hintergrund / Schatten */
.single-post.category-12meat #masthead,
.single-post.category-12meat #content,
.single-post.category-12meat .ast-container,
.single-post.category-12meat .site-content {
    background: transparent !important;
    box-shadow: none !important;
    margin-top: 0 !important;
}

/* Weißer Website-Hintergrund */
.single-post.category-12meat body,
.single-post.category-12meat .site {
    background: #fff !important;
}

/* Beitragsbilder abrunden – nur Kategorie "stories" */
body.category-stories .ast-blog-featured-section img,
body.single-stories .ast-blog-featured-section img {
  border-radius: 14px;
  overflow: hidden;
}

/* Für Grid / Blog Layouts (z. B. Startseite oder Archiv) */
body.category-stories .post-thumb-img-content img,
body.archive.category-stories .post-thumb-img-content img {
  border-radius: 14px;
  overflow: hidden;
}

.stock.in-stock,
.stock.available-on-backorder {
    color: #FF7A00 !important;
    font-weight: 600 !important;
}

.stock.in-stock {
    font-size: 16px;
}

/* Poll-Container auf der Startseite nach oben ziehen */
.home .poll-random {
    margin-top: -25px !important;
}

/* Mobile-Fix: Abstand zwischen Button und Poll wiederherstellen */
@media (max-width: 768px) {
    .home .poll-random {
        margin-top: 20px !important; /* Abstand nach unten */
    }
}

/* Verhindert, dass das Theme Button-Texte automatisch groß schreibt */
.single_add_to_cart_button,
.add_to_cart_button {
    text-transform: none !important;
}

/* --- PREMIUM BUTTON DESIGN --- */

.woocommerce div.product form.cart .button {
    /* 1. Grundform & Größe */
    background-color: #00a99d; /* Deine Farbe (Teal) */
    color: #ffffff;
    border-radius: 50px;       /* Pillen-Form (sehr modern) */
    padding: 15px 40px;        /* Schön großzügig innen */
    font-size: 1.1em;
    font-weight: 600;
    border: none;
    
    /* 2. Breite & Layout */
    min-width: 250px;          /* Mindestbreite, damit er wichtig wirkt */
    transition: all 0.3s ease; /* Weicher Übergang für Animationen */
    
    /* 3. Initialer Schatten (Dezent) */
    box-shadow: 0 4px 6px rgba(0, 169, 157, 0.2); 
}

/* --- HOVER EFFEKT (Der "Lift-Up") --- */
.woocommerce div.product form.cart .button:hover {
    background-color: #008f85; /* Ein Tick dunkler beim Drüberfahren */
    
    /* Der Move: Button hebt sich leicht an */
    transform: translateY(-3px); 
    
    /* Schatten wird weicher und größer -> 3D Effekt */
    box-shadow: 0 10px 20px rgba(0, 169, 157, 0.3); 
}

/* --- MOBILE OPTIMIERUNG --- */
@media (max-width: 768px) {
    .woocommerce div.product form.cart .button {
        width: 100%;           /* Auf dem Handy volle Breite -> Daumenfreundlich */
        margin-top: 10px;      /* Kleiner Abstand nach oben */
    }
}

/* --- PREMIUM TITEL & UHR ICON --- */

/* 1. Die neue Zeile für Datum & Uhrzeit */
.title-date-subtitle {
    display: block;        /* Neue Zeile erzwingen */
    margin-top: 10px;      /* Abstand zum Haupttitel */
    font-size: 0.55em;     /* Schriftgröße (relativ zur H1) */
    font-weight: 400;      /* Dünne, elegante Schrift */
    color: #666;           /* Premium Grau */
    line-height: 1.5;
    letter-spacing: 0.5px;
}

/* 2. Das Uhr-Icon selbst */
.title-icon-clock {
    width: 1.1em;          /* Skaliert mit der Textgröße */
    height: 1.1em;
    vertical-align: middle; /* WICHTIG: Richtet Icon mittig zum Text aus */
    margin-bottom: 3px;     /* Kleine Korrektur nach oben */
    color: #888;           /* Icon kann etwas heller sein als Text */
}

/* 3. Wrapper für das Icon (sorgt für sauberen Abstand) */
.icon-wrapper {
    display: inline-block;
    margin-left: 8px;      /* Abstand zum Datum davor */
    margin-right: 2px;     /* Abstand zur Uhrzeit danach */
}

/* --- SVG ICON STYLING --- */

/* Klasse für Icons die im Text stehen */
.inline-icon {
    width: 20px;       /* Standardgröße wie ein Buchstabe */
    height: 20px;      /* Quadratisch */
    vertical-align: middle; /* WICHTIG: Richtet das Icon mittig zur Texthöhe aus */
    margin-right: 8px;  /* Kleiner Abstand zum Text danach */
    margin-bottom: 3px; /* Feinjustierung der Höhe */
    
    /* FARBE STEUERN: */
    /* Option A: Nimmt automatisch die Textfarbe an (sehr flexibel) */
    fill: currentColor; 
    
    /* Option B: Erzwingt deine Brand-Farbe (das Türkis vom Button) */
}

/* --- PREMIUM LOOK & FEEL ANPASSUNGEN --- */

/* 1. Titel harmonisieren */
.product_title.entry-title {
    font-weight: 700; /* Schön fett */
    text-align: center; /* Titel darf zentriert bleiben */
    margin-bottom: 20px;
        line-height: 1.3; /* Mehr Luft zwischen den Zeilen */

}

/* Macht den Datums-Teil feiner */
.product_title small {
    display: block; /* Erzwingt neue Zeile */
    font-size: 0.6em; /* Kleiner */
    font-weight: 400; /* Dünner */
    color: #666; /* Dezentes Grau */
    margin-top: 10px;
}

/* --- FIX: TEXT LINKSBÜNDIG & STRUKTUR --- */

/* --- FIX: Astra Centering Override --- */

/* 1. Den Container links ausrichten, aber mittig platzieren */
.single-product #tab-description,
.single-product .woocommerce-Tabs-panel--description {
    text-align: left !important; 
}

/* 2. JEDEN Absatz darin zwingen, links zu sein */
.single-product #tab-description p,
.single-product .woocommerce-Tabs-panel--description p,
.single-product #tab-description li,
.single-product .woocommerce-Tabs-panel--description li {
    text-align: left !important;
    justify-content: flex-start !important; /* Falls Flexbox im Spiel ist */
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 600px; /* Lesebreite */
}

/* 3. Die Überschrift darf zentriert bleiben */
.single-product #tab-description h2 {
    text-align: center !important;
    width: 100%;
}

/* 4. Das Icon vor dem Text korrigieren */
.single-product #tab-description svg.inline-icon {
    float: left; 
    margin-top: 4px;
    margin-right: auto !important;
    line-height: 1.6;
    color: #444;
}

/* Aber: Die Überschrift "Freu dich auf" darf zentriert bleiben! */
#tab-description h2,
.woocommerce-Tabs-panel--description h2 {
    text-align: center !important;
    margin-bottom: 30px;
}

/* Das Icon vor dem Text "Gemeinsam essen" etwas hübscher positionieren */
#tab-description .inline-icon {
    float: left; /* Icon links floaten lassen */
    margin-top: 4px; /* Optisch auf Texthöhe bringen */
    margin-right: 12px;
}

/* Flexbox für das Location-Icon korrigieren, damit es oben bleibt */
.custom-product-info > div {
    display: flex;
    align-items: flex-start; /* Icon bleibt oben, Text fließt daneben */
    justify-content: flex-start;
}

/* 3. Icons und Listen aufhübschen */
.woocommerce-product-details__short-description p, 
#tab-description p {
    margin-bottom: 1.5em; /* Mehr Platz zwischen Absätzen */
}

/* 4. Preis & Button Bereich aufräumen */
.price {
    font-size: 1.2em !important;
    color: #333 !important;
    font-weight: 600;
}

/* Optional: Den Beschreibung/Dein Abend Titel stylen */
#tab-description h2 {
    text-align: center; /* Überschrift mittig */
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 20px;
    text-transform: none; /* Keine GROSSBUCHSTABEN erzwingen */
}

/* --- MOBILE OPTIMIERUNG (Nur für Smartphones) --- */
@media (max-width: 768px) {

    /* 1. Titel etwas kompakter, damit er nicht 4 Zeilen braucht */
    .single-product .product_title.entry-title {
        font-size: 1.6rem !important; 
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    /* Das Datum unter dem Titel etwas kleiner */
    .title-date-subtitle {
        font-size: 0.5em; /* Wirkt feiner */
        margin-top: 5px;
    }

    /* 2. Der Button: Volle Breite, aber weniger Seiten-Polster */
    .woocommerce div.product form.cart .button {
        width: 100% !important; /* Nutzt den ganzen Platz */
        padding: 15px 10px !important; /* Verhindert Text-Umbruch */
        font-size: 1rem !important;
        margin-top: 10px; /* Kleiner Abstand zum Auswahlfeld */
    }

    /* Das Mengenfeld und der Button untereinander statt nebeneinander? */
    /* Falls es zu gequetscht wirkt, aktiviere die nächsten 3 Zeilen: */
    /* .single-product form.cart {
        flex-direction: column;
    } */

    /* 3. Die Deadline-Box (Anmeldeschluss) */
    .tm12-dl-box {
        margin-top: 25px !important; /* Weniger Abstand nach oben als am Desktop */
        padding: 15px !important;    /* Kompakter */
        width: 100% !important;      /* Nutzt die volle Breite */
        box-sizing: border-box;      /* Verhindert, dass der Rahmen breiter als das Handy ist */
    }

    /* 4. Text-Layout: Ränder nutzen */
    .single-product #tab-description,
    .single-product .woocommerce-Tabs-panel--description {
        padding-left: 5px;
        padding-right: 5px;
    }
    
    /* Icons im Text mobil gut ausrichten */
    .single-product #tab-description svg.inline-icon {
        margin-top: 2px; /* Feinjustierung */
    }
}

.woocommerce div.product form.cart .button {
    /* ... dein vorhandener Code ... */
    -webkit-appearance: none; /* Deaktiviert den Glas-Effekt */
}

/* Entfernt die Linie und den Abstand unter dem Kaufen-Button */
.woocommerce div.product form.cart {
    border-bottom: none !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Falls dein Theme eine spezielle Trennlinie (Divider) nutzt, verstecken wir sie hiermit */
.product_meta {
    border-top: none !important;
    margin-top: 0 !important;
}

/* Optional: Zieht deine Deadline-Box noch näher ran, falls nötig */
.custom-deadline-box {
    position: relative;
    top: -5px; /* Zieht die Box noch ein stückchen höher */
}

/* Header oben fixieren */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000; /* Damit der Header immer ÜBER dem Inhalt liegt */
}

/* Sicherheitsnetz: Innere Container transparent schalten */
.ast-mobile-popup-inner {
    background-color: transparent !important;
}

/* === NOTFALL-FIX: TEXT WIEDER LINKSBÜNDIG === */

/* 1. Den Container und die Kurzbeschreibung zwingen */
.single-product #tab-description,
.single-product .woocommerce-Tabs-panel--description,
.woocommerce-product-details__short-description {
    text-align: left !important;
    max-width: 800px; /* Lesebreite begrenzen */
    margin-left: auto !important;
    margin-right: auto !important;
}

/* 2. Jeden einzelnen Absatz und Listenpunkt darin links ausrichten */
.single-product #tab-description p,
.single-product .woocommerce-Tabs-panel--description p,
.single-product #tab-description ul,
.single-product #tab-description li,
.woocommerce-product-details__short-description p {
    text-align: left !important;
    justify-content: flex-start !important;
}

/* 3. Überschriften dürfen zentriert bleiben (sieht besser aus) */
.single-product #tab-description h2,
.single-product .woocommerce-Tabs-panel--description h2 {
    text-align: center !important;
}


/* Datum und Uhrzeit IN der weißen Box ausblenden */
.tribe-events-calendar-list__event-datetime-wrapper {
    display: none !important;
}

/* ==========================================================
   📱 12MEAT FIX: IPHONE STATUS BAR & HEADER (100% Screen)
   ========================================================== */

/* 1. Zwingt das türkise Overlay über ALLES (auch über den Header/Logo oben) */
body.ast-mobile-popup-open .ast-mobile-popup-overlay {
    top: 0 !important;
    left: 0 !important;
    height: 100vh !important;
    height: 100dvh !important; 
    z-index: 10000 !important; /* Z-Index reduziert */
    margin-top: 0 !important;
}

/* 2. Macht den Header selbst unsichtbar/transparent, damit nichts Weißes durchblitzt */
body.ast-mobile-popup-open .site-header,
body.ast-mobile-popup-open .ast-mobile-header-wrap,
body.ast-mobile-popup-open .main-header-bar {
    background-color: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

/* 3. Korrigiert das "X" (Schließen) und den Inhalt, damit sie nicht kleben */
body.ast-mobile-popup-open .ast-mobile-popup-drawer {
    padding-top: env(safe-area-inset-top, 20px) !important; 
    z-index: 10001 !important; /* Z-Index reduziert */
}

/* 4. Falls das Logo noch über dem Türkis schwebt -> auch weiß färben */
body.ast-mobile-popup-open .site-logo-img img,
body.ast-mobile-popup-open .custom-logo-link img {
    filter: brightness(0) invert(1) !important; 
    /* opacity: 0.95; <-- optional entfernt */
}

/* ==========================================================
   5. SCHRIFT-ANPASSUNG (Fett & Weiß)
   ========================================================== */

body.ast-mobile-popup-open .ast-mobile-popup-content .menu-item a,
body.ast-mobile-popup-open .ast-builder-menu-mobile .main-header-menu .menu-item > .menu-link {
    
    font-weight: 700 !important;           /* Fett */
    color: #FFFFFF !important;             /* Weiß */
    
    /* Deine bestehenden Anpassungen */
    text-transform: capitalize !important; /* Groß/Klein normal */
    letter-spacing: 3px !important;        /* Abstand */
}

/* 5.1 Stellt sicher, dass die Schrift auch beim Antippen (Active/Focus/Hover) weiß bleibt */
body.ast-mobile-popup-open .ast-mobile-popup-content .menu-item a:hover,
body.ast-mobile-popup-open .ast-mobile-popup-content .menu-item a:focus,
body.ast-mobile-popup-open .ast-mobile-popup-content .menu-item a:active,
body.ast-mobile-popup-open .ast-builder-menu-mobile .main-header-menu .menu-item > .menu-link:hover,
body.ast-mobile-popup-open .ast-builder-menu-mobile .main-header-menu .menu-item > .menu-link:focus {

    color: #FFFFFF !important;
}


/* ==========================================================
   6. HINTERGRUND-FARBE "TOTAL" (Vermeidet weiße Blitzer)
   ========================================================== */

/* Färbt den gesamten Body und den Menü-Container ein */
body.ast-mobile-popup-open, 
body.ast-mobile-popup-open .ast-mobile-popup-drawer {
    
    background-color: #1abc9c !important; 
 
}


/* ==========================================================
   FIX: Mobiles Menü Weiß & Fett (Off-Canvas Overlay)
   ========================================================== */

/* 1. Zielt auf den gesamten Popup-Container */
#ast-mobile-popup .ast-builder-menu-mobile .main-header-menu .menu-item > .menu-link,
#ast-mobile-popup .menu-item a {
    color: #ffffff !important;       /* Erzwingt Weiß */
    font-weight: 700 !important;     /* Erzwingt Fett */
    text-transform: none !important; /* WICHTIG: Keine automatische Großschreibung! */
    letter-spacing: 3px !important;
}

/* 2. (Optional) Falls die "aktiven" Links (wie "Über uns" in Türkis)
      auch weiß sein sollen, nutze diesen Teil zusätzlich: */
#ast-mobile-popup .current-menu-item > .menu-link {
    color: #ffffff !important; 
}

/* SKU verstecken */
.sku_wrapper, .product_meta .sku { display: none !important; }

/* =========================================
   SINGLE POST CARD DESIGN (Nur für Kategorie "Stories")
   ========================================= */

/* 1. Hintergrund der Seite leicht grau färben (damit die weiße Karte wirkt) */
body.single-post.category-stories {
    background-color: #fbfbfd !important; /*  light gray */
}

/* 2. Die "Karte" (Der Haupt-Container) */
body.single-post.category-stories .ast-article-single {
    background: #fff;
    max-width: 800px; /* Optimale Lesebreite */
    margin: 40px auto !important; /* Zentriert die Karte */
    padding: 60px !important;
    border-radius: 24px !important; /*  Radius */
    box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important; /* Dein Schatten */
    border: 1px solid rgba(0,0,0,0.04);
}

/* 3. Das Beitragsbild oben abrunden */
body.single-post.category-stories .ast-single-post-featured-section img {
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    width: 100%;
}

/* 4. Titel Design Anpassung */
body.single-post.category-stories h1.entry-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    text-align: center; /* Titel zentrieren sieht oft edler aus auf Karten */
}

/* 5. Meta-Daten (Datum/Autor) zentrieren und stylen */
body.single-post.category-stories .entry-meta {
    text-align: center;
    color: #86868b;
    font-size: 0.9rem;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

/* 6. Mobile Anpassung (Damit es am Handy nicht gequetscht wirkt) */
@media (max-width: 768px) {
    body.single-post.category-stories .ast-article-single {
        margin: 10px auto !important;
        padding: 30px 20px !important; /* Weniger Innenabstand mobil */
        width: 95% !important; /* Fast volle Breite */
        box-shadow: 0 5px 15px rgba(0,0,0,0.05) !important;
    }

    body.single-post.category-stories h1.entry-title {
        font-size: 1.8rem; /* Titel etwas kleiner mobil */
    }
}

/* Optional: Sidebar ausblenden, falls sie bei Stories noch an ist */
body.single-post.category-stories #secondary {
    display: none !important;
}
body.single-post.category-stories #primary {
    width: 100% !important;
}


    /* 1. Basis-Design & Reset */
    #af-footer {
        width: 100%;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        color: #ffffff;
        font-size: 14px;
        line-height: 1.6;
        padding-top: 20px;
    }

    /* 2. Desktop Layout: Erzwingt 3 Spalten nebeneinander */
    #af-grid {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: space-between !important;
        gap: 30px !important;
        align-items: flex-start !important;
    }

    /* 3. Links Reset: Verhindert, dass Astra die Links fett oder blockig macht */
    #af-footer a {
        text-decoration: none !important;
        box-shadow: none !important;
        border: none !important;
        color: #bbbbbb !important;
        transition: color 0.2s ease;
    }
    #af-footer a:hover {
        color: #ffffff !important;
    }

    /* 4. STÄDTE TRICK: Macht aus der Liste einen Fließtext */
    /* Wir zwingen die Elemente, sich wie Buchstaben zu verhalten (inline) */
    .af-city-wrapper span {
        display: inline !important; 
    }
    .af-city-wrapper a {
        display: inline !important;
        white-space: nowrap !important;
    }
    /* Fügt automatisch Kommas hinzu */
    .af-city-wrapper span::after {
        content: ", ";
        color: #666;
    }
    .af-city-wrapper span:last-child::after {
        content: ""; /* Letztes Komma weg */
    }

    /* 5. Mobile Ansicht: Alles untereinander */
    @media (max-width: 768px) {
        #af-grid {
            flex-direction: column !important;
        }
        .af-col {
            width: 100% !important;
            margin-bottom: 30px !important;
        }
    }