/* RESET */
body {
  margin: 0;
  font-family: 'Inter', 'Montserrat', Arial, sans-serif;
  background-color: #f8f9fa;
  color: #000;overflow-x: hidden
}
 
.bgwhite {
  background: #f3f3f3;
}

.subje {background: #fff;
  box-shadow: 0 0 40px 0 rgba(0,0,0,.24);
  padding: 15px;
  transition: top ease 300ms;
  top: 0;  
  width: 100%; min-height: 250px;
  flex-direction: column;}

.subje1 {background: #fff;
  box-shadow: 0 0 40px 0 rgba(0,0,0,.24);
  transition: top ease 300ms;
  top: 0; 
  padding: 15px;
  width: 100%; min-height: 20px;
  flex-direction: column;}


 @media (max-width: 767px) {
  .lowe {
    display: none !important;
  }
}
.lowe {width: 200px;
  padding-top: 5px;}


/* Abschnitt für Zusatzstoffe / Allergene */
.allergie-box {
  padding: 2em 0;
  margin-top: 2em;
  background-color: #ffffff;
}
.about-text {
  font-size: 14px;
  color: #000;
}
.info-hinweis {
  font-size: 13px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 0;
}

/* Standard-Link */
a {
  color: #000;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* Link in Angebotsbox */
.angebot-box a {
  display: inline-block;
  width: 100%;
  padding: 1rem;
  text-align: center;
  border-radius: 10px;
  background-color: #ffffff;
  border: 1px solid #edf2f4;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.045);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.angebot-box a:hover {
  color: #00418d;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.065);
  text-decoration: none;
}

.ab-preis {
  color: #00418d;
  font-weight: 600;
  font-size: 1rem;
  margin-left: 10px;
}

.fas.fa-cart-arrow-down {
  margin-right: 5px;
}

/* Preisvarianten */
.dropdown-preise {
  margin-top: 0.7rem;
}
.dropdown-preise select {
  width: 100%;
  padding: 0.45em 0.7em;
  font-size: 0.95rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: #ffffff;
  cursor: pointer;
  transition: border-color 0.2s;
}
.dropdown-preise select:hover {
  border-color: #000;
}

/* Desktop sichtbar */
.pc {
  display: block;
}
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

/* Mobile sichtbar */
.mobile {
  display: none;
}
@media (max-width: 767px) {
  .mobile {
    display: inline-block !important;
  }
}

/* Überschrift */
h3 {
  text-align: center;
  font-size: 1.8rem;
  color: #000;
  margin-top: 1.2em;
}
.h-subline {
  width: 70px;
  height: 3px;
  background: #000;
  margin: 0.7em auto 1.5em;
  border-radius: 2px;
}

/* Banner */
.top-banner-fixed {
  background: #00418d;
  color: #f3f3f3;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 0.3em 1.2em;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  flex-wrap: nowrap;
  border-bottom: 2px solid #d62828;
}

.top-banner-fixed .left {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.banner-highlight {
  font-size: 1.4em;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.banner-subtext {
  font-size: 0.85em;
  color: #f8f9fa;
  opacity: 0.95;
  margin-top: 0.1em;
  white-space: nowrap;
}

.top-banner-fixed .right a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
}
.top-banner-fixed .right a:hover {
  text-decoration: underline;
}

/* Animation Highlight */
@keyframes pulse-rabatt {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.banner-highlight {
  animation: pulse-rabatt 3s ease-in-out infinite;
}

/* RESPONSIVE BANNER */
@media (max-width: 600px) {
  .top-banner-fixed {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
  }
  .top-banner-fixed .left {
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
  }
  .banner-subtext {
    margin-top: 0;
    font-size: 0.8em;
    opacity: 0.75;
  }
  .top-banner-fixed .right {
    margin-left: auto;
  }
}
@media (max-width: 400px) {
  .banner-subtext {
    display: none;
  }
}


/* 🌐 NAVIGATION */
.nav-pure {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1.2rem;
  background: #f3f3f3;
  border-bottom: 2px solid #fff;
  margin-top: 50px;
  flex-wrap: wrap;
}

.nav-toggle-label {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-top: 0px;
}

.nav-toggle-label:hover {
  color: #00418d;
}

.nav-toggle-checkbox {
  display: none;
}

.nav-horizontal-menu {
  flex: 1;
  overflow-x: auto;
  padding-top: 0em;margin-top: -5px;
}

.nav-scroll-list {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  align-items: center;
  white-space: nowrap;
}

.nav-scroll-list li a {
  color: #000;
  text-decoration: none;
  padding: 15px 10px;
  font-weight: bold;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}

.nav-scroll-list li a:hover {
  background: #00418d;
  color: #ffffff;
  border-radius: 3px;
}

/* Menü-Dropdown mobil */
.nav-dropdown {
  display: none;
  width: 100%;
  padding-top: 0.5rem;
}

.nav-dropdown ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-transform: uppercase;
}

.nav-dropdown li a {
  color: #000;
  text-decoration: none;
  padding: 6px 10px;
  display: inline-block;
  font-weight: 500;
}

.nav-dropdown li a:hover {
  background: #00418d;
  color: #ffffff;
  border-radius: 3px;
}

.nav-toggle-checkbox:checked ~ .nav-dropdown {
  display: block;
}

/* Scrollbar ⬇ */
.sauber-scroll {
  scrollbar-width: thin;
  scrollbar-color: #000 #f3f3f3;
}

.sauber-scroll::-webkit-scrollbar {
  width: 7px;
  height: 7px;
  background: #f3f3f3;
}

.sauber-scroll::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 5px;
  border: 2px solid #f3f3f3;
  min-height: 40px;
}

.sauber-scroll::-webkit-scrollbar-thumb:hover {
  background: #000;
}

.sauber-scroll::-webkit-scrollbar-track {
  background: #f3f3f3;
  border-radius: 5px;
}

/* Menü-Items & Buttons */
.menu-item {
  font-size: 0.95rem;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 10px;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}

.menu-item:hover,
.menu-item.active-look {
  background: #00418d;
  color: #ffffff;
  border-radius: 3px;
}

footer#kontakt {
  position: relative;
  overflow: hidden;
  background: #fff;
  color: #000;
  padding: 4em 0 2.5em 0;
  font-family: 'Inter', 'Montserrat', Arial, sans-serif;
  border-top: 2px solid #f3f3f3;
  margin-top: 4em;
}
.footer-bg-bubbles {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
footer .container,
.copyright .container {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 0 5vw;
}
footer .row,
.row {
  display: flex;
  flex-wrap: nowrap;
  gap: 2em;
  justify-content: center;
  align-items: flex-start;
}
footer .col,
.col {
  min-width: 240px;
  background: transparent;
  padding: 0 22px;
  box-sizing: border-box;
}
.brand {
  font-size: 0.8em;
  font-weight: bold;
  letter-spacing: 0.5px;
  color: #000;
  margin-bottom: 0.45em;
}
footer h2 {
  font-size: 1.13em;
  color: #000;
  font-weight: 600;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  padding-left: 0.7em;
  margin-bottom: 0.67em;
  line-height: 1.3;
}
address {
  color: #5c6c7f;
  margin-bottom: 1em;
  line-height: 1.6;
}
.phone {
  color: #00418d;
  font-weight: 600;
  margin: 1em 0;
  font-size: 1.2em;
}
.note {
  font-size: 0.97em;
  color: #616f81;
  margin-bottom: 1em;
}

.menu-link {
  display: inline-block;
  padding: 0.56em 1.3em;
  color: #00418d;
  border: 1px solid #00418d;
  background: #ffffff;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-decoration: none;
  margin: 0.68em 0 1.2em;
  transition: color 0.18s, background 0.18s, border-color 0.17s, box-shadow 0.22s;
  box-shadow: 0 1px 0 #e2eaf5;
}
.menu-link:hover,
.menu-link:focus {
  color: #ffffff;
  background: #000;
  border-color: #000;
  box-shadow: 0 2px 10px #a4d2ee50;
}
.pay-logo {
  width: 120px;
  margin-top: 1em;
  display: block;
  filter: grayscale(7%);
}
.open-times {
  background: #f3f3f3;
  padding: 1.2em 1em;
  font-size: .97em;
  border: 1px solid #00418d;
  color: #000;
  line-height: 1.7;
  box-sizing: border-box;
}
.open-times b,
.brand,
footer h2 {
  color: #000;
}
.feiertag b {
  color: #00418d;
}
.geschlossen {
  color: #00418d;
}

table.oeffnungszeiten {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1em;
}
table.oeffnungszeiten td,
table.oeffnungszeiten th {
  padding: 8px 12px;
  border-bottom: 1px solid #ccc;
}
table.oeffnungszeiten tr.heute {
  background-color: #e1ffe1;
  font-weight: bold;
}
table.oeffnungszeiten th {
  background-color: #f3f3f3;
  text-align: left;
}
.geschlossen {
  color: #888;
  font-style: italic;
}

/* Copyright */
.copyright {
  background: #f3f3f3;
  color: #444c5e;
  font-size: 0.97em;
  padding: 1.5em 0;
  border-top: 1px solid #00418d;
  text-align: center;
}
.footer-menu ul {
  display: inline-flex;
  gap: 1.4rem;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
}
.footer-menu li {
  white-space: nowrap;
}
.footer-menu a {
  color: #000 !important;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}
.footer-menu a:hover,
.footer-menu a:focus {
  color: #00418d;
}
.footer-menu li:last-child {
  color: #666;
}
.footer-menu strong {
  color: #000;
  font-weight: 600;
}

/* Bubble Animation */
.bubble {
  position: absolute;
  bottom: -70px;
  border-radius: 50%;
  opacity: 0.15;
  background-color: #f3f3f3;
  animation: bubble-rise 8s linear infinite;
  z-index: 1;
  pointer-events: auto;
  cursor: pointer;
  transition: transform 0.21s cubic-bezier(.33,1.5,.64,1),
              opacity 0.18s;
}
.bubble.b2 { width: 52px; height: 52px; left: 15%;  animation-delay: 2s; }
.bubble.b3 { width: 37px; height: 37px; left: 33%;  animation-delay: 3.1s; }
.bubble.b4 { width: 70px; height: 70px; left: 55%;  animation-delay: 1.5s; }
.bubble.b5 { width: 30px; height: 30px; left: 61%;  animation-delay: 0.9s; }
.bubble.b6 { width: 40px; height: 40px; left: 80%;  animation-delay: 2.6s; }
.bubble.b7 { width: 33px; height: 33px; left: 74%;  animation-delay: 0.7s; }
.bubble.b8 { width: 45px; height: 45px; left: 88%;  animation-delay: 5.7s; }

@keyframes bubble-rise {
  0%   { transform: translateY(0) scale(1); opacity: 0.16; }
  85%  { opacity: 0.19; }
  100% { transform: translateY(-390px) scale(1.13); opacity: 0; }
}
.bubble.burst {
  animation: none !important;
  transform: scale(2.4);
  opacity: 0;
  background-color: #ffffff;
  transition: transform 0.28s ease, opacity 0.22s;
}

/* Responsives Footer-Layout */
@media (max-width: 900px) {
  footer .container,
  .copyright .container {
    max-width: 100vw;
    padding-left: 7vw;
    padding-right: 7vw;
  }
  footer .row {
    flex-direction: column;
    gap: 2em;
    align-items: center;
  }
  footer .col {
    width: 100%;
    min-width: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .brand,
  section,
  address,
  .contact-highlights,
  .open-times {
    text-align: center !important;
  }
}
@media (max-width: 600px) {
  footer .col,
  .copyright .container {
    padding-left: 0;
    padding-right: 0;
  }
  footer .container,
  .copyright .container {
    padding: 0 5vw !important;
  }
}

/* === Liefergebiet Auswahl === */
.liefergebiet-section {
  max-width: 660px;
  margin: 2.5rem auto;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  animation: fadeIn 0.8s ease-out both;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}

/* Formulargruppen */
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}
.form-group label {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #000;
}
.form-group select {
  padding: 0.7rem 0.9rem;
  font-size: 1rem;
  color: #000;
  background: #f3f3f3;
  border: 1px solid #f3f3f3;
  border-radius: 5px;
  transition: border-color 0.2s ease;
}
.form-group select:focus {
  border-color: #000;
  outline: none;
  background: #e9f2fa;
}
.form-group .button {
  margin-top: 1rem;
  padding: 0.75rem 1.6rem;
  background-color: #00418d;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.15s ease;
}
.form-group .button:hover {
  background-color: #d62828;
  transform: translateY(-2px);
}

/* GRID SYSTEM */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
[class^="col-"] {
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}
.col-1  { width: 8.3333%; }
.col-2  { width: 16.6667%; }
.col-3  { width: 25%; }
.col-4  { width: 33.3333%; }
.col-5  { width: 41.6667%; }
.col-6  { width: 50%; }
.col-7  { width: 58.3333%; }
.col-8  { width: 66.6667%; }
.col-9  { width: 75%; }
.col-10 { width: 83.3333%; }
.col-11 { width: 91.6667%; }
.col-12 { width: 100%; }

@media (min-width: 576px) {
  .col-sm-1  { width: 8.3333%; }
  .col-sm-2  { width: 16.6667%; }
  .col-sm-3  { width: 25%; }
  .col-sm-4  { width: 33.3333%; }
  .col-sm-5  { width: 41.6667%; }
  .col-sm-6  { width: 50%; }
  .col-sm-7  { width: 58.3333%; }
  .col-sm-8  { width: 66.6667%; }
  .col-sm-9  { width: 75%; }
  .col-sm-10 { width: 83.3333%; }
  .col-sm-11 { width: 91.6667%; }
  .col-sm-12 { width: 100%; }
}
@media (min-width: 768px) {
  .col-md-1  { width: 8.3333%; }
  .col-md-2  { width: 16.6667%; }
  .col-md-3  { width: 25%; }
  .col-md-4  { width: 33.3333%; }
  .col-md-5  { width: 41.6667%; }
  .col-md-6  { width: 50%; }
  .col-md-7  { width: 58.3333%; }
  .col-md-8  { width: 66.6667%; }
  .col-md-9  { width: 75%; }
  .col-md-10 { width: 83.3333%; }
  .col-md-11 { width: 91.6667%; }
  .col-md-12 { width: 100%; }
}
@media (min-width: 992px) {
  .col-lg-1  { width: 8.3333%; }
  .col-lg-2  { width: 16.6667%; }
  .col-lg-3  { width: 25%; }
  .col-lg-4  { width: 33.3333%; }
  .col-lg-5  { width: 41.6667%; }
  .col-lg-6  { width: 50%; }
  .col-lg-7  { width: 58.3333%; }
  .col-lg-8  { width: 66.6667%; }
  .col-lg-9  { width: 75%; }
  .col-lg-10 { width: 83.3333%; }
  .col-lg-11 { width: 91.6667%; }
  .col-lg-12 { width: 100%; }
}

 
/* Container fixiert rechts unten (Desktop), unten zentriert (Mobil) */
		 body {hyphens: auto;}
#bs-container {
  position: fixed;
  bottom: 0;
  right: 20px;
  width: 320px;
  max-width: 95vw;
  background: #fff;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  font-family: Arial, sans-serif;
  overflow: hidden;
  max-height: 600px; /* maximale Höhe, bei offen */
  transform: translateY(calc(100% - 48px)); /* anfänglich fast versteckt - nur Label sichtbar */
  transition: transform 0.3s ease;
  z-index: 9999;
  box-sizing: border-box;
}

/* Versteckte Checkbox */
.bs-toggle-checkbox {
  display: none;
}

/* Label-Button mit Pfeil */
#bs-toggle-label {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1d643b;
  color: white;
  cursor: pointer;
  user-select: none;
  padding: 12px 0;
  font-weight: bold;
  font-size: 1rem;
  gap: 10px;
  position: relative;
  z-index: 10000;
}

