/* === Allgemeines Layout === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 90%;
}


body {
  font-family: "Maison Neue", sans-serif;
  /*font-weight: bold; */
  background-color: #fff;
  color: #111;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

/* === Loading Screen === */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-in-out;
}

.loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.loading-logo {
  width: 200px;
  height: auto;
  animation: logoPulse 2s ease-in-out infinite;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes logoPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* === Header === */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #fff;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: none;
}

.logo img {
  height: 60px;
  width: auto;
}

/* === Layout === */
.main-layout {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding-top: 80px;
  min-height: calc(100vh - 80px);
  overflow-y: auto;
  overflow-x: hidden;
}

.scrollable-content {
  flex: 1;
  overflow-y: auto;
  padding-right: 20px;
}

/* === Sidebar === */
.sidebar {
  position: fixed;
  top: 32px;
  right: 10px;
  height: calc(100vh - 0px);
  background-color: #fff;
  padding: 40px 20px;
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  transition: transform 0.3s ease-in-out; /* Übergangseffekt für das Ein- und Ausklappen */

}

.sidebar ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.sidebar a {
  position: relative;
  text-decoration: none;
  color: #111;
  font-size: 0.8rem;
  font-weight: normal;
  transition: font-weight 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.sidebar a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 0.5px;
  background-color: #111;
  transition: width 0.3s ease;
}

.sidebar a:hover {
  font-weight: bold;
  color: #000;
}

.sidebar a:hover::after {
  width: 100%;
  height: 0.5px; /* Unterstrich wird dünner beim Hover */

}

/* === Hero Section === */
.hero {
  display: flex;
  flex-direction: row; /* Positioniere den Inhalt horizontal */
  justify-content: flex-start; /* Inhalt nach links ausrichten */
  align-items: flex-start; /* Video an den oberen Rand ausrichten */
  position: relative; /* Position des Containers relativ zum normalen Layoutfluss */
  box-sizing: border-box;
  padding-left: 20px;
}

/* === Video Styling === */
.hero video {
  width: 100%; /* Video nimmt die volle Breite der verfügbaren Fläche ein */
  height: auto; /* Höhe bleibt im Seitenverhältnis */
  object-fit: contain; /* Video wird vollständig gezeigt, ohne es zu beschneiden */
}



.hero-text {
  font-size: 0.9rem;
  text-align: center;
  letter-spacing: 1px;
  font-weight: bold;
  color: #444;
}

.text-below-video {
  text-align: left;
  font-family: 'Maison Neue', sans-serif;
  font-weight: bold;
  font-size: 2rem;
  color: #000;
  margin-top: 30px;
  padding-left: 20px;
  box-sizing: border-box;
}
.bilder-unter-text {
  display: flex;
  justify-content: flex-start; /* links ausrichten */
  gap: 20px; /* Abstand zwischen den Bildern */
  box-sizing: border-box;
  padding-left: 20px;
}

.bild-hochformat {
  width: 45%; /* oder z.B. 300px wenn du fixe Breite willst */
  height: auto;
  object-fit: cover;
}


.intro-text {
  text-align: left;
  font-family: 'Maison Neue', sans-serif;
  font-size: 0.8rem;
  color: #333;
  line-height: 1.7;
  max-width: 1200px;
  font-weight: normal;
  padding-left: 20px;
  padding-bottom: 20px;
  box-sizing: border-box;
  padding-top: 20px;
}

/* === Accessoire Grid === */
.accessoires-grid {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 80px 20px;
}

.accessoire-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: auto;
  justify-content: flex-start;
  margin-left: 0;
}



.accessoire-link {
  position: relative;
  display: inline-block;
  width: 300px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.accessoire-link:hover .accessoire-img {
  transform: scale(1.03);
}

.accessoire-img {
  display: block;
  width: 300px;
  height: 300px;
  object-fit: cover;
}

.img-default {
  position: relative;
  z-index: 1;
}

.img-hover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  object-fit: cover;
}

.accessoire-link:hover .img-hover {
  opacity: 1;
}

.accessoire-link:hover .img-default {
  opacity: 0;
}




.product-title,
.product-price {
  margin: 0;
  padding: 0;
}

/* === Produktseite === */
.product-layout {
  display: flex;
  min-height: auto;
  overflow-y: auto;
  overflow-x: hidden;
}

.product-wrapper {
  display: flex;
  flex-direction: row;
  gap: 40px;
  padding: 60px;
  width: 100%; /* Verhindert das Breitenwachstum */
}

.product-gallery {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.main-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-bottom: 10px;  /* Hier Abstand verringern */
}

.thumbnail-row {
  display: block;
  gap: 10px;
}
/* Abstand zwischen den Bildern in der Reihe durch Margins */
.thumbnail-row .thumbnail {
  display: block;
  margin-bottom: 20px; /* Abstand zwischen Bildern */
}

.thumbnail {
  width: 80px;
  height: auto;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s ease;
  filter: none !important;
  transition: none !important;
  border: none !important;
  transform: none !important;
  opacity: 1 !important;
}

.thumbnail:hover {
  opacity: 1;
  transform: none !important;
  border: none !important;
}

.product-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 400px;
  width: 100%; /* Stellt sicher, dass das Produktdetails-Panel nicht breiter wird */
}

