/* Menü */
.menu {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
  }
  
  .menu.hidden {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
  }
  
  .menu .menu-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 66px;
    max-width: var(--max-content-width);
    margin: 10px 110px;
    padding: 20px;
  }
  
  .logo img {
    height: 50px;
    width: auto;
    display: block;
  }
  
  .menu .logo {
    text-decoration: none;
    margin-right: auto;
  }
  
  /* Menüpunkte */
  .menu .menu-items {
    list-style: none;
    display: flex;
    gap: 10px;
  }
  
  .menu .menu-items li a {
    font-family: "EB Garamond", serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
  }
  
  .menu .menu-items li a:hover {
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
  }
  
  /* Hamburger-Menü */
  .menu .hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 1001;
  }
  
  .menu .hamburger span {
    width: 30px;
    height: 3px;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
  }
  
  /* Menü für kleinere Bildschirme */
  @media (max-width: 768px) {
    .menu .menu-items {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 50px;
      left: 0;
      width: 100%;
      background-color: rgba(255, 255, 255, 0.95);
      padding: 20px;
    }
  
    .menu .menu-items.active {
      display: flex;
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgb(255, 161, 94);
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
  
    .menu-items.active li a {
      font-family: "EB Garamond", serif;
      font-size: 50px;
      font-weight: 700;
      color: rgb(80, 80, 80);
    }
  
    .menu .hamburger {
      display: flex;
    }
  
    .menu .hamburger.active span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }
  
    .menu .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
  
    .menu .hamburger.active span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
  }
  
  /* Schließen-Button */
  .close-menu {
    display: none;
  }
  
  .close-menu svg {
    width: 30px;
    height: 30px;
    cursor: pointer;
  }
  
  @media (max-width: 768px) {
    .close-menu {
      position: fixed;
      top: 15px;
      right: 20px;
      z-index: 1002;
      display: block;
    }
  }
  
  @media (max-width: 768px) {
    .menu .hamburger {
      display: flex !important;
    }
    .close-menu {
      display: none !important;
    }
    .menu-items.active + .close-menu {
      display: block !important;
    }
  }
  
  /* Footer */
  footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 50px;
    font-family: "Open Sans", sans-serif;
  }
  
  .footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Gleichmäßige Verteilung */
    gap: 0; /* Kein zusätzlicher Abstand */
    height: 100%; /* Vollständige Höhe nutzen */
  }
  
  .footer-right {
    display: flex;
    flex-direction: column; /* Änderungen hier */
    justify-content: space-between; /* Gleichmäßige Verteilung */
    gap: 10px; /* Abstand zwischen den Elementen */
  }
  
  .footer-left h1 {
    font-family: "EB Garamond", serif;
    font-size: 24px;
    margin-bottom: 10px;
    line-height: 1.5; /* Einheitliche Zeilenhöhe */
  }
  
  .footer-left a {
    color: #000; /* Schwarze Schriftfarbe für E-Mail-Adresse */
    text-decoration: none;
  }
  
  .footer-left a:hover {
    text-decoration: underline;
  }
  
  /* Social Media Icons */
  .social-icons {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center; /* Zentrierung innerhalb der Zeile */
  }
  
  .social-icons a {
    color: #333;
    font-size: 20px;
    text-decoration: none;
  }
  
  /* Newsletter-Formular */
  .footer-right form {
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 10px; /* Abstand zwischen Label, Input und Button */
  }
  
  .footer-right input[type="email"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
  
  .footer-right label {
    font-family: "EB Garamond", serif;
    font-size: 24px; /* Einheitliche Schriftgröße */
    font-weight: bold;
    line-height: 1.5; /* Gleiche Zeilenhöhe wie links */
  }
  
  .footer-right input,
  .footer-right button {
    line-height: 1.5; /* Einheitliche Zeilenhöhe */
  }
  
  .footer-right button {
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #000;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .footer-right button:hover {
    background-color: #333;
  }
  
  /* Responsive Anpassungen */
  @media (max-width: 768px) {
    footer {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 20px;
    }
  
    .footer-left,
    .footer-right {
      width: 100%;
      justify-content: center;
    }
  
    .social-icons {
      justify-content: center;
    }
  
    .footer-right form {
      width: 90%;
      margin: 0 auto;
    }
  }
  
  #cart-info {
    margin-left: auto;
    font-family: "EB Garamond", serif;
  }
  
  #cart-info a {
    color: #000;
    text-decoration: none;
    font-size: 18px;
  }
  
  #cart-info a:hover {
    text-decoration: underline;
  }
  