/* Pfeil im Label */
.bs-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  user-select: none;
  display: inline-block;
}

/* Inhalt Bereich */
#bs-content {
  padding: 15px;
  max-height: calc(600px - 48px); /* max Höhe minus Label Höhe */
  overflow-y: auto;
}

/* Checkbox checked: Container wird sichtbar, transform zurück auf 0 */
.bs-toggle-checkbox:checked + #bs-container {
  transform: translateY(0);
}

/* Checkbox checked: Pfeil dreht sich */
.bs-toggle-checkbox:checked + #bs-container + #bs-toggle-label .bs-arrow,
.bs-toggle-checkbox:checked + #bs-toggle-label .bs-arrow {
  transform: rotate(180deg);
}

/* Responsive auf Mobil: unten zentriert statt rechts */
@media (max-width: 767px) {
  #bs-container {
    left: 50%;
    right: auto;
    width: 100%;
    max-width: 480px;
    transform: translateX(-50%) translateY(calc(100% - 48px));
  }
  .bs-toggle-checkbox:checked + #bs-container {
    transform: translateX(-50%) translateY(0);
  }
}
/* Submit Button */
#bs-content input[type="submit"],
#bs-content button[type="submit"] {
  background-color: #1d643b;      /* Dunkelgrün passend zum Toggle */
  color: white;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  margin-top: 15px;
}

