/* Inter – lokal (Variable Font), Pfad relativ zu style.css */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin-wght-normal.woff2') format('woff2-variations');
}

/* Überall Inter – einzige Schrift auf der gesamten Seite */
* {
  font-family: 'Inter', sans-serif !important;
}

/* Basis-Schriftgröße etwas kleiner */
html {
  font-size: 14px;
}

/*e2d6ca to efefea JETZT FFF*/
@media (min-width: 701px) {
    /* Scrollbar für Webkit-Browser (Chrome, Safari, Opera) */
    *::-webkit-scrollbar {
        width: 8px; /* Schmale Breite */
    }

    *::-webkit-scrollbar-track {
        background: #f1f1f1; /* Hintergrund des Scroll-Leisten-Tracks */
        border-radius: 10px;
    }

    *::-webkit-scrollbar-thumb {
        background-color: #888; /* Farbe des Scrollbalkens */
        border-radius: 10px; /* Runde Kanten für modernere Optik */
        border: 2px solid #f1f1f1; /* Abgrenzung zwischen Scrollbalken und Track */
    }

    *::-webkit-scrollbar-thumb:hover {
        background-color: #555; /* Farbe beim Hover */
    }

    /* Scrollbar für Firefox */
    * {
        scrollbar-width: thin; /* Dünner Scrollbalken */
        scrollbar-color: #888 #f1f1f1; /* Scrollbalkenfarbe und Trackfarbe */
    }
}


body {
  width: 100vw;
  height: 100vh;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
  background-color: #f8f8f8;
  background-size: cover;
  color: #111;
  font-family: 'Inter', sans-serif;
}



header {
    margin: 0px;
    padding: 0px;
}


.leiste-desktop {
    padding-left: 10vw;
    padding-right: 10vw;
    background-color: #5c654e; /*5c654e*/
    height: 4.5vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #aaa;
}

/*.left {
  background-color: #482f15;
  padding: 6px 17px;
  border-radius: 10px;
}*/

.leiste-desktop a {
    color: #ddd;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.leiste-desktop a svg {
    margin-right: 8px;
}

@media (max-width: 701px) {
    .leiste-desktop {
        display: none;
    }

    /* Versteckt Scrollbalken für alle Elemente */
    * {
        scrollbar-width: none; /* Für Firefox */
        -ms-overflow-style: none; /* Für Internet Explorer und Edge */
    }

    *::-webkit-scrollbar {
        display: none; /* Für Chrome, Safari und Opera */
    }
}

#active { /*alt*/
  text-decoration: underline;
}
.nav-links {
  margin-left: calc(10vw + 7px);
}
.nav-links a.active {
    text-decoration: underline;
}


.nav-links a {
  font-weight: bold;
  color: #372410;
}

.hidden {
    display: none;
}

.header-desktop {
  background-color: #efefea;
    margin: 0px;
    display: none;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 8.5vh;
    padding: 0px;
    width: 100vw;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
    z-index: 20;
}

.header-desktop nav {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 20px;
}

.header-desktop nav a {
    text-decoration: none;
    padding: 0 10px;
}

.language-selection {
    position: absolute;
    right: calc(10vw + 7px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.language-selection img {
    width: 40px; /* Größere Fahnen */
    height: 25px;
    cursor: pointer;
}

.language-options {
    position: absolute;
    top: 34px; /* Positionierung für größere Fahnen angepasst */
    right: -7px;  /* Dropdown-Menü genau unter der Fahne positionieren */
    background-color: #e3e1df;
    border: 1px solid #ddd;
    padding: 5px;
    z-index: 1000000000000000000000000000000;
}

.language-options img {
    display: block;
    margin-bottom: 5px;
}

.header-mobile {
  position: fixed;
  top: 0px;
  background-color: #fff;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 52px;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
  z-index: 100000;
}

.header-mobile .logo {
    text-decoration: none;
    color: #666;
    font-weight: bold;
    font-size: 1.2em;
}

.header-mobile .mobile-controls {
    display: flex;
    align-items: center;
    margin-right: 3px;
    box-sizing: border-box;
    position: relative;
    right: 0;
}

.language-selection-mobile {
    position: relative;
    margin-right: 24px;
    transform: translateY(1px);
    z-index: 100000000000000000000000000000000000000000000000000000000;
    box-sizing: border-box;
    right: 0;
}

.language-selection-mobile img {
    width: 34px;
    height: 24px;
    cursor: pointer;
}

.language-options-mobile {
    position: absolute;
    top: 34px; /* Positionierung für größere Fahnen angepasst */
    right: 0;  /* Dropdown-Menü direkt unter der Fahne */
    background-color: #e3e1df;
    border: 1px solid #ddd;
    padding: 5px;
    z-index: 100000000000000000000000000000000000000000000000000000000;
}

.language-options-mobile img {
    display: block;
    margin-bottom: 5px;
}

.menu-toggle {
    font-size: 24px;
    cursor: pointer;
    position: relative;
    top: -3px;
    transform: translateY(1px);
}

#mobile-nav {
  background-color: #fff;
  top: 51px;
  position: fixed;
  z-index: 100000000000000000000000000000000000000;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
}

.mobile-nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    flex-direction: column;
    width: 100%;
}