/* === Titel und Preis anpassen === */
.product-title {
  font-size: 1.5rem;
  font-weight: normal; /* Titel nicht fett */
  text-align: left;  /* Linksbündig */
  margin-top: 0;  /* Kein zusätzlicher Abstand zum Bild */
}

.product-price {
  font-size: 1.5rem;
  font-weight: bold; /* Preis fett */
  color: #000; /* Preis schwarz */
  text-align: left; /* Linksbündig */
  margin-top: 0; /* Kein Abstand, damit der Preis direkt unter dem Titel erscheint */
}

/* === Produktinfos sticky === */
.product-info {
  width: auto;  position: sticky;
  top: 60px;  align-self: left; 
  background-color: white;
  height: fit-content;
  font-family: "Maison Neue", sans-serif;
  font-size: 0.8rem;
  max-width: 800px; /* Optional: Begrenze die maximale Breite */
  margin-left: -00px;


}

 .product-info h1 {
   font-size: 1rem; /* kleiner machen */
   font-weight: normal;
   white-space: nowrap; /* bleibt auf einer Zeile */
   margin-bottom: 1rem; /* etwas Abstand zum Preis */
   font-family: "Maison Neue", sans-serif;
   margin-left: 0;
   padding-left: 0;
 }

 .product-info .price {
   font-weight: bold;
   font-size: 1rem;
   margin: 0;
   font-family: "Maison Neue", sans-serif;
   margin-left: 0;
   padding-left: 0;
 }

 .product-title-price {
   margin-bottom: 1rem;
   text-align: left;
   margin-left: 0;
   padding-left: 0;
 }



/* === Auswahl & Button === */
.size-label {
  font-size: 0.8rem;
  color: #111;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
  display: block;
}

.size-select,
#size-select {
  font-size: 1rem;
  padding: 10px;
  margin: 10px 0 20px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  background-color: #fff;
  color: #333;
  transition: border-color 0.3s ease;
}

.size-select:hover {
  border-color: #111;
}

 .add-to-cart {
   background-color: #111;
   color: #fff;
   font-size: 1rem;
   padding: 12px;
   display: block;
   margin: 0;
   margin-left: 0;
   margin-right: auto;
   width: fit-content;
   transform: scale(0.9);
   width: 70%; 
   
   }
  

.add-to-cart:hover {
  background-color: #53292A}

/* === Beschreibung === */
.toggle-description {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  color: #111;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  font-family: "Maison Neue", sans-serif;
  font-weight: bold;
  

}

.toggle-description::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: #111;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.toggle-description:hover {
  font-weight: bold;
}

.toggle-description:hover::after {
  width: 100%;
}

/* Gemeinsamer Stil für Beschreibung und Details */
.description-text,
.details-text {
  font-size: 0.8rem;
  color: #444;
  margin-top: 1px;
  line-height: 1.5;
  max-height: 0; /* Kein Platz einnehmen */
  overflow: hidden; /* Verhindert, dass der Text sichtbar ist */
  transition: max-height 0.5s ease-in-out; /* Sanftes Ausklappen */
  font-family: "Maison Neue", sans-serif;
  font-weight: normal;
}

.description-text.open,
.details-text.open {
  max-height: 1000px; /* Platz für den Text */
}


.toggle-section {
  display: inline-block;
  font-size: 0.8rem;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  margin-top: 5px; /* Gleichmäßiger Abstand zwischen den Links */
  position: relative;
  transition: color 0.3s ease;
  font-family: "Maison Neue", sans-serif;
  font-weight: bold; /* Text fett */
}

.toggle-section:first-of-type {
  margin-top: 40px; /* Mehr Abstand vom obersten Element */
}

.toggle-section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  border-bottom: 1px solid #000; /* Einheitliche Dicke der Unterstreichung */
  transition: width 0.3s ease;
}

.toggle-section:hover {
  color: #000;
}

.toggle-section:hover::after {
  width: 100%; /* Unterstreichung sichtbar */
}

.gürtel-info {
  position: relative;
  left: -10px;
}

