/*
Theme Name: GeneratePress Child
Theme URI: https://generatepress.com
Template: generatepress
Author: Tom Usborne
Author URI: https://generatepress.com/about
Description: GeneratePress is a lightweight WordPress theme built with a focus on speed and usability. Performance is important to us, which is why a fresh GeneratePress install adds less than 10kb (gzipped) to your page size. We take full advantage of the block editor (Gutenberg), which gives you more control over creating your content. If you use page builders, GeneratePress is the right theme for you. It is completely compatible with all major page builders, including Beaver Builder and Elementor. Thanks to our emphasis on WordPress coding standards, we can boast full compatibility with all well-coded plugins, including WooCommerce. GeneratePress is fully responsive, uses valid HTML/CSS, and is translated into over 25 languages by our amazing community of users. A few of our many features include 60+ color controls, powerful dynamic typography, 5 navigation locations, 5 sidebar layouts, dropdown menus (click or hover), and 9 widget areas. Learn more and check out our powerful premium version at https://generatepress.com
Tags: two-columns,three-columns,one-column,right-sidebar,left-sidebar,footer-widgets,blog,e-commerce,flexible-header,full-width-template,buddypress,custom-header,custom-background,custom-menu,custom-colors,sticky-post,threaded-comments,translation-ready,rtl-language-support,featured-images,theme-options
Version: 3.6.0.1763029272
Updated: 2025-11-13 11:21:12

*/

/* Ausblenden des Copyright-Eintrag in der Fußleiste  */
.site-info { display: none; }

/* automatische Silbentrennung */
p {
    hyphens: auto;
}

/* Container für PLZ-Feld und Button */
.plz-form-wrapper {
    display: flex; /* Elemente nebeneinander ausrichten */
    gap: 1rem; /* Kleiner Abstand zwischen den Elementen */
    align-items: center; /* Vertikale Ausrichtung */
    width: 100%; /* Sicherstellen, dass sie sich ausdehnen können */
}

/* PLZ-Feld und Button EXAKT gleich groß */
.plz-input,
.plz-button {
    width: 50%; /* Beide gleich breit */
    height: 3rem; /* Einheitliche Höhe */
    box-sizing: border-box; /* Stellt sicher, dass padding die Breite nicht verändert */
}

.plz-input::placeholder {
  color: #1a1a18;      /* eigene Wunschfarbe */
  font-size: 1rem;     /* eigene Schriftgröße */
}

/* Eingabefeld */
.plz-input {
    background-color: #ffffff !important;
	text-align: center;
    color: #1a1a18;
    border: 1px solid #1a1a18 !important; /* Feine Rahmenlinie */
    border-radius: 5px; /* Abgerundete Ecken */
    padding: 0 1rem; /* Innenabstand ausgleichen */
}

/* Button */
.plz-button {
    background-color: #ffe62d !important;
    font-weight: 600 !important; /* Macht den Text fett */
    border: none !important;
    border-radius: 35px;
    cursor: not-allowed !important;
    transition: background-color 0.3s ease;
    padding: 0; /* Kein extra Padding, da Höhe über height geregelt wird */
    display: flex;
    align-items: center; /* Text vertikal zentrieren */
    justify-content: center; /* Text horizontal zentrieren */
}


/* Label */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Stil für deaktivierten Button */
.plz-button[disabled] {
    background-color: #ffe62d !important; /* Farbe für deaktivierten Button */
    color: black !important;
    cursor: not-allowed !important;
}

/* Stil für aktivierten Button */
.plz-button:not([disabled]) {
    background-color: #ffe62d !important; /* aktivierter Button */
    color: black !important;              /* Schriftfarbe aktiv */
}

/* Stil beim Hover über einen aktivierten Button */
.plz-button:hover:not([disabled]) {
    background-color: #444f54 !important;
    color: white !important;
    cursor: pointer !important;
}

/* Responsive: Untereinander stapeln bei wenig Platz */
@media (max-width: 768px) {
  .plz-form-wrapper {
    flex-direction: column;
    gap: 0.59rem;
  }
  .plz-input,
  .plz-button {
    width: 100% !important; /* Volle Breite */
    max-width: none; /* Breitenbeschränkung aufheben */
  }
}

/* USP Selbstanlieferung / hero */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.feature-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.feature-text {
  margin: 0;
  font-size: 1em;
  line-height: 1.35;
  flex: 1 1 auto;
}
	
	/* ACF Felder für die Öffnungszeiten - Jede Zeile als Flex-Row */
	/* Liste resetten */
.bs-opening-hours {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Jede Zeile als Flex-Row */
.bs-opening-hours__item {
    display: flex;
    gap: 0.5rem;
}

/* Spalte für den Wochentag, feste Breite */
.bs-opening-hours__day {
    display: inline-block;
    min-width: 6.5rem; /* ggf. anpassen */
    flex-shrink: 0;
}

/* Zeiten / "Geschlossen" rechts daneben */
.bs-opening-hours__time,
.bs-opening-hours__closed {
    flex: 1 1 auto;
}

/* Alle Bewertungen - siehe mu-plugin */
.mammut-all-reviews { display: flow-root; }
.mammut-all-reviews :last-child { margin-bottom: 0; }

/* Kontaktdaten */
.contact-grid{
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 1rem;
  row-gap: .35rem;
  align-items: baseline;
}

.contact-grid > p:first-child{
  grid-column: 1 / -1;
  margin: 0 0 .25rem 0;
  font-weight: 400; /* optional */
}

.contact-grid .contact-label{ white-space: nowrap; font-weight: 400; }
.contact-grid .contact-value{ font-weight: 400; word-break: break-word; }