.mobile-nav.open {
    max-height: 500px; /* Genügend Platz für die Links, ohne zu scrollen */
    transition: max-height 0.3s ease-in;
}

.mobile-nav a {
    padding: 10px 15px; /* Polsterung um die Links im Mobilmenü */
    text-decoration: none;
    color: #372410;
    display: block; /* Links untereinander anzeigen */
    position: relative; /* Links sollen den normalen Textfluss nicht unterbrechen */
}








#Kopfzeile {
  margin: 150px 0px 0px;
}



footer {
  margin-top: 90px;
  background-color: #222;
  color: #eee;
  position: relative;
  bottom: 0px;
  width: 100%;
}
body {
  min-height: 100vh;
}

.fkb-unten {
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    width: 100vw;
    bottom: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 30px;
}

.fkb-linkfarbe {
    color: #eee;
    text-decoration: none;
    margin: 0px;
    padding: 0px;
}

.fkb-linkfarbe:hover {
    text-decoration: underline;
}

.fkb-nebeneinander {
    width: 100%;
}

.slideshow-container {
  position: relative;
  width: 100%; /* Breite des Containers */
  height: 42px; /* Feste Höhe */
  overflow: hidden; /* Alles außerhalb wird abgeschnitten */
  background-color: #e8ded5; /* Hintergrundfarbe efefea aber heller*/
  transform: translateY(-10px);
}

.slideshow-slide {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center; /* Vertikal zentrieren */
  justify-content: center; /* Horizontal zentrieren */
  color: #000; /* Textfarbe */
  background-color: transparent; /* Kein zusätzlicher Hintergrund */
  transition: transform 0.5s ease-in-out; /* Smooth Animation */
}



@media (min-width: 700px) {
  .fkb-nebeneinander {
      flex-direction: row;
      justify-content: space-around;
  }
  .slideshow-container {
    display: none;
  }
}

@media (max-width: 700px) {
  .erstesdiv {
    margin-top: 47px;
  }
  .erstesdiv2 {
    margin-top: 50px;
  }
}









.unterseite:hover {
  color: #aaa;
}

.homebg {
  width: 100vw;

  object-fit: cover; /* Verhindert Verzerrung, schneidet das Bild bei Bedarf ab */
  object-position: top; /* Zentriert das Bild, wenn es abgeschnitten wird */
  margin: 0px;
  padding: 0px;
  filter: brightness(120%);
  opacity: 1;
}

.siderechts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 300px;
  background: linear-gradient(to bottom, rgba(84, 122, 95, 1), rgba(84, 122, 95, 0));
  position: absolute;
  right: 10vw;
  top: 13vh;
  padding: 40px 50px;
}
.zumain {
  background-color: #efefea;
  color: #111;
  font-weight: bold;
  margin: 30px auto;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8);
  text-decoration: none;
  padding: 10px 30px 10px;
  border-radius: 10px;
}
.zumain:hover {
    background-color: #547a5f;
    color: #fff;
}

.title {
  position: absolute;
  margin-left: 11vw;
  top: calc(13vh + 55px);
  color: #fff;
  font-size: 50px;
  text-shadow: 2px 1px 3px rgba(0, 0, 0, 0.8);
  z-index: 10;
}

.cart {
  margin-right: calc(10vw + 75px);
  color: #111;
  box-sizing: border-box;
  position: relative;
  right: 0;
}
.carticon {
  color: #111;
  transform: translateY(-1px);
}
.carticon:hover {
  color: #999;
}
.cart p {
  color: #111;
}
#header-4-link-wrapper {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #eee;
}

.header-4-rechts-links {
  text-align: end;
  margin: 0px 14px;
}

.header-4-preis {
  margin: 0px;
  font-size: 14px;
}
.header-4-artikel {
  margin: 0px;
  font-size: 11px;
}