/* === Modals === */
.modal,
.image-modal {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  display: block;
  margin: auto;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* === Scrollbar ausblenden === */
.product-images {
  overflow-y: scroll;
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.product-images::-webkit-scrollbar {
  display: none;
}

.product-images img {
  width: 100%;
  max-width: 650px;
  height: auto;
  object-fit: cover;
}

/* === Accessoires Produktinfo Styling === */
.accessoire-product-info {
  width: 100%;
  padding: 10px 0 0 0;
  text-align: left;
  background-color: white;
  margin-left: 0px;
}

.accessoire-product-info .product-title {
  font-family: "Maison Neue", sans-serif;
  font-size: 0.85rem;
  margin: 0;
  padding: 0;
  text-align: left;
  margin-bottom: 8px; /* Abstand zum Preis */
}

.accessoire-product-info .product-price {
  font-size: 0.8rem; /* kleiner */
  margin: 0;
  padding: 0;
  text-align: left;
}

.accessoires-heading {
  font-family: "Maison Neue", sans-serif;
  text-align: left;
  font-size: 0.8rem;
 
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
  margin-left: 18px;
}

.color-swatches {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.swatch {
  width: 20px;
  height: 20px;
  border-radius: 3px;
}

.swatch.black {
  background-color: black;
}

.size-options {
  display: flex;
  gap: 10px;
  margin: 10px 0;
  font-family: "Maison Neue", sans-serif;
}

.size-box {
  border: 1px solid #ccc;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 4px;
  user-select: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.size-box:hover {
  border-color: #000;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.size-box.selected {
  background-color: #000;
  color: #fff;
  border-color: #000;
}

.sidebar-search {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: bold;
  font-family: "Maison Neue", sans-serif;
  font-size: 0.8rem;
  margin-bottom: 1rem; /* Abstand zu den Links */
  margin-top: 0.5rem; /* leicht nach unten vom oberen Rand */
  font-weight: normal;
}


.sidebar-search {
  position: relative;
  margin-bottom: 1rem; /* Abstand zu den nächsten Links */
}

.sidebar-search span {
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: normal;
  letter-spacing: 0.5px;
}

.sidebar-search span:hover {
  font-weight: bold;
  color: #000;
}
/* Suchfeld oben rechts auf der Seite */
#search-bar {
  position: fixed;
  padding-top: 20px;
  top: 0;
  right: 30px;
  width: 300px;
  padding: 10px;
  border-radius: 5px;
  display: none;
  z-index: 1000;
  font-family: "Maison Neue", sans-serif;
  font-size: 0.8rem;
}

#search-bar input {
  width: 100%;
  padding: 10px;
  font-size: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: "Maison Neue", sans-serif;
}

.sidebar-search {
  position: relative; /* Damit das Suchfeld relativ zu diesem Element positioniert wird */
  cursor: pointer;
  margin-bottom: 1rem; /* Abstand zu den folgenden Links */
  font-family: "Maison Neue", sans-serif;
}

.sidebar-search span {
  font-size: 0.8rem;
  font-weight: normal;
  letter-spacing: 0.5px;
  font-family: "Maison Neue", sans-serif;
}

.sidebar-search span:hover {
  font-weight: bold;
  color: #000;
  font-family: "Maison Neue", sans-serif;
}

/* Wenn das Suchfeld angezeigt wird */
.show-search #search-bar {
  display: block;
  font-family: "Maison Neue", sans-serif;
}

/* Keine Veränderung der Sidebar-Struktur, keine Verschiebung */
#sidebar-links {
  transition: none; /* Keine Verschiebung der Links */
}
#search-result {
  display: none;
  margin-top: 10px;
  background-color: #fff;
  padding: 10px;
  border: 1px solid #ccc;
  font-family: "Maison Neue", sans-serif; /* Schriftart für den gesamten Bereich */
  font-size: 0.8rem; /* Kleinere Schriftgröße für die Ergebnisse */
}

#search-result a {
  color: black; /* Der Text bleibt schwarz */
  text-decoration: none;
  font-weight: normal; /* Text ist standardmäßig nicht fett */
  position: relative; /* Für die Unterstreichungsanimation */
  display: inline-block;
  font-family: "Maison Neue", sans-serif; /* Maison Neue Schriftart */
  font-size: 0.8rem; /* Schriftgröße für den Link (kann weiter angepasst werden) */
}

#search-result a:hover {
  font-weight: normal; /* Text wird beim Hover fett */
}

#search-result a::after {
  content: ''; /* Der Inhalt für die animierte Unterstreichung */
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px; /* Dünnere Unterstreichung */
  background-color: black; /* Unterstreichung ist jetzt schwarz */
  transition: width 0.3s ease; /* Längere und sanftere Übergangsanimation */
}

#search-result a:hover::after {
  width: 100%; /* Unterstreichung geht von links nach rechts bei Hover */
}

.recht-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.recht-nav li {
  display: inline;
}

.recht-nav a {
  background: #eee;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
}

.recht-nav a:hover {
  background: #ddd;
}

.content-page section {
  margin-bottom: 60px;
}




/* Footer bleibt unten und ist zentriert */
.footer-links {
  background-color: transparent;
  padding: 40px 0 40px 0; /* Kein linker und rechter Abstand */
  text-align: left;
  font-size: 0.8rem;
  border-top: none;
  font-family: "Maison Neue", sans-serif;
  font-weight: normal;
  margin-left: 0;
  padding-left: 20px;
}

.footer-links ul {
  list-style: none;
 margin-left: -5px;
}

.footer-links li {
  display: inline;
  margin: 0 5px;
}

.footer-links a {
  text-decoration: none;
  color: #333;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Stelle sicher, dass die Seite 100% der Höhe ausfüllt */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* Lass den Content-Bereich scrollen */
.content-page {
  min-height: 100%; /* Stellt sicher, dass der Hauptinhalt die gesamte Seite füllt */
  overflow-y: auto; /* Erlaubt vertikales Scrollen */
}

.cart-container {
  position: absolute;
  top: 10px;
  right: 20px;
}


#cartButton {
  text-decoration: none;
  font-size: 0.8rem;
  color: black;
  cursor: pointer;
  font-weight: normal;
  position: relative; /* Für das ::after-Pseudoelement */
  display: inline-block; /* Stellt sicher, dass die Breite nur so groß ist wie der Text */
  padding: 0;
}

#cartButton::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px; /* Abstand des Unterstrichs vom Text */
  width: 0;
  height: 0.5px; /* Dicke des Unterstrichs */
  background-color: black; /* Farbe des Unterstrichs */
  transition: width 0.3s ease; /* Smooth-Animation */
}

#cartButton:hover::after {
  width: 100%; /* Unterstrich füllt die Breite des Textes */
}

#cartCount {
  font-weight: normal;
}

