* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Poiret One", sans-serif;
  }
  
  #main-header {
    padding-top: 30px;
  }
  
  #nav-bar {
    display: flex;
    justify-content: space-between;
    padding: 0 60px;
    position: relative;

  }
  
  #logo {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  
  #logo img {
    height: auto;
  }
  
  #nav-left,
  #nav-right {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    font-size: 16px;
    text-transform: uppercase;
    font-family: "Cormorant Garamond", serif;
    font-weight: lighter;
  }

  #nav-right a{
    font-family: "Cormorant Garamond", serif;
  }

  a {
    text-decoration: none; /* Fjerner understregningen */
    color: #000;
  }

  a:hover {
    text-decoration: underline;
  }

  .dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .dropdown img{
    display:none;
  }
  
  .label {
    cursor: default;
    color: #000;
  }
  
  .dropdown-toggle {
    cursor: pointer;
    font-size: 14px;
    user-select: none;
  }
  
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    list-style: none;
    padding: 10px;
    z-index: 999;
    min-width: 200px;
    margin-top: 10px;
  }
  
  .dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-family: "Poiret One", sans-serif;
    text-transform: none;
  }
  
  .dropdown-menu li a:hover {
    text-decoration: underline;
  }
  
  /* Vis menu når checkbox er checked */
  input[type="checkbox"]:checked + label + .dropdown-menu {
    display: block;
  }

  #main-content {
    flex: 1; /* Fylder det der er mellem navbar og footer */
  }

  html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.breadcrumb {
    display: flex;
    align-items: center;
    font-family: "Poiret one", sans-serif;
    font-size: 14px;
    gap: 5px;
    flex-wrap: wrap; /* gør den mobilvenlig */
    margin: 120px 0px 50px 60px;
  }
  
  .breadcrumb .separator {
    margin: 0 5px;
    color: black;
  }
  
  .breadcrumb .current {
    text-decoration: underline;
    color: #000;
    cursor: default;
  }

  a {
    color: #000;
    text-decoration: none;
    font-family: "Poiret One", sans-serif;
  }
  a:hover {
    text-decoration: underline;
  }

  #main-footer {
    padding: 60px;
    margin-top: 50px;
  }
  
  #footer-container {
    display: flex;
    justify-content: space-between;
  }
  
  .footer-section {
    max-width: 33%;
  }
  
  .footer-section h4 {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: normal;
    margin-bottom: 20px;
    font-family: "Cormorant Garamond", serif;
  }

  .footer-section p {
    font-size: 11px;
    font-family: "Poiret One", sans-serif;
    line-height: 1.5rem;
  }
  
  /* Input og knap */
  .footer-section input[type="email"] {
    width: 100%;
    border: none;
    border-bottom: 1px solid #000;
    padding: 8px 0;
    font-family: "Poiret one", sans-serif;
    margin-bottom: 20px;
  }
  
  .footer-section button {
    width: 100%;
    padding: 10px 0;
    border: 1px solid #000;
    background-color: transparent;
    font-family: "Poiret one", sans-serif;
    cursor: pointer;
  }
  
  /* Sociale ikoner */
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .social-icons img {
    width: 36px;
    height: 36px;
    padding: 4px;
  }



  /*  Burger menu  */

  #burger-menu {
    display: none;
  }

  #cart {
    display: none;
  }
  
  #burger-icon img{
    width: 46px;
    height: 46px;
    cursor: pointer;
  }

  #cart img {
    width: 26px;
    height: 26px;
    cursor: pointer;
    margin-right: 10px;

  }
  
  #mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    width: 100%;
    list-style: none;
    z-index: 1000;
  }
  
  #mobile-menu li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
  }
  
  #burger-toggle:checked + label + #mobile-menu {
    display: block;
  }

  .menu-section-title {
    font-weight: bold;
    font-size: 0.9rem;
    padding: 12px 0 6px;
    color: #333;
    text-transform: uppercase;
    border-top: 1px solid #eee;
  }
  
  /* Tablet */
  @media (max-width: 768px) {
    #nav-bar {
      flex-direction: row;
      align-items: center;
      padding: 0 20px;
    }
  
    #nav-left {
      display: none;
    }

    #nav-right {
      display: none;
    }
  
    #logo {
      position: static;
      transform: none;
      flex: 1;
      display: flex;
      justify-content: center;
    }
  
    #cart {
    display:block;
    }
  
    #burger-menu {
      display: block;
    }

    #mobile-menu {
      font-size: 14px;
    }

    #mobile-menu li {
      padding: 15px 15px;
      border-bottom: 1px solid #ddd;
    }

    .menu-section-title {
      font-size: 1rem;
      padding: 12px 0 6px;
      color: #333;
      text-transform: uppercase;
      border-top: 1px solid #eee;
      font-family: "Cormorant Garamond", serif;
      font-weight: lighter;
    }

    .breadcrumb {
      margin: 80px 0px 40px 40px;
    }

    #footer-container {
      flex-direction: column;
      gap: 40px;
      align-items: center;
      text-align: center;
    }
  
    .footer-section {
      max-width: 100%;
    }
  
    .footer-section input[type="email"],
    .footer-section button {
      max-width: 300px;
      margin-left: auto;
      margin-right: auto;
    }
  
    .social-icons {
      justify-content: center;
    }
  }
  
   /* Mobil */
  @media (max-width: 420px) {
    #nav-bar {
      padding: 0px 10px;
    }
  
    #burger-icon {
      font-size: 22px;
    }

  
    #logo img {
      max-width: 120px;
      height: auto;
    }

    .breadcrumb {
      margin: 70px 0px 30px 30px;
    }

    #main-footer {
      padding: 30px 20px;
    }
  
    .footer-section h4 {
      font-size: 11px;
    }
  
    .footer-section p, .footer-section a,
    .footer-section input[type="email"],
    .footer-section button {
      font-size: 12px;
      border-radius: 0;
      color: #000;
    }
  
    .social-icons img {
      width: 28px;
      height: 28px;
    }
  }