.streifenunterbild {
  width: calc(100% - 44px);
  background-color: #191919; /*547a5f*/
  color: #eee;
  justify-content: center;
  text-align: center;
  padding: 22px;
  transform: translateY(-5px);
}

.zweiterstreifenbild {
  width: calc(100% - 16px);
  background-color: #777;
  color: #eee;
  justify-content: center;
  text-align: center;
  padding: 8px;
  transform: translateY(-5px);
}

.pd-cont {
  display: flex;
  gap: 30px;
  padding: 10px;
}
.pd-bild {
  height: 240px;
  aspect-ratio: 9/8;
  object-fit: cover; /* Verhindert Verzerrung, schneidet das Bild bei Bedarf ab */
  object-position: center; /* Zentriert das Bild, wenn es abgeschnitten wird */
  border-radius: 10px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
}
.pd-sonder-bild {
  height: 260px;
  object-fit: cover; /* Verhindert Verzerrung, schneidet das Bild bei Bedarf ab */
  object-position: center; /* Zentriert das Bild, wenn es abgeschnitten wird */
  border-radius: 10px;
  /*box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);*/
}
.pd-text {
  padding: 2px;
}
.item-rechts-mitte {
  margin-top: 10px;
  display: flex;
  justify-content: left;
  gap: 0px;
  align-items: center;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  width: fit-content;

}

 /* Stil für den Mengen-Container */
 .item-quantity-container {
   /*padding-top: 10px;*/
   align-items: center;
 }
 .item-quantity-container-innen {
   height: 36.5px;
   background-color: #fff;
   display: flex;
   align-items: center;
   overflow: hidden;
   border-top-left-radius: 5px;
   border-bottom-left-radius: 5px;

   border-top: 1px solid #e9e9e9;
   border-bottom: 1px solid #e9e9e9;
   border-left: 1px solid #e9e9e9;
 }

 /* Buttons für Menge ändern */
 .item-quantity-button {
   padding: 4px 0px 6px;
   font-size: 14px;
   cursor: pointer;
 }

 #item-decrease-quantity {
   padding-left: 10px;
 }
 #item-increase-quantity {
    padding-right: 11px;
  }

 /* Stil für das Eingabefeld */
 #item-quantity {
   width: 50px;
   text-align: center;
   padding: 4px 0px 6px;
   border-radius: 0px;
   border: none;
   background-color: #fff;
 }

 .item-rechts-mitte {
   display: flex;
   justify-content: left;
   gap: 0px;
   align-items: center;
 }


 .item-menge {
   text-align: center;
   align-items: center;
   background-color: #fff;
   border: none;
 }

 input:focus {
   outline: none;
   border-color: inherit; /* Optional: Erbt die Standardrandfarbe */
 }
 button:focus {
   outline: none;
   border-color: inherit; /* Optional: Erbt die Standardrandfarbe */
 }

 .add-to-cart-button {
   height: 38px;
   /*margin-top: 10px;*/
   padding: auto;
   padding-left: 25px;
   padding-right: 20px;
   font-size: 14px;
   background-color: #577d63; /*547a5f*/
   color: white;
   border: none;
   cursor: pointer;
   border-top-right-radius: 5px;
   border-bottom-right-radius: 5px;
   align-items: center;
   display: flex;
   gap: 15px;
 }
 .add-to-cart-button:hover {
   background-color: #678d73;
 }


 .startseitenangebote-oben {
   display: flex;
   margin: 40px 6vw 40px;
   justify-content: space-between;
   padding-bottom: 40px;
   /*border-bottom: 1px solid #888;*/
 }

 .pd-sonderangebot-container {
   box-shadow: 0px 0px 80px rgba(87, 125, 99, 0.5);
   padding: 5px 10px 5px 5px;
   width: fit-content;
   margin-right: auto;
   margin-left: auto;
   border-radius: 25px;
 }

.sonderangebot-line {
  margin: 0px;
  padding: 10px 25px 5px;
  text-decoration: underline;
}



/* Toast-Benachrichtigung */
.cart-toast {
    position: fixed;
    top: 70px;
    right: 8vw;
    background: #4CAF50;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: bold;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(-0px);
    transition: opacity 0.3s, transform 0.3s;
    z-index: 10000000000000;
}





.warenkorb-tabelle {
    width: 80%;
    border-collapse: collapse;
    margin-left: 10%;
}