/* Warenkorb-Overlay */
#cartOverlay {
  display: none; /* Standardmäßig ausgeblendet */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%; /* Über die gesamte Breite */
  height: 100%; /* Über die gesamte Höhe */
  background-color: rgba(0, 0, 0, 0.8); /* Halbtransparenter Hintergrund */
  z-index: 10001; /* Höchster z-index - über allen anderen Elementen */
  justify-content: center; /* Zentriert den Inhalt horizontal */
  align-items: center; /* Zentriert den Inhalt vertikal */
}

/* Zusätzliche CSS für den Warenkorb */
.cart-container {
  position: absolute;
  top: 10px;
  right: 60px; /* Erhöhe den Wert, um den Button weiter nach links zu verschieben */
}

#cartButton {
  text-decoration: none;
  font-size: 16px;
  color: black;
  cursor: pointer;
  font-family: "Maison Neue", sans-serif;
  font-size: 0.8rem;
  padding-right: 5px;
  font-weight: bold;
}

#cartCount {
  font-weight: bold;
  font-size: 0.8rem;
}

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10001;
}

.cart-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  width: 80%;
  max-width: 1000px;
  height: 80%;
  max-height: 85%;
  overflow-y: auto;
  font-family: "Maison Neue", sans-serif;
  font-size: 0.8rem;
  font-weight: bold;
  position: relative;
  display: flex;
  flex-direction: column;
}

.cart-content h2 {
  margin-top: 0;
  font-family: "Maison Neue", sans-serif;
  font-size: 0.8rem;
  font-weight: bold;
  margin-left: 10px;
}

.cart-content ul {
  list-style: none;
  padding: 0;
}

.cart-content ul li {
  margin-bottom: 10px;
  font-size: 0.8rem;
  font-weight: bold;
  text-align: left;
}

.cart-content button {
  font-family: "Maison Neue", sans-serif;
  font-size: 0.8rem;
  background:  transparent;
  border: none;

}


html, body {
  height: 100%; /* Stellt sicher, dass die Seite die volle Höhe einnimmt */
  margin: 0;
  padding: 0;
}



.footer-links {
  margin-top: auto; /* Footer bleibt am unteren Rand */
  margin-bottom: -10px
}

.open-cart-button {
  position: absolute; /* Absolute Positionierung innerhalb von cart-content */
  bottom: 20px; /* Abstand von unten */
  right: 20px; /* Abstand vom rechten Rand */
  text-decoration: none;
  font-size: 0.8rem;
  color: black;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 10px 20px;
  font-family: "Maison Neue", sans-serif;
  font-weight: bold;
  text-align: center;
  z-index: 1000;
}





.cart-content {
  position: relative;
  padding-bottom: 100px; /* Mehr Platz für die Buttons */
}

.button-container {
  position: sticky;
  bottom: 0px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.open-cart-button {
  text-decoration: none;
  font-size: 0.8rem;
  color: black;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 10px 20px;
  font-family: "Maison Neue", sans-serif;
  font-weight: bold;
  position: absolute; /* Absolute Positionierung innerhalb des cart-content */
  bottom: -50px; /* Abstand vom unteren Rand */
  right: 90px; /* Abstand vom rechten Rand */
}

.continue-shopping {
  position: absolute; /* Absolute Positionierung innerhalb des cart-content */
  bottom: -50px; /* Abstand vom unteren Rand */
  left: 70px; /* Abstand vom linken Rand */
  text-decoration: none;
  font-size: 0.8rem;
  color: black;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 10px 20px;
  font-family: "Maison Neue", sans-serif;
  font-weight: bold;
  z-index: 1000;
}

/* Hover-Animation für beide Links */
.open-cart-button::after,
.continue-shopping::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 0;
  height: 1px;
  background-color: black;
  transition: width 0.3s ease;
}

.open-cart-button:hover::after,
.continue-shopping:hover::after {
  width: 100%;
}

/* Styling für einzelne Warenkorb-Elemente */
.cart-item {
  display: flex;
  flex-direction: row; /* Horizontale Anordnung */
  align-items: flex-start; /* Oben ausrichten */
  margin-bottom: 30px; /* Abstand zwischen den Elementen */
  padding: 20px; /* Innenabstand */
  border-bottom: 1px solid #f0f0f0; /* Subtile Trennung */
  background-color: transparent;
  font-family: "Maison Neue", sans-serif;
  gap: 25px; /* Abstand zwischen Bild und Details */
}

/* Styling für das Produktbild */
.cart-item img {
  width: 160px; /* Kleineres Bild */
  height: auto; /* Automatische Höhe für ursprüngliche Form */
  object-fit: contain; /* Behält ursprüngliche Proportionen */
  border-radius: px; /* Abgerundete Ecken */
  flex-shrink: 0; /* Verhindert Schrumpfen */
}

/* Styling für die Produktdetails */
.cart-item-details {
  flex: 1; /* Nimmt den restlichen Platz ein */
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Oben ausrichten statt gleichmäßig verteilen */
  font-family: "Maison Neue", sans-serif;
  font-size: 0.8rem; /* Größere Schrift */
  font-weight: bold;
  min-height: auto; /* Automatische Höhe */
  gap: 8px; /* Kleinerer Abstand zwischen den Elementen */
}

.cart-item-details p {
  margin: 0;
  font-size: 0.8rem;
  color: #333;
  font-weight: bold;
  line-height: 1.4;
}