#bs-content input[type="submit"]:hover,
#bs-content button[type="submit"]:hover,
#bs-content input[type="submit"]:focus,
#bs-content button[type="submit"]:focus {
  background-color: #145027;       /* Etwas dunkler beim Hover/Focus */
  outline: none;
  box-shadow: 0 0 8px rgba(20, 80, 39, 0.7);
}

/* Eingabefelder (z.B. Texteingabe / Formularfelder im Bestellschein) */
#bs-content input[type="text"],
#bs-content input[type="email"],
#bs-content input[type="password"],
#bs-content select,
#bs-content textarea {
  width: 100%;
  padding: 8px 12px;
  margin: 8px 0 12px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

/* Fokus Zustand der Eingabe */
#bs-content input[type="text"]:focus,
#bs-content input[type="email"]:focus,
#bs-content input[type="password"]:focus,
#bs-content select:focus,
#bs-content textarea:focus {
  border-color: #1d643b;
  outline: none;
  box-shadow: 0 0 5px rgba(29, 100, 59, 0.6);
}

/* Optional: Bestellschein Hintergrund und Textstil */
#bs-content {
  background-color: #f9f9f9; /* helles, neutrales Hellgrau */
  color: #333;
  line-height: 1.5;
  font-size: 0.95rem;
  border-radius: 0 0 8px 8px;
}

/* Optional: Abstände bei Überschriften */
#bs-content h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: #1d643b;
  font-weight: 700;
}

/* Verbesserte Links im Warenkorb (+ / -) */
#bs-content a {
  text-decoration: none;
  font-weight: bold;
  color: #1d643b;
  transition: color 0.2s ease;
}

#bs-content a:hover,
#bs-content a:focus {
  color: #145027;
  outline: none;
  text-decoration: underline;
}
 