.warenkorb-tabelle th, .warenkorb-tabelle td {
    padding: 0px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.warenkorb-tabelle td {
    padding-left: 5px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.warenkorb-bild {
    height: 80px;
    aspect-ratio: 8/6;
    border-radius: 5px;
    margin: 8px 0px 6px;
}

.warenkorb-menge {
    width: 50px;
    text-align: center;
}
#warenkorb-menge-update {
  transform: translateY(3px);
}

.warenkorb-update {
    background: none;
    border: none;
    cursor: pointer;
}

.warenkorb-loeschen {
    color: red;
    font-size: 18px;
    text-decoration: none;
    padding-left: 15px;
}

.warenkorb-loeschen:hover {
    color: darkred;
}

.warenkorb-gesamt {
    margin-top: 20px;
    margin-left: 10vw;
    font-size: 19px;
}

.warenkorb-rand-links {
  margin-left: 10vw;
}

.warenkorb-reload {
  padding-top: 3px;
}

.warenkorb-leer {
  margin-left: 10vw;
}


#kaufen {
  scroll-margin-top: 70px;
}



.sonderangebot-line-klein {
  display: none;
}
.warenkorb-k {
  display: none;
}
@media screen and (max-width: 1450px) {
  .startseitenangebote-oben {
    margin: 40px 3vw;
  }
}
@media screen and (max-width: 1350px) {
  .startseitenangebote-oben {
    display: block;
  }
}
@media screen and (min-width: 801px) and (max-width: 1000px) {
  .pd-sonderangebot-container {
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 800px) {
  .sonderangebot-line-klein {
    display: block;
    padding-left: 20px;
    text-decoration: underline;
  }
  .sonderangebot-line {
    display: none;
  }
  #pd-cont-combi {
    display: block;
    padding: 20px 30px;
  }
  .pd-sonder-bild {
    height: auto;
    width: 100%;
  }
}
@media screen and (max-width: 670px) {
  .pd-sonderangebot-container {
    width: calc(100% - 40px);
  }
  .warenkorb-k {
    display: block;
  }
  .warenkorb-g {
    display: none;
  }
}
@media screen and (max-width: 620px) {
  .startseitenangebote-oben {
    display: block;
  }
  .pd-cont {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 35px 20px;
    justify-content: center;
  }
  .pd-bild {
    height: auto;
    width: 100%;
    max-width: 310px;
    aspect-ratio: 9/8;
    object-fit: cover; /* Verhindert Verzerrung, schneidet das Bild bei Bedarf ab */
    object-position: center; /* Zentriert das Bild, wenn es abgeschnitten wird */
    border-radius: 10px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
  }
  .pd-sonder-bild {
    height: auto;
    width: 100%;
    /*max-width: 310px;*/
    object-fit: cover; /* Verhindert Verzerrung, schneidet das Bild bei Bedarf ab */
    object-position: center; /* Zentriert das Bild, wenn es abgeschnitten wird */
    border-radius: 10px;
    /*box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);*/
  }
  .pd-text {
    width: 100%;
    max-width: 310px;
  }
  .item-rechts-mitte {
    width: 100%;
  }
  .add-to-cart-button {
    width: 100%;
    gap: auto;
    justify-content: space-between;
  }
  .pd-text {
    margin-left: auto;
    margin-right: auto;
  }
  .pd-bild {
    margin-left: auto;
    margin-right: auto;
  }
  #pd-text-sonder {
    margin: 0px;
  }
}





.homebgklein, #siderechtsklein, #bghandy, .streifenhandy {
  display: none;
}
.carticonhandy {
    transform: translateY(-2px);
}