.cart-item-details p strong {
  font-size: 0.8rem; /* Größere Schrift für den Titel */
  color: #000;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.5px;
}

/* Styling für die Aktionen (Buttons) */
.cart-item-actions {
  display: flex;
  flex-direction: row;
  gap: 15px; /* Mehr Abstand zwischen den Buttons */
  margin-top: 10px;
}

.cart-item-actions button,
.cart-item-actions a {
  padding: 8px 15px; /* Kleinere Buttons */
  font-size: 0.8rem; /* Kleinere Schriftgröße */
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
}

.cart-item-actions button {
  background-color: transparent;
  color: #000;
  position: relative;
}

.cart-item-actions button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: #000;
  transition: width 0.3s ease;
}

.cart-item-actions button:hover::after {
  width: 100%;
}

.cart-item-actions a {
  background-color: #000000;
  color: #fff;
}

.cart-item-actions a:hover {
  background-color: #444;
}
/* Styling für den "WARENKORB LEEREN"-Button */
.clear-cart-button {
  text-decoration: none;
  font-size: 0.8rem;
  color: black;
  cursor: pointer;
  font-weight: bold;
  position: relative; /* Für das ::after-Pseudoelement */
  display: inline-block; /* Stellt sicher, dass die Breite nur so groß ist wie der Text */
  padding: 0;
  background-color: transparent; /* Kein Hintergrund */
  border: none; /* Kein Rahmen */
  margin-right: -24px;
  font-weight: bold;
}

.clear-cart-button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px; /* Abstand des Unterstrichs vom Text */
  width: 0;
  height: 0.5px; /* Dicke des Unterstrichs */
  background-color: black; /* Farbe des Unterstrichs */
  transition: width 0.3s ease; /* Smooth-Animation */
}

.clear-cart-button:hover::after {
  width: 100%; /* Unterstrich füllt die Breite des Textes */
}
button.remove-button {
  all: unset; /* Setzt alle Standardstile zurück */
  text-decoration: none;
  font-size: 0.8rem;
  color: black;
  cursor: pointer;
  font-family: "Maison Neue", sans-serif;
  font-weight: normal;
  position: relative;
  display: inline-block;
  background-color: transparent;
  border: none;
  padding: 6px 0; /* Kleinerer vertikaler Abstand */
  margin-top: 8px; /* Kleinerer Abstand nach oben */
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cart-items-container {
  flex: 1;
  overflow-y: auto;
  padding-right: 10px;
}

.cart-items-container p {
  font-size: 0.8rem;
  font-weight: bold;
  color: #555;
  text-align: center;
  margin-top: 20px;
  font-family: "Maison Neue", sans-serif;
}
.cart-item p {
  text-align: left; /* Links ausrichten */
  margin: 0; /* Entfernt Standardabstand */
  font-size: 0.8rem; /* Kleinere Schriftgröße */
  font-weight: bold;
  color: #333; /* Optional: Textfarbe */
}
.menu-icon {
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  z-index: 11; /* Hamburger-Menü bleibt oben */
  display:none;
}
/* Standard-Overlay */
.overlay {
  display: none; /* Standardmäßig versteckt */
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw; /* Deckt den gesamten Bildschirm ab */
  height: 100vh; /* Deckt den gesamten Bildschirm ab */
  background-color: rgba(0, 0, 0, 0.5); /* Abdunkelung */
  z-index: 8; /* Overlay bleibt unter der Sidebar */
}

/* Wenn die Sidebar geöffnet ist, Overlay anzeigen */
.sidebar.open + .overlay {
  display: block;
  z-index: 8; /* Overlay bleibt unter der Sidebar */
}
.footer-text {
  font-family: "Maison Neue", sans-serif;
  font-size: 0.8rem; /* Schriftgröße für mobile */
  color: #111; /* Textfarbe */
  text-align: left; /* Zentriert den Text */

}
/* Stil für den Container des PayPal Buttons */
#paypal-button-container {
  margin-top: 10px; /* Abstand nach oben verringert, um ihn weiter nach oben zu verschieben */
  text-align: right; /* Richtet den Inhalt (den Button) rechts aus */
  /* Um den Button größer zu machen, erhöhen wir die maximale Breite des Containers */
  max-width: 400px; /* Beispielwert: Setze hier die gewünschte maximale Breite */
  margin-left: auto; /* Zentriert den Container, wenn er schmaler als der Elterncontainer ist */
  margin-right: 300px; /* Stellt sicher, dass er rechts ausgerichtet bleibt */
  background-color: transparent;


}
.main-layout.product-page {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 20px;
  min-height: auto;
}
/* Grundlegende Einstellungen für Mobile-Layouts */
@media (max-width: 768px) {
  /* Verhindert horizontales Scrollen und Verschiebungen */
  html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    padding-left: 7px;
  }

  /* Responsive Anpassungen für Hero-Video und Bilder */
  .hero {
    width: 100%; /* Volle Breite auf Mobile */
    padding: 20px; /* Reduzierter Abstand auf Mobile */
  }

  .text-below-video {
    width: 100%; /* Volle Breite auf Mobile */
    padding: 0 20px 20px 20px; /* Reduzierter Abstand auf Mobile */
  }

  .intro-text {
    width: 100%; /* Volle Breite auf Mobile */
    padding: 0 20px 20px 20px; /* Reduzierter Abstand auf Mobile */
  }

  .bilder-unter-text {
    width: 100%; /* Volle Breite auf Mobile */
    padding: 20px; /* Reduzierter Abstand auf Mobile */
    flex-direction: column; /* Bilder untereinander auf Mobile */
    gap: 15px; /* Reduzierter Abstand zwischen Bildern */
  }

  .bild-hochformat {
    width: 100%; /* Volle Breite auf Mobile */
  }

  
  /* Suchleiste */
  #search-bar {
    padding-top: 200px;
  left:  5px;  }
  
  /* Warenkorb-Buttons mit festen Abständen anstelle von negativen Margins */
  #clearCart {
    position: absolute;
    top: 17px;
    left: auto;
    right: calc(100% + 40px); /* Konsistente Positionierung */
  }
  

  
  #cartItems {
    margin-top: 30px;
    overflow-y: auto;
    box-sizing: border-box;
  }
  
  /* Button-Container mit fester Position */
  .button-container {
    position: fixed;
    bottom: 180px;
    left: 20px;
    width: calc(100% - 40px);
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    z-index: 101;
    background-color: transparent;
  }
  
  /* Open-Cart-Button auf Mobile weiter unten positionieren */
  .open-cart-button {
    position: fixed;
    bottom: -230px; /* Weiter unten als der Button-Container */
    right: 20px;
    z-index: 101;
  }
  
  /* Sidebar angepasst */
  .sidebar {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 75px;
    right: -100%;
    background-color: #fff;
    transition: right 0.3s ease-in-out;
    z-index: 999;
    align-items: flex-start;
    box-sizing: border-box;
    padding: 0 15px; /* Konsistenter Innenabstand */
  }
  
  .sidebar.open {
    right: 0;
  }
  
  /* Overlay für Sidebar */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9;
    display: none;
  }
  
  .sidebar.open + .overlay {
    display: block;
  }
  
  /* Anpassungen für Produkte und Buttons */
