<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* public/assets/css/style.css */

/* Basis-Stile */
body {
    font-family: 'Roboto', Arial, sans-serif;
    
    margin: 0;
    padding: 0;
    
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

html, body {
  height: 100%;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

footer {
  margin-top: auto;
}


/* Allgemeine Inhalte */
.main-content {
    margin: 0 auto;
}

/* Warenkorb-Seite */
.cart-page {
    margin-top: 20px;
}

.cart-page h2 {
    text-align: center;
    margin-bottom: 20px;
}

.cart-page .card {
    margin-bottom: 20px;
}

.cart-page .card-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.cart-page .card-text {
    margin-bottom: 10px;
}

.cart-page .btn-danger {
    margin-top: 10px;
}

/* Footer fixiert am unteren Rand */
.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #ddd;
    padding: 10px 0;
    text-align: center;
}

.product-item h3 {
  font-size: 1.0rem; /* statt Standardâ€“1.5rem o. Ã„. */
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    .cart-page .card {
        margin-bottom: 15px;
    }
}



  
  .menu-carousel {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .menu-carousel::-webkit-scrollbar {
    display: none;
  }

  .menu-carousel .card {
    scroll-snap-align: start;
    border-radius: 10px;
  }

  @media (min-width: 768px) {
    .menu-carousel .card {
      min-width: 32%;
      max-width: 32%;
    }
  }
  .hero-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .hero-section {
    height: 30vh;
    border-radius: 0.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out, opacity 1s ease-in-out;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
  }
  
  /* DEINE bleibt unverÃ¤ndert */
  @media (max-width: 768px) {
    .hero-section {
      padding: 1rem;
    }
  }
  
  .hero-bg,
.hero-bg-next {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* passt sich jetzt an die gepaddete Section an */
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0.5rem;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.hero-bg {
  opacity: 1;
}

.hero-bg-next {
  opacity: 0;
}
.size-price {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.1;
  display: inline-block;
  white-space: nowrap; /* verhindert Umbruch */
}
.form-check-input:checked {
  background-color: #dc3545 !important;
  border-color: #dc3545 !important;
}

.extra-price {
  font-size: 0.9rem;
  font-weight: 500;
  color: #000000;
  margin-left: auto;
  text-align: right;
  min-width: 60px;
}
  
body { font-family: 'Poppins', sans-serif; }
.toggle-container {
  display: flex; gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}
.toggle-container input[type="radio"] { display: none; }
.toggle-container label {
  border-radius: 50px;
  padding: 0.3rem 0.7rem;
  font-size: 0.75rem;
  cursor: pointer;
  border: 2px solid #dc3545;
  color: #dc3545;
  transition: all 0.3s ease;
}
.toggle-container input[type="radio"]:checked + label {
  background-color: #dc3545;
  color: #fff;
}
.btn-lg.custom-pay-button {
  font-size: 0.875rem !important;
  padding: 0.5rem 1rem;
}
.input-group .form-control {
  max-width: 60px;
  min-width: 40px;
  padding: 0.25rem;
}
.main-container {
  padding-bottom: 180px;
}

.extra-hidden {
  transition: all 0.3s ease;
}

.open-modal-btn {
  /* 1. Gleiche Breite und HÃ¶he festlegen */
  width: 40px;
  height: 40px;

  /* 2. Padding entfernen, damit der Inhalt exakt zentriert ist */
  padding: 0;

  /* 3. Rundung auf 50 % setzen = perfekter Kreis */
  border-radius: 50%;

  /* 4. Flexbox nutzen, um das â€ž+â€œ horizontal und vertikal zu zentrieren */
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1320px;
  height: 80px;
  border-radius: 10px;
  background: #d9230f;
  z-index: 1000;
  display: flex;
  margin-bottom:10px;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
}

/* Link-Styles */
.bottom-nav a {
  flex: 1;
  text-align: center;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Icon */
.bottom-nav a i {
  font-size: 22px;
  margin-bottom: 2px;
}

/* Aktiver Link */
.bottom-nav a.active {
  color: rgb(126, 126, 125);
  font-weight: 600;
}

/* Warenkorb-Badge */
.bottom-nav a .badge {
  position: absolute;
  top: 2px;
  right: 26%;
  background-color: #ffc107;
  color: #000;
  font-size: 10px;
  padding: 3px 6px;
  border-radius: 50%;
  font-weight: bold;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(255, 193, 7, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
  }
}
</pre></body></html>