body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans', sans-serif;
  }

header {
  background-color: #f8f8f8; /* Light background color */
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: Box shadow for a subtle elevation effect */
  position: fixed;
  top: 0; /* Stelle sicher, dass der Header oben fixiert ist */
  z-index: 1000; /* Höherer Z-Index, um sicherzustellen, dass der Header über anderen Elementen bleibt */
  width: 100%;
}

.logo-container img {
  margin-left: 20px;
  max-height: 40px; /* Adjust the maximum height as needed */
}

.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.menu ul li {
  margin-right: 20px;
}

.menu ul a {
  text-decoration: none;
  color: #333; /* Dark text color */
  font-weight: bold;
  font-size: 18px;
  transition: color 0.3s ease-in-out;
}

.menu ul a:hover {
  color: #ff6600; /* Highlight color on hover */
}

.menu i {
  font-size: 24px;
  margin-top: -2px;
}

#hamburger-icon {
  margin: auto 0;
  display: none;
  cursor: pointer;
}

#hamburger-icon div {
  width: 35px;
  height: 3px;
  background-color: black;
  margin: 6px 0;
  transition: 0.4s;
  margin-right: 20px;
}

.menu .open .bar1 {
  -webkit-transform: rotate(-45deg) translate(-6px, 6px);
  transform: rotate(-45deg) translate(-6px, 6px);
}

.menu .open .bar2 {
  opacity: 0;
}

.menu .open .bar3 {
  -webkit-transform: rotate(45deg) translate(-6px, -8px);
  transform: rotate(45deg) translate(-6px, -8px);
}

.menu .open .mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.menu .mobile-menu {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  /* height: calc(100vh - 64px); */
  width: 100%;
  background-color: #f8f8f8;
}

.menu .mobile-menu li {
  margin-top: 10px;
  margin-bottom: 10px;
}

.login-status {
  position: absolute;
  top: 34px; /* Gleiche Position wie der Warenkorb-Zähler */
  right: 56px; /* Abstand rechts anpassen */
  background-color: #28a745; /* Grüner Hintergrund */
  color: white;
  border-radius: 50%; /* Kreisform */
  width: 18px; /* Feste Breite für einen perfekten Kreis */
  height: 18px; /* Feste Höhe für einen perfekten Kreis */
  display: flex; /* Zentriere den Inhalt */
  align-items: center; /* Zentriere den Inhalt vertikal */
  justify-content: center; /* Zentriere den Inhalt horizontal */
}

.login-status i {
  font-size: 10px; /* Kleinere Schriftgröße für den Haken */
  vertical-align: middle; /* Zentriere den Haken vertikal */
  position: relative; /* Ermöglicht die Verwendung von top */
  top: 1px; /* Verschiebt den Haken leicht nach unten */
}

.cart-count {
  position: absolute;
  top: 34px;  /* Positionierung oberhalb des Warenkorb-Icons */
  right: 10px;  /* Positionierung rechts außen */
  background-color: #ff6600;  /* Hintergrundfarbe des Zählers */
  color: white;
  border-radius: 50%;
  padding: 2px 6px;  /* Größe des Kreises */
  font-size: 12px;  /* Textgröße der Anzahl */
  font-weight: bold;
}

.cart-count::after {
  content: '';
  position: absolute;
}


@media only screen and (max-width: 600px) {
  header nav {
    display: none;
  }

  #hamburger-icon {
    display: block;
  }
}


/* DEBUG */
div {
  border: 0px;
  border-style: solid;
}



/* Previous styles remain unchanged */

.generic {
  /* background-color: #f8f8f8; /* Light background color */
  padding: 60px 20px;
}

.generic-content {
  max-width: 800px;
  margin: 0 auto;
}

.generic-content form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.generic-content form label {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.generic-content form input,
.generic-content form textarea {
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
}

.generic-content form button {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: #ff6600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.generic-content form button:hover {
  background-color: #e05500;
}

.generic h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333; /* Dark text color */
}

.generic a {
  text-decoration: none;
  color: #333; /* Dark text color */
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}

.generic a:hover {
  color: #ff6600; /* Highlight color on hover */
}




/* Previous styles remain unchanged */

.contact-info {
  text-align: center;
  padding: 40px 20px;
}

.contact-info-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-info-content a {
  text-decoration: none;
  color: #333; /* Dark text color */
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}

.contact-info-content a:hover {
  color: #ff6600; /* Highlight color on hover */
}


.contact-info h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333; /* Dark text color */
}

.contact-info p {
  font-size: 18px;
  color: #666; /* Medium text color */
  margin-bottom: 20px;
}

.contact-details p {
  font-size: 16px;
  color: #333; /* Dark text color */
  margin: 10px 0;
}

.contact-details strong {
  font-weight: bold;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-icon {
  margin: 0 15px;
  display: inline-block;
}

.social-icon img {
  width: 40px; /* Adjust the size of contact icons */
  transition: transform 0.3s ease-in-out;
}

.social-icon:hover img {
  transform: scale(1.2); /* Enlarge the icon on hover */
}

@media (max-width: 768px) {
  .contact-info-content {
      padding: 0 20px;
  }
}





/* Previous styles remain unchanged */

footer {
  background-color: #f8f8f8; /* Light background color */
  padding: 20px 0;
  text-align: center;
}


.footer-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo img {
  max-height: 40px;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.footer-links li {
  margin-right: 20px;
}

.footer-links a {
  text-decoration: none;
  color: #333; /* Dark text color */
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}

.footer-links a:hover {
  color: #ff6600; /* Highlight color on hover */
}

.footer-social-icon img {
  width: 40px; /* Adjust the size of contact icons */
  transition: transform 0.3s ease-in-out;
}

.footer-social-icon:hover img {
  transform: scale(1.2); /* Enlarge the icon on hover */
}



.footer-bottom {
  margin-top: 20px;
  color: #666; /* Medium text color */
}

@media (max-width: 768px) {
  .footer-content {
      flex-direction: column;
  }
  .footer-links {
      margin-top: 10px;
      margin-bottom: 10px;
  }
}