@media screen and (max-width: 1100px) {
  .homebg, .siderechts, .title, .left /*.streifenunterbild, .zweiterstreifenbild*/ {
    display: none;
  }
  #siderechtsklein {
    display: flex;
    /*top: 0px;*/
    width: 200px;
    right: calc(4vw + 20px);
  }
  .zumain {
    background-color: #f9f9f9;
    color: #111;
    font-weight: bold;
    margin: 30px auto;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8);
    text-decoration: none;
    padding: 10px 30px 10px;
    border-radius: 10px;
  }
  .homebgklein {
    display: block;
    width: 100vw;
    object-fit: cover; /* Verhindert Verzerrung, schneidet das Bild bei Bedarf ab */
    object-position: top; /* Zentriert das Bild, wenn es abgeschnitten wird */
    margin: 0px;
    padding: 0px;
    filter: brightness(120%);
    opacity: 1;
  }
}
@media (max-width: 800px) {
    #siderechtsklein {
      top: 2px;
    }
    .siderechts {
      top: 0px;
    }
    .leiste-desktop {
      display: none;
    }
    .cart {
      margin-right: 15px;
    }
    .warenkorb-rand-links {
      padding-top: 45px;
    }
    .homebgklein {
      margin-top: 28px;
    }
}
.handytitel {
  display: none;
}
@media (max-width: 600px) {
  .handytitel {
    display: block;
    text-decoration: underline;
    margin: 35px 40px 0px;
  }
    #siderechtsklein {
      right: 0px;
      width: 206px;
    }
    .homebgklein {
      display: none;
    }
    #bghandy {
      display: block;
    }
    .siderechts {
      padding: 30px 25px 50px 25px;
      background: linear-gradient(to bottom, rgba(84, 122, 95, 1), rgba(84, 122, 95, 0.8), rgba(84, 122, 95, 0) 50%);
    }
    .streifenunterbild, .zweiterstreifenbild {
      display: none;
    }
    .streifenhandy {
      display: block;
      position: relative;
      z-index: 10;
    }
    .pd-cont {
      padding: 20px 20px 30px;
    }
    .title-handy-none {
      display: none;
    }
    .title-handy-margin {
      padding-top: 50px;
      font-size: 1.25rem;
    }
    .zumain {
      margin-left: 2px;
    }
}

@media (min-width: 801px) {
    .header-desktop {
        display: flex;
    }
    .header-mobile {
        display: none;
    }

}

.language-options {
  background-color: #fff;
  box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.3);
}







.warenkorb-tabellek {
  display: none;
}

@media (max-width: 900px) {
    .warenkorb-tabelle {
        width: 100%;
        border-collapse: collapse;
        margin: 0 auto;
    }

    .warenkorb-tabelle thead {
        display: none; /* Tabellenkopf ausblenden */
    }

    .warenkorb-tabelle tbody {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .warenkorb-tabelle tr {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid #ccc;
        width: 100%;
    }

    .warenkorb-tabelle td {
        border: none;
        padding: 5px;
    }

    /* Bild auf 30% links */
    .warenkorb-tabelle td:first-child {
        width: 30%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .warenkorb-bild {
        width: 80%;
        max-width: 100px;
        height: auto;
        border-radius: 5px;
    }

    /* Rechte Seite mit Produktinfo auf 70% */
    .warenkorb-tabelle td:nth-child(2) {
        width: 70%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .warenkorb-tabelle td:nth-child(2) strong {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .warenkorb-tabelle td:nth-child(2) small {
        font-size: 11px;
        color: #666;
        margin-bottom: 8px;
    }

    /* Menge und Preis */
    .warenkorb-menge {
        width: 50px;
        text-align: center;
        font-size: 13px;
        margin-right: 10px;
    }

    .warenkorb-update {
        background: none;
        border: none;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        margin-left: 5px;
    }

    .warenkorb-reload {
        width: 18px;
        height: 18px;
    }

    /* Gesamtpreis */
    .warenkorb-tabelle td:nth-child(2) .warenkorb-preis {
        font-size: 13px;
        font-weight: bold;
        margin-top: 5px;
    }

    /* Löschen rechts neben Preis */
    .warenkorb-loeschen {
        color: red;
        font-size: 16px;
        text-decoration: none;
        padding-left: 10px;
        margin-left: auto;
        margin-right: 3vw;
    }

    .warenkorb-loeschen:hover {
        color: darkred;
    }


.warenkorb-menge-form {
    display: flex;
    align-items: center;
    gap: 0px; /* Abstand zwischen Input und Button */
    white-space: nowrap; /* Verhindert, dass die Elemente umbrechen */
}

.warenkorb-menge {
    width: 50px; 
    text-align: center;
    margin-right: 0px;
}

.warenkorb-update {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

#warenkorb-menge-update {
  transform: translateY(0px);
}
.warenkorb-tabelleg {
  display: none;
}
.warenkorb-tabellek {
  display: block;
}
#wrl2 {
  padding-top: 0px;
}
  .warenkorb-bild {
    margin-left: 10px;
  }
}



@media (max-width: 600px) {
  .warenkorbk-untertitel {
    display: none;
  }

  .warenkorbk-texte {
    height: auto;
    /*display: flex;*/
    flex-direction: column;

  }
  .warenkorb-menge {
    width: 40px;
  }
}



@media (min-width: 1900px) {
  .startseitenangebote-oben {
    margin: 40px 12vw 40px !important;
  }
}