.add-to-cart {
  width: 190vw; /* Schaltfläche nutzt die volle Breite ihres Containers */
  box-sizing: border-box; /* Sicherstellen, dass Padding und Border in der Breite enthalten sind */
  text-align: center; /* Text innerhalb der Schaltfläche wird zentriert */
  margin-left: -50px;
}

  
 .product-layout {
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  padding: 0 15px; /* Konsistentes Padding */
  /* Entferne das negative margin oder reduziere es */
  margin-bottom: 0px; /* Positives margin statt negatives */
  display: flex;
    flex-shrink: 1;
  min-width: 250px; /* Optional – verhindert zu starkes Schrumpfen */
}



/* Stil für jedes Bild */
.product-images img.thumbnail {
  width: 100%;
  min-width: 10%; /* Wichtig für Flexbox */
  height: auto;
  object-fit: contain;
  scroll-snap-align: start; /* Falls du Snap-Scrolling behalten möchtest */
}
  
  /* Bilder innerhalb des Containers */
  .product-images img {
    scroll-snap-align: start;
    width: 100%;
    flex-shrink: 0;
    object-fit: contain;
  }
  
  .product-info {
    order: 2;
    width: calc(100% - 30px); /* Berücksichtigt den margin-left */
 
    margin-bottom: 10px;
    padding-top: 0;
    box-sizing: border-box;
    font-size: 0.8rem;
  }
  
  /* Konsistentes Grid-Layout für Größenoptionen */
  .size-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 160vw;
    padding: 0;
    padding-right: 15px;
    box-sizing: border-box;
    margin-left: 0; /* Kein negativer Margin */
  }
  
  .size-box {
    width: 100%;
    margin: 0;
    box-sizing: border-box;
  }
  
  /* Aufklappbare Abschnitte */
  .description-text,
  .details-text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    width: 100%;
  }
  
  .description-text.open,
  .details-text.open {
    max-height: 500px;
  }
  
  /* Modal-Anpassung */
  .modal-content {
    width: 90%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
  }
  
  /* Accessoires-Anpassungen */
  .accessoires-heading {
    margin-left: 4px;
    text-align: left;
    font-size: 0.8rem;
  }

 .description-text {
 font-size: 0.8rem;
  text-align: justify;
  overflow-wrap: break-word;
  word-break: break-word;
  width: 100%;
  max-width: 160vw;
  box-sizing: border-box;
 }
  .details-text {
 font-size: 0.8rem;
  text-align: justify;
  overflow-wrap: break-word;
  word-break: break-word;
  width: 100%;
  max-width: 160vw;
  box-sizing: border-box;
 }
   .accessoires-grid {
   display: flex;
   flex-wrap: wrap;
   justify-content: flex-start;
   margin-left: 0;
   padding-top: 5px;
   padding-left: 5px;
   padding-right: 15px;
   gap: 3px;
   box-sizing: border-box;
 }
  
                                               .accessoire-product-info {
        font-size: 0.8rem;
        margin-right: 0;
        width: 180px;
        box-sizing: border-box;
        padding-top: 0;
        text-align: left;
      }
  
           .accessoire-product-info .product-title,
    .accessoire-product-info .product-price {
      font-size: 0.8rem;
      margin-bottom: 1px;
      padding-right: 0;
      text-align: left;
    }
  
   .accessoire-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
  }
  
           .accessoire-item {
      width: auto;
      margin-left: 0;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 5px;
    }

  
  /* Hero-Bereich */
  .hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto; /* Automatische Höhe statt fester Höhe */
    width: calc(100% - 10px); /* Mobile: Breite bis zum Menü-Symbol */
    margin-top: 20px; /* Positive Margins */
    margin-bottom: 20px;
    padding: 0;
    box-sizing: border-box;
  }
  
  .hero-video {
    max-width: 100%;
    max-height: 80vh; /* Maximale Höhe relativ zum Viewport */
    object-fit: cover;
    transform: scale(1.1);
    padding-left: 0rem;
  }
.text-below-video {
  margin: 0; /* entfernt äußere Abstände */
  padding: 10px 0; /* bei Bedarf etwas Innenabstand oben/unten */
  font-size: 1.2rem; /* optional, Textgröße */
  text-align: left; /* optional, zentriert Text */
  width: calc(100% - 10px); /* Mobile: Breite bis zum Menü-Symbol */


}
 .intro-text {
    font-size: 0.8rem;     /* Schriftgröße bleibt gleich */
    line-height: 1.4;      /* Zeilenabstand bleibt gleich */
    padding: 0;            /* Innenabstand bleibt entfernt */
    text-align: left;      /* Text bleibt links ausgerichtet */
    padding-bottom: 20px;
    width: calc(100% - 10px); /* Mobile: Breite bis zum Menü-Symbol */

  }
  
  /* Bilder unter Text */
  .bilder-unter-text {
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 15px;
  }
  
  .bilder-unter-text img {
    width: 100%; /* Volle Container-Breite */
    margin-bottom: 20px;
    padding-left: 0; /* Kein Padding links */
    box-sizing: border-box;
        transform: scale(1.1);
    padding-top: 20px;

  }

/* Footer */
.footer-links {
background-color: transparent;
text-align: left; /* Links ausrichten für bessere Lesbarkeit */
font-size: 0.8rem; /* Einheitliche Schriftgröße */
border-top: none;
font-family: "Maison Neue", sans-serif;
font-weight: normal;
width: calc(100% - 10px); /* Mobile: Breite bis zum Menü-Symbol */
box-sizing: border-box;
line-height: 1; /* Reduzierter Zeilenabstand für bessere Lesbarkeit */
margin-top: 0; /* Kein zusätzlicher Abstand nach oben */
margin-left: -25px;
}

.footer-links a {
display: block; /* Auf Mobile untereinander */
margin: 0  10px 0;
}
  
  .footer-text {
    font-family: "Maison Neue", sans-serif;
    font-size: 0.8rem;
    color: #111;
    text-align: left;
    font-weight: bold;
    margin-top: 10px;
    width: 100%;
    box-sizing: border-box;
    padding-left: 5px;

  }
  
  /* Burger-Menü */
  .menu-icon {
    display: block;
    position: fixed;
    top: 15px;
    right: 15px;
    font-size: 30px;
    cursor: pointer;
    z-index: 1001; /* Höherer z-index als Sidebar */
  }




/* Cart Container – Desktop: rechts */
.cart-container {
  position: absolute; /* Fixiere den Button relativ zum oberen linken Rand */
  top: 15px; /* Abstand vom oberen Rand */
  left: 5px; /* Abstand vom linken Rand */
  margin: 10px; /* Optional: Abstand zum Rand, falls gewünscht */
}
/* Cart Button optional stylen */
 .product-info.gürtel-info {
   width: 100%;
   max-width: none;
   margin-left: 0;
   padding-left: 0;
   padding-right: 20px;
   box-sizing: border-box;
   text-align: left;
   background-color: white;
   padding-top: 10px;
   padding-bottom: 20px;
   font-size: 0.8rem;
   position: sticky;
   top: 60px;
   height: fit-content;
 }

   /* Anpassungen für Elemente innerhalb der gürtel-info */
  .product-info.gürtel-info .size-options {
    margin-bottom: 20px;
    width: 100%;
    margin-left: 0;
    padding-left: 0;
  }

  .product-info.gürtel-info .add-to-cart {
    margin-bottom: 20px;
    width: 100%;
    max-width: none;
    margin-left: 0;
    padding-left: 0;
  }

 .product-info.gürtel-info .toggle-description,
 .product-info.gürtel-info .toggle-section {
   margin-bottom: 10px;
   display: block;
   margin-left: 0;
   padding-left: 0;
 }

 .product-info.gürtel-info .description-text,
 .product-info.gürtel-info .details-text {
   margin-bottom: 15px;
   width: 100%;
   margin-left: 0;
   padding-left: 0;
 }

 /* Mobile Anpassung für gürtel-info */
 @media (max-width: 768px) {
   .product-info.gürtel-info {
     font-size: 0.8rem;
   }
 }

.product-images {
  width: 107%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-sizing: border-box;
  max-height: 100vh; /* Höhenbegrenzung für normale Bildschirme */
  margin-bottom: -10px;
  margin-left: -20px;
 
}

.thumbnail-row {
  width: 50%;
  padding-right: 5px;
  display: flex;
}
#clearCart {
  position: absolute; /* Fixiere den Button relativ zum oberen linken Rand */
  top: -5px; /* Abstand vom oberen Rand */
  left: -10px; /* Abstand vom linken Rand */
  margin: 10px; /* Optional: Abstand zum Rand, falls gewünscht */
}
.main-layout.product-page {
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 100vh;
}
  
  /* Gesamthöhe des Inhalts sicherstellen, damit Scrollen nötig ist */
  .product-layout {
    min-height: auto; /* Automatische Höhe für normales Scrollen */
    overflow-y: auto;
  }
  
 
  
  
  /* Infobereich und Footer in den normalen Dokumentfluss einfügen */

}



  


   


/* === Search Overlay === */
.search-overlay {
  position: fixed;
  top: 80px;
  left: -100%;
  width: 100%;
  height: calc(100% - 80px);
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 10000;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20px;
}

.search-overlay.active {
  left: 0;
}

.search-content {
  width: 100%;
  max-width: 100%;
  padding: 0 40px;
  margin-left: -10px;
}

.search-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  margin-top: -30px;
  margin-left: 0px;
  position: relative;
  width: 100%;
}

.search-header::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
}

#search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Maison Neue', sans-serif;
  font-size: 0.8rem;
  font-weight: bold;
  color: #000;
  padding: 0;
  margin-right: 20px;
  margin-left: 0px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  width: 100%;
}

#search-input::placeholder {
  color: #999;
  font-weight: bold;
  text-transform: uppercase;
}

.close-search {
  background: none;
  border: none;
  font-size: 1rem;
  color: #000;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.close-search:hover {
  color: #666;
}

.search-results {
  margin-top: 20px;
  max-height: 70vh;
  overflow-y: auto;
  padding: 0;
  background: transparent;
}

.search-result-item {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  color: #000;
  font-family: 'Maison Neue', sans-serif;
  font-size: 0.8rem;
  font-weight: normal;
  transition: all 0.2s ease;
  letter-spacing: 0.5px;
}

.search-result-item:hover {
  background-color: #f8f8f8;
  padding-left: 10px;
  color: #333;
}

.no-results {
  color: #999;
  font-family: 'Maison Neue', sans-serif;
  font-size: 1rem;
  font-style: italic;
  text-align: center;
  padding: 40px 0;
}

/* Mobile Anpassungen für Search Overlay */
@media (max-width: 768px) {
  .search-overlay {
    top: 80px;
    padding-top: 20px;
  }
  
  .search-content {
    padding: 0 20px;
    max-width: 100%;
  }
  
  .search-header {
    padding-left: 0px;
    margin-left: 0px;
  }
  
  #search-input {
    font-size: 0.8rem;
    margin-left: 0px;
    width: 100%;
  }
  
  .close-search {
    font-size: 1rem;
    padding-left: 25px;
  }
  
  .search-result-item {
    font-size: 0.8rem;
    padding: 12px 0;
  }
}

/* === Improved Cart Item Styles === */

/* Enhanced cart item layout with better spacing */
.cart-item {
  position: relative; /* Für absolute Positionierung des Remove-Buttons */
  margin-bottom: 40px; /* Größerer Abstand zwischen den Elementen */
}

/* Remove button positioning - positioned to the right */
button.remove-button {
  position: absolute !important; /* Absolute Positionierung erzwingen */
  right: 2px !important; /* Positioniert den Button rechts */
  top: 0px !important; /* Positioniert den Button oben */
  transition: color 0.2s ease;
}

button.remove-button:hover {
  color: #666 !important; /* Hover-Effekt */
}

/* Mobile responsive styles for cart items */
@media (max-width: 768px) {
  .cart-item {
    padding: 15px !important; /* Weniger Padding auf Mobile */
  }

  .cart-item img {
    width: 80px !important; /* Noch kleineres Bild auf Mobile */
    height: auto !important;
  }

  /* Remove button positioning on mobile */
  button.remove-button {
    right: 0px !important; /* Angepasst für Mobile */
    top: 0px !important; /* Angepasst für Mobile */
    font-size: 0.8rem !important; /* Schriftgröße bleibt bei 0.8rem */
    padding: 8px 0 !important; /* Mehr Padding für bessere Touch-Bedienung */
  }

  /* Schriftgröße bleibt bei 0.8rem für Produktdetails auf Mobile */
  .cart-item p {
    font-size: 0.8rem !important; /* Schriftgröße bleibt bei 0.8rem */
    margin-bottom: 4px !important; /* Weniger Abstand zwischen den Zeilen */
  }

  .cart-item p strong {
    font-size: 0.8rem !important; /* Schriftgröße bleibt bei 0.8rem für den Titel */
  }

  /* Reduziere den Gap zwischen Bild und Details auf Mobile */
  .cart-item {
    gap: 15px !important; /* Kleinerer Gap auf Mobile */
  }

  /* Mobile Anpassungen für Bilder unter Text auf index.html */
  .bilder-unter-text {
    flex-direction: column !important; /* Bilder untereinander auf Mobile */
    width: 100% !important; /* Volle Breite auf Mobile */
    padding: 5px 10px !important; /* Weniger Padding auf Mobile */
    gap: 0 !important; /* Kein Abstand zwischen den Bildern */
  }

  .bilder-unter-text img {
    width: 100% !important; /* Jedes Bild nimmt die volle Breite ein */
    margin-bottom: 0 !important; /* Kein Abstand nach unten */
    padding-top: 10px !important; /* Weniger Padding oben */
  }

  /* Verstecke das zweite Bild auf Mobile */
  .bilder-unter-text img:nth-child(2) {
    display: none !important;
  }
}



