html {
  color-scheme: light;
  forced-color-adjust: none !important;
}

html, body {
  background-color: #fff !important;
  color: #000 !important;
}

/* Allgemeine Schrift → Baskerville */
body, html, p, a, button, input, textarea, label, .site-footer {
  font-family: 'Baskerville Old Face', serif !important;
}

/* Navigation, Produktnamen, Welcome to Bené */
.nav-links a,
header nav ul li a,
.product h2,
.price,
.content h1, /* Welcome to Bené */
.carousel-item a .product-label {
  font-family: 'Baskerville Old Face', serif !important;
}

/* Footer Schriftzug */
.site-footer, 
.site-footer a {
  font-family: 'Baskerville Old Face', serif !important;
}

main .shop-title {
  font-family: 'Baskerville Old Face', serif !important;
}



/* Große rote Titel → Edwardian */
.about-section h1 {
  font-family: 'Edwardian Script ITC', cursive !important;
}


/* Sicherstellen, dass Produktdetailseiten dieselbe Schrift nutzen */
.product-detail,
.product-detail h1,
.product-detail p,
.product-detail .price,
.product-detail button,
.contact-form label,
.contact-form input,
.contact-form textarea {
  font-family: "Arvo", serif !important;
}

/* Kontaktformular professionelles Styling */
.contact-form {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #f9f9f9;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

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

.contact-form button:hover {
  background-color: #ff4757;
}

.about {
  max-width: 800px;
  margin: 10px auto 1px auto !important;
  padding: 0 20px;
  line-height: 1.8;
  font-size: 18px;
  color: #333;
  text-align: left;
  background-color: #fff3f3;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}

.about:hover {
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.about h1 {
  font-size: 42px;
  color: #e63946;
  margin-bottom: 20px;
  text-align: center;
}

.about p {
  margin-bottom: 20px;
  font-weight: 400;
  text-align: justify;
}

.about p strong {
  color: #e63946;
}
.lastpart {
margin-bottom: 10px;
	line-height: 0.9;
}
@media screen and (max-width: 768px) {
  .about {
	margin-top: 200px !important;
    margin: 0px 20px 40px 20px;
    padding: 20px;
    font-size: 16px;
    line-height: 1.7;
    border-radius: 10px;
  }

  .about h1 {
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
  }

  .about p {
    margin-bottom: 16px;
    text-align: left;
  }
}

@media screen and (max-width: 768px) {
  body.about-page main {
    margin-top: 110px !important;
  }
}

/* Floating Navigation for Desktop - same as homepage everywhere */
header {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: rgba(250, 239, 229, 0.95);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(230, 57, 70, 0.1);
}

main section h4 {
  color: grey;
  font-size: 15px;
  margin-top: 2px;
  margin-bottom: 2px;
  white-space: nowrap;
  line-height: 1; /* Exakte Hhe ohne zustzlichen Abstand */
}
/* Schwebeeffekt beim Hover */
header:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover for all pages */
  background-color: rgba(250, 239, 229, 0.9); /* More opaque on hover for all pages */
}

.floating-nav {
  position: fixed;
  top: 10;
  left: 5;
  right: 5;
  transition: transform 0.5s ease;
  z-index: 999;
}

.floating-nav.hidden {
  transform: translateY(-100%);
}

header .logo img {
  height: 50px;
}

header nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 20px;
}

header nav ul li {
  margin: 0 10px;
}

header nav ul li a {
  text-decoration: none;
  color: #333 !important; /* Darker text for better contrast against the lighter background */
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8); /* Light text shadow for definition */
  transition: color 0.3s;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600; /* Slightly bolder text */
}

header nav ul li a:hover {
  color: #e63946 !important; /* Keep red hover color */
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.9); /* Enhanced shadow on hover */
  filter: brightness(0.8);
}

/* Enhanced text styling for all pages navbar */
.nav-links a, header nav ul li a {
  font-size: 14px;
  text-transform: uppercase;
  color: #333 !important; /* Darker text for better contrast against the lighter background */
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8); /* Light text shadow for definition */
  font-weight: 600; /* Slightly bolder text */
  transition: color 0.3s ease-in-out, filter 0.3s ease-in-out;
}

.nav-links a:hover, header nav ul li a:hover {
  color: #e63946 !important; /* Keep red hover color */
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.9); /* Enhanced shadow on hover */
  filter: blur(1px);
  text-shadow: 0px 0px 8px rgba(255, 0, 0, 0.8);
}

/* Entfernt die blaue Unterstreichung fr alle Links */
a {
  text-decoration: none !important;
  color: inherit !important;
}

html, body {
  margin: 0;
  padding: 0;
}

/* Content spacing for ultra-slim floating navigation */
main {
  margin-top: 0px;
  padding: 80px 0px 0px 0px;
  text-align: center;
}

main section {
  margin-bottom: 50px;
}

main section h1, main section h2 {
  color: #e63946;
}

/* Footer */
footer {
  text-align: center;
  padding: 10px;
  background-color: #ffffff;
  color: #bdafaf;
  font-size: 0.9rem;
  margin-top: 50px;
}

/* Startseite (#home) */
#home {
  height: auto;
  margin: 0;
  overflow: hidden;
  position: relative;
}

/* Hauptinhalt */
main {
  margin-top: 0px;
}

/* Zustzliche Einstellungen */
body:has(#home:target) header {
  transform: translateY(0) !important;
}

/* Removed - using consistent padding for all pages instead */


.product-detail .product-image {
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-detail .product-image img {
  max-height: 100%;
  width: auto;
  border-radius: 8px;
}

.product-detail .product-info {
  padding: 10px;
}

.product-detail h1 {
  font-size: 24px;
}

.product-detail p {
  font-size: 16px;
}

.product-detail .price {
  font-size: 18px;
}

/* Shop-Bereich */
.shop h1 {
  font-size: 80px; /* passe die Gre nach Bedarf an */
  height: 60px;
  margin-top: 30px;
}

.shop-title {
  color: red;
  font-size: 80px;
  text-align: center;
  margin-bottom: 0;
  margin-top: 40px;
}

/* Kontaktformular */
.contact form input,
.contact form textarea {
  width: 100%;
}


.content h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.content p {
  font-size: 16px;
  margin-bottom: 20px;
}

.content .product-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #e63946; /* rotes Feld */
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: transform 0.3s, background-color 0.3s;
}
.product-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #e63946; /* rotes Feld */
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: transform 0.3s, background-color 0.3s;
}
.content .product-link:hover {
  background-color: #ff4757; /* leicht vernderte Rottnung beim Hover */
  transform: scale(1.1); /* bewegt den Link nach oben */
}

.product-link:hover {
  background-color: #ff4757; /* leicht vernderte Rottnung beim Hover */
  transform: scale(1.1); /* bewegt den Link nach oben */
}

/* Styling fr Produktnamen in Shop */
.shop .product a h2 {
  text-decoration: none !important;
  color: #2b2727 !important;
}

.shop .product a:hover h2 {
  color: #e63946 !important;
  text-decoration: none !important;
}

.size-selection {
  text-align: center;
  margin-bottom: 20px;/* Zentriert den gesamten Inhalt */
}

.size-selection p {
  margin-bottom: 10px; /* Abstand zwischen Titel und Optionen */
}

.size-options {
  display: flex;
  justify-content: center; /* Richtet die Optionen horizontal zentriert aus */
  gap: 10px; /* Abstand zwischen den einzelnen Optionen */
}


.size-option input {
  display: none;
}

.size-option span {
  color: #e63946;
}

.size-option:hover {
  background-color: #e63946;
  color: #fff;
}

.size-option input:checked + span {
  background-color: #e63946;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
}

.size-option input:disabled + span {
  text-decoration: line-through;
  color: gray;
  cursor: not-allowed;
  background-color: #f0f0f0;
  border: 2px solid #ccc;
}

/* Abschnitt fr Limited Heart Hoodie */
#limited-hoodies {
  padding: 40px 20px;
  background-color: #f8f8f8;
}

.limited-hoodies-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  gap: 20px;
}

.hoodie-image {
  flex: 1;
}

.hoodie-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.hoodie-info {
  flex: 1;
  padding: 20px;
}

.hoodie-info h2 {
  margin-bottom: 20px;
  color: #e63946;
}

.hoodie-info p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #333;
}

.hoodie-info .product-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #e63946;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.hoodie-info .product-link:hover {
  background-color: #ff4757;
}

/* Container fr die Startseite */
#home {
  position: relative;
  height: auto;
  overflow: hidden;
}

/* Bild als Hintergrund */
.image-container {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Zentrierter Text */
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999; /* hohe Prioritt, damit der Text ber dem Bild liegt */
  text-align: center;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Limited Heart Hoodie Abschnitt */
#limited-hoodie-section {
  padding: 40px 20px;
  background-color: #f8f8f8;
}

#limited-hoodie-section .limited-hoodies-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap; /* Sorgt fr responsives Verhalten */
}

#limited-hoodie-section .hoodie-image {
  flex: 1;
  text-align: center;
}

#limited-hoodie-section .hoodie-image img {
  width: 100%;
  height: auto;
  object-fit: cover; /* Falls du das ganze Bild siehst, kannst du auch "contain" verwenden */
  border-radius: 8px;
}

#limited-hoodie-section .hoodie-info {
  flex: 1;
  padding: 20px;
}

#limited-hoodie-section .hoodie-info h2 {
  margin-bottom: 20px;
  color: #e63946;
  font-size: 2em;
}

#limited-hoodie-section .hoodie-info p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #333;
}

#limited-hoodie-section .hoodie-info .product-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #e63946; /* roter Hintergrund */
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: transform 0.3s, background-color 0.3s;
}

#limited-hoodie-section .hoodie-info .product-link:hover {
  background-color: #ff4757;
  transform: scale(1.1); /* Vergrert den Link beim Hover */
}

/* Karussell-Container */
#carousel-container {
  width: 100%;
  height: 630px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1500px; /* Erzeugt 3D-Tiefe */
  overflow: hidden;
}

/* Gre des gesamten Karussells anpassen */
#carousel {
  position: relative;
  width: 600px; /* Gesamtbreite des Karussells */
  height: 530px; /* Gesamthhe des Karussells */
  transform-style: preserve-3d;
  transform: perspective(1000px);
}

/* Gre jedes Carousel-Items anpassen */
.carousel-item {
  position: absolute;
  inset: 0;
  width: 500px; /* Einheitliche Breite fr alle Produkte */
  height: 500px; /* Einheitliche Hhe fr alle Produkte */
  transition: transform 1s ease, filter 1s ease;
  transform-origin: center;
}

/* Bilder innerhalb der Carousel-Items */
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Bild wird gleichmig skaliert und ggf. beschnitten, um das Format zu halten */
  border-radius: 10px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover-Effekt */
.carousel-item:hover img {
  transform: scale(1.1);
  filter: brightness(0.8);
}

/* Stelle sicher, dass der Link relativ positioniert ist */
.carousel-item a {
  position: relative;
  display: block;
}

/* Das Label, das den Produktnamen anzeigt */
.carousel-item a .product-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6); /* halbtransparenter schwarzer Hintergrund */
  color: #fff;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 5px;
  font-size: 14px;
}

/* Beim Hover ber den Link erscheint das Label */
.carousel-item a:hover .product-label {
  opacity: 1;
}

/* Entfernt Transparenz */
.carousel-item {
  opacity: 1;
}

/* Bild im Fokus hervorheben */
.carousel-item.active {
  transform: scale(1.5) translateZ(250px);
  z-index: 10;
  filter: brightness(1.1) drop-shadow(0px 0px 20px rgba(255, 255, 255, 0.8));
}

/* Standardcursor ausblenden */
body {
  cursor: none;
}

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background-color: rgb(201, 34, 37); /* Rote Farbe */
  border-radius: 50%;
  pointer-events: none; /* Verhindert Klick-Blockierung */
  z-index: 99999; /* Hchste Prioritt */
  box-shadow: 0 0 10px 2px red;
  transition: transform 0.05s ease-out, opacity 0.2s ease-out;
  opacity: 1; /* Cursor immer sichtbar */
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Der Main-Bereich wchst, wenn der Inhalt knapp ist */
.wrapper main {
  flex: 1;
}

.site-footer {
  background: #fff;
  color: #333;
  padding: 2rem 1rem 1rem 1rem;
  border-top: 3px solid #e63946;
  font-family: "Arvo", serif;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.footer-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #e63946;
}

.footer-middle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-instagram img {
  height: 30px;
  transition: transform 0.3s;
}

.footer-instagram img:hover {
  transform: scale(1.2);
}

.footer-logo img {
  height: 50px;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-bottom: 0.5rem;
}

.footer-bottom p {
  margin: 0.2rem 0;
  color: #777;
  font-size: 0.9rem;
}

/* Dein bestehendes h3-Styling bleibt erhalten */
main section h3 {
  color: black;
  font-size: 80px;
  margin-top: 2px;
  margin-bottom: 2px;
  white-space: nowrap;
  line-height: 1; /* Exakte Hhe ohne zustzlichen Abstand */
}

/* Banner Container soll nur so hoch sein wie der Text */
#banner {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  display: flex; /* Zentriert den Text vertikal */
  align-items: center; /* Keine unntige Hhe */
  height: 100px; /* Exakt die Hhe des Textes */
  margin-bottom: 0px;
}

/* Innerer Bereich mit der Animation */
.bannertext {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  min-width: 5%;
}

/* Endlos-Schleife */
@keyframes marquee {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
#banner {
  border-top: 2px solid red; /* Obere rote Linie */
  border-bottom: 2px solid red; /* Untere rote Linie */
}

@import url(https://fonts.googleapis.com/css?family=Lato:100,300,400);

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #aca49c;
  font-size: 0.875em;
}

input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  color: #bbb5af;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #aca49c;
  font-size: 0.875em;
}

input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  color: #bbb5af;
}

input::placeholder, textarea::placeholder {
  color: #aca49c;
  font-size: 0.875em;
}

input:focus::placeholder, textarea:focus:placeholder {
  color: #bbb5af;
}

input::-ms-placeholder, textarea::-ms-placeholder {
  color: #aca49c;
  font-size: 0.875em;
}

input:focus::-ms-placeholder, textarea:focus::-ms-placeholder {
  color: #bbb5af;
}

/* on hover placeholder */

input:hover::-webkit-input-placeholder, textarea:hover::-webkit-input-placeholder {
  color: #e2dedb;
  font-size: 0.875em;
}

input:hover:focus::-webkit-input-placeholder, textarea:hover:focus::-webkit-input-placeholder {
  color: #cbc6c1;
}

input:hover::-moz-placeholder, textarea:hover::-moz-placeholder {
  color: #e2dedb;
  font-size: 0.875em;
}

input:hover:focus::-moz-placeholder, textarea:hover:focus::-moz-placeholder {
  color: #cbc6c1;
}

input:hover::placeholder, textarea:hover::placeholder {
  color: #e2dedb;
  font-size: 0.875em;
}

input:hover:focus::placeholder, textarea:hover:focus::placeholder {
  color: #cbc6c1;
}

input:hover::placeholder, textarea:hover::placeholder {
  color: #e2dedb;
  font-size: 0.875em;
}

input:hover:focus::-ms-placeholder, textarea:hover::focus:-ms-placeholder {
  color: #cbc6c1;
}



#form {
  position: relative;
  width: 500px;
  margin: 50px auto 100px auto;
}

input {
  font-family: "Arvo", serif !important;
  font-size: 0.875em;
  width: 470px;
  height: 50px;
  padding: 0px 15px 0px 15px;
  
  background: transparent;
  outline: none;
  color: #726659;
  
  border: solid 1px #b3aca7;
  border-bottom: none;
  
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

input:hover {
  background: #b3aca7;
  color: #e2dedb;
}

textarea {
  width: 470px;
  max-width: 470px;
  height: 110px;
  max-height: 110px;
  padding: 15px;
  
  background: transparent;
  outline: none;
  
  color: #726659;
  font-family: 'Lato', sans-serif;
  font-size: 0.875em;
  
  border: solid 1px #b3aca7;
  
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

textarea:hover {
  background: #b3aca7;
  color: #e2dedb;
}

#submit {
  width: 502px;
  
  padding: 0;
  margin: -5px 0px 0px 0px;
  font-family: 'Lato', sans-serif;
  font-size: 0.875em;
  color: #b3aca7;
  
  outline:none;
  cursor: pointer;
  
  border: solid 1px #b3aca7;
  border-top: none;
}

#submit:hover {
  color: #e2dedb;
}

/* Gemeinsame Styles für Textfelder und Textareas im Produktformular */
.product-info .contact-form input[type="text"],
.product-info .contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-right: 10px;
}

/* Spezifische Anpassung für das Textarea */
.product-info .contact-form textarea {
  height: 100px;      /* oder eine andere gewünschte Höhe */
  resize: vertical;   /* der Nutzer kann nur vertikal die Größe ändern */
}

.contact-form {
  display: flex;
  flex-direction: column;
  min-height: 400px; /* oder eine andere passende Höhe */
}

.contact-form button[type="submit"] {
  margin-top: auto;
}

/* Mobile-Navigation: Standard-Styling */
.mobile-nav {
  display: none;
  margin: 10px;
  background-color: rgba(250, 239, 229, 0.8); /* Match desktop navbar */
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Match desktop navbar */
  backdrop-filter: blur(5px); /* Add backdrop blur for modern effect */
  -webkit-backdrop-filter: blur(5px); /* Safari support */
  z-index: 1000;
}

/* Hamburger-Menü-Styles */
.mobile-nav .nav-container {
  display: flex;
  flex-direction: column;
}

.mobile-nav .nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.mobile-nav .nav-brand a {
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  color: inherit;
}

.mobile-nav .hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.mobile-nav .hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
}

/* Menü, zunächst versteckt */
.mobile-nav .nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  flex-direction: column;
  border-top: 1px solid #ddd;
}

.mobile-nav .nav-menu.active {
  display: flex;
}

.mobile-nav .nav-item a {
  display: block;
  padding: 10px;
  color: #333;
  text-decoration: none;
}

.mobile-nav .nav-item a:hover {
  background-color: #e63946;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .mobile-nav {
    display: block;
  }
}
/* Standardmäßig mobile Navigation ausblenden */
.mobile-nav {
  display: none;
  margin: 10px;
  background-color: rgba(250, 239, 229, 0.8); /* Match desktop navbar */
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Match desktop navbar */
  backdrop-filter: blur(5px); /* Add backdrop blur for modern effect */
  -webkit-backdrop-filter: blur(5px); /* Safari support */
  /* weitere Styles */
}

/* Mobile Ansicht – ab max-width: 768px */
@media screen and (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .mobile-nav {
    display: block;
  }
}
.mobile-nav {
  background-color: rgba(250, 239, 229, 0.8); /* Match desktop navbar */
  /* weitere Styles */
}
/* Old mobile footer styles - replaced by enhanced version above */
/* Footer navigation is visible on all screen sizes */
@media screen and (max-width: 768px) {
  #limited-hoodie-section .hoodie-info p {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #banner h3 {
    font-size: 40px; /* Hier kannst du die Größe nach Wunsch anpassen */
  }
}
@media screen and (max-width: 768px) {
  /* Container zurücksetzen */
  #carousel-container {
    display: block !important;
    height: auto !important;
    overflow: visible !important;
    perspective: none !important;
    padding: 0 !important;
  }
  
  /* Wrapper ohne Karussell-Positionierung */
  #carousel {
    display: block !important;
    position: static !important;
    width: 100% !important;
    height: auto !important;
    transform: none !important;
  }
  
  /* Einzelne Produkte als Blockelemente */
  .carousel-item {
    display: block !important;
    position: static !important;
    width: 100% !important;
    height: auto !important;
    margin-bottom: 1rem !important;
    transition: none !important;
    transform: none !important;
  }
  
  /* Bilder passen sich der Breite an */
  .carousel-item img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
  }
  }
@media screen and (max-width: 768px) {
  /* Titel "Products" anpassen */
  .shop-title {
    font-size: 40px !important;
    margin-top: 150px !important; /* Bleibt, damit der Titel nicht von der Navigation verdeckt wird */
    margin-bottom: 50px !important;
    padding-bottom: 0 !important;
    line-height: 1 !important;
  }
  
  /* Falls der Wrapper (direkt nach dem Titel) eigenen Abstand hat */
  .wrapper {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  
  /* Auch main und das erste Section-Element zurücksetzen */
  main {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  
  main section:first-of-type {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  
  /* Den Carousel-Container selbst sicherstellen */
  #carousel-container {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}

@media screen and (max-width: 768px) {
  /* Produktdetail-Bereich anpassen */
  .product-detail .product-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
	margin-top: 130px;
  }
  
  .product-detail .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* sorgt dafür, dass das Bild zugeschnitten wird, um den Container vollständig zu füllen */
    border-radius: 8px;
  }
}

/* Modal Popup Styles */
.modal {
  display: none; /* Standardmäßig verborgen */
  position: fixed;
  z-index: 1000; /* Soll immer oben liegen */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5); /* Halbdurchsichtiger Hintergrund */
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 400px;
  text-align: center;
  position: relative;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #aaa;
}

.close-button:hover {
  color: #000;
}
.about p {
  text-align: center;
}

@media screen and (max-width: 768px) {
  /* Container des Formulars anpassen */
  #form {
    text-align: center;
    width: 90%; /* optional: passt die Breite für mobile Geräte an */
    margin: 50px auto 100px auto; /* horizontales Center bleibt erhalten */
  }
  /* Inhalt der Eingabefelder zentrieren */
  #form input,
  #form textarea {
    text-align: center;
	  width: 80%;
  }
}

.carousel-item.highlight img,
.carousel-item.highlight.active img {
  filter: drop-shadow(0 0 10px red) !important;
  transition: filter 0.3s ease-in-out;
}


.carousel-item.highlight img {
  filter: drop-shadow(0 0 10px red) !important;
  transition: transform 0.3s ease, filter 1s ease !important;
}

.carousel-item.highlight:hover img {
  transform: scale(1.1) !important;
  filter: brightness(0.8) !important;
}
/* Modal Popup Styles mit verfeinerter Textanordnung */
.modal {
  display: none; /* Standardmäßig verborgen */
  position: fixed;
  z-index: 2000; /* Über allen anderen Elementen */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7); /* Dunkleres Overlay */
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 30px;
  border: 3px solid #e63946; /* Auffälliger roter Rahmen */
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  text-align: left; /* Text linksbündig */
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  animation: popup-appear 0.5s ease;
}

@keyframes popup-appear {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

/* Überschriften für die Sprachabschnitte – etwas kompakter */
.modal-content h3 {
  font-size: 20px;
  margin: 0px 0 0px; /* Oben 10px, unten nur 2px Abstand */
  text-decoration: underline;
  color: #e63946;
  text-align: center;
}

.modal-content p {
  font-size: 18px;
  color: #333;
  margin: 0 0 10px; /* Kein zusätzlicher Abstand oben */
  line-height: 1.3;
  white-space: pre-line;
  text-align: center;
}


/* Feiner Trenner zwischen den Sprachabschnitten */
.modal-content hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 15px 0;
}

/* Schließ-Button */
.close-button {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #e63946;
}

.close-button:hover {
  color: #a00;
}

/* Continue-Button */
.modal-content button {
  padding: 10px 25px;
  background-color: #e63946;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;
  margin: 30px auto 0;
}

.modal-content button:hover {
  background-color: #ff4757;
}

@media screen and (max-width: 768px) {
  .modal-content {
    width: 85%;          /* Breiter, um den verfügbaren Platz besser zu nutzen */
    margin: 20% auto;     /* Größerer oberer Rand, falls nötig */
    padding: 20px;        /* Weniger Innenabstand für kleinere Bildschirme */
  }
  
  .modal-content h3 {
    font-size: 18px;
    margin: 8px 0 2px;
  }
  
  .modal-content p {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.3;
  }
  
  .modal-content button {
    font-size: 16px;
    padding: 10px 20px;
    margin: 20px auto 0;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  /* Container in Spaltenanordnung */
  #limited-hoodie-section .limited-hoodies-container {
    flex-direction: column;
    align-items: center;
  }
  
  /* Bild soll volle Breite einnehmen */
  #limited-hoodie-section .hoodie-image {
    width: 100%;
    margin-bottom: 0px;
  }
  
  #limited-hoodie-section .hoodie-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
  }
  
  /* Info-Bereich zentriert und mit angepasstem Padding */
  #limited-hoodie-section .hoodie-info {
    width: 100%;
    text-align: center;
    padding: 0 10px;
  }
  
  /* Überschrift und Text etwas verkleinern und näher zusammenrücken */
  #limited-hoodie-section .hoodie-info h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
  }
  
  #limited-hoodie-section .hoodie-info p {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  /* To the product Button zentriert und mit angepassten Abständen */
  #limited-hoodie-section .hoodie-info .product-link {
    display: inline-block;
    margin-top: 10px;
  }
}

@media screen and (max-width: 768px) {
  .custom-cursor {
    display: none !important;
  }
}

/* Damit das Badge im Bild-Container positioniert werden kann */
.product-image {
  position: relative;
}

/* Stelle sicher, dass der <a>-Tag als Positionierungsreferenz dient */
.carousel-item a {
  position: relative;
}

/* Styling für den Sold out Badge */
.sold-out-badge {
  position: absolute;
  top: 10px;       /* Abstand vom oberen Rand */
  left: 10px;      /* Abstand vom linken Rand */
  background-color: rgba(0, 0, 0, 0.7); /* Halbtransparenter Hintergrund */
  color: #fff;     /* Weiße Schrift */
  padding: 5px 10px;
  border-radius: 20px; /* Abgerundete Ecken */
  font-size: 14px;
  font-weight: bold;
  z-index: 2;      /* Damit der Badge über dem Bild liegt */
}

.product-image-slider {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: auto;
  overflow: hidden;
  border-radius: 8px;
}

.slider-images {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider-images img {
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 8px;
}

.product-image-slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 12px;
  cursor: pointer;
  z-index: 10;
  font-size: 18px;
  border-radius: 50%;
}

.product-image-slider .prev {
  left: 10px;
}

.product-image-slider .next {
  right: 10px;
}
@media screen and (max-width: 768px) {
  .product-image-slider {
    margin-top: 130px; /* oder je nach Bedarf z.B. 120px */
  }
}
#product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.product {
  background-color: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.product:hover {
  transform: translateY(-5px);
}

.product img {
  width: 100%;
  height: auto;
  display: block;
}

.product h2 {
  font-size: 18px;
  margin: 10px;
  color: #333;
  text-align: center;
}

.sold-out-badge {
  background-color: #e63946;
  color: #fff;
  text-align: center;
  padding: 5px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .product .sold-out-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  z-index: 2;
  opacity: 1; /* Immer sichtbar */
}
}
.product {
  position: relative; /* Damit das Badge korrekt im Produkt positioniert wird */
}

.product img {
  display: block;
  width: 100%;
  height: auto;
}

body {
  cursor: none; /* Standardcursor ausblenden */
}

.custom-cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background-color: #e63946;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  box-shadow: 0 0 4px rgba(230, 57, 70, 0.5); /* dezenter Glow */
  transition: transform 0.15s ease, opacity 0.2s ease;
  opacity: 1;
}


.custom-cursor.hover {
  transform: scale(2); /* sanfteres, kleineres Scaling */
}

@media screen and (max-width: 768px) {
  .custom-cursor {
    display: none !important;
  }
}
.color-options, .size-options {
  justify-content: center; /* Zentriert die Optionen */
}
@media screen and (max-width: 768px) {
  .shop-categories {
    margin-top: 140px !important;
  }
}
main .shop-title {
  font-size: 50px !important;
  font-family: 'Edwardian Script ITC', cursive !important;
  color: #e63946;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 0px;
}

@media screen and (max-width: 768px) {
  .mobile-nav + main .about-section {
    margin-top: 150px !important; /* Abstand unter mobile-nav */
  }
}
.bene-sport-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 60px; /* Größe des Logos anpassen */
  height: auto;
}

.product {
  position: relative; /* Wichtig für .bene-sport-badge */
}

.collections-section {
  text-align: center;
  margin: 15px 0;
}

.collections-section h2 {
  font-family: 'Edwardian Script ITC', cursive;
  color: #e63946;
  font-size: 40px;
  margin-bottom: 0px;
}

.collections-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.collection-item img {
  width: 80px; /* Logo-Größe anpassen */
  transition: transform 0.3s ease;
}

.collection-item:hover img {
  transform: scale(1.1);
}

.size-option.out-of-stock span {
  color: #aaa;
  text-decoration: line-through;
  cursor: not-allowed;
}
.size-option input:disabled + span {
  color: #aaa;
  text-decoration: line-through;
}

/* Home page specific styling to remove white space */
#home {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

#home .image-container {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

#home .image-container img {
  margin-top: 0 !important;
  display: block;
}

/* Ensure the main content on home page starts at the top */
body:has(#home) main {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Make sure the wrapper doesn't add extra space on home page */
body:has(#home) .wrapper {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Ensure navbar is properly positioned over the image */
body:has(#home) header {
  position: absolute;
  top: 10px;
  z-index: 100;
}

/* Enhanced Mobile Styles for Home Page */
@media screen and (max-width: 768px) {
  /* AGGRESSIVE MOBILE WHITESPACE ELIMINATION */
  html, body {
    margin: 0 !important;
    padding: 0 !important;
  }

  .wrapper {
    margin: 0 !important;
    padding: 0 !important;
  }

  main {
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Home page specific mobile adjustments - FULL SCREEN */
  #home {
    margin: 0 !important;
    padding: 0 !important;
    height: 100vh !important;
    position: relative !important;
    overflow: hidden !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
  }

  #home .image-container {
    margin: 0 !important;
    padding: 0 !important;
    height: 100vh; /* Full screen height */
    overflow: hidden;
  }

  #home .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
  }

  /* Ultra-slim stylish navigation for all pages */
  .mobile-nav {
    position: fixed !important;
    top: 10px !important;
    left: 10px !important;
    right: 10px !important;
    margin: 0 !important;
    z-index: 1000 !important;
    height: 50px !important;
    border-radius: 30px !important;
    background: linear-gradient(135deg, rgba(250, 239, 229, 0.98) 0%, rgba(250, 239, 229, 0.95) 100%) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border: 1px solid rgba(230, 57, 70, 0.15) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 4px 15px rgba(230, 57, 70, 0.1) !important;
    overflow: visible !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease !important;
  }

  .mobile-nav.hidden {
    transform: translateY(-100%) !important;
    opacity: 0 !important;
  }

  .mobile-nav.visible {
    transform: translateY(0) !important;
    opacity: 1 !important;
  }

  /* Ensure content doesn't overlap with floating navigation on all pages */
  main {
    padding-top: 80px !important;
  }

  /* Remove top padding for homepage since hero image should start from top */
  body:has(#home) main {
    padding-top: 0 !important;
  }

  /* Perfect logo centering for ALL pages */
  .mobile-nav .nav-container {
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .mobile-nav .nav-header {
    position: relative !important;
    height: 100% !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .mobile-nav .logo {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    flex: none !important;
    z-index: 10 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .mobile-nav .hamburger {
    left: 12px !important;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  .mobile-nav .cart {
    right: 12px !important;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  /* Eliminate all spacing between sections */
  .content {
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Eliminate all section margins and padding on mobile */
  main section {
    margin: 0 !important;
    padding: 0 !important;
  }

  .wrapper main {
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Specific section spacing elimination */
  #home + .bene-sport-section {
    margin-top: 0 !important;
  }

  .bene-sport-section + #banner {
    margin-top: 0 !important;
  }

  /* Bené Sport Section Mobile Improvements - Remove all whitespace */
  .bene-sport-section {
    padding: 0 !important;
    margin: 0 !important;
    height: auto !important;
    line-height: 0 !important;
    font-size: 0 !important;
  }

  .bene-sport-grid {
    flex-direction: row !important;
    height: 40vh !important;
    gap: 2px !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
    font-size: 0 !important;
  }

  .bene-sport-item {
    height: 100% !important;
    flex: 1 !important;
    position: relative;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    outline: none !important;
    display: block !important;
    line-height: 0 !important;
  }

  .bene-sport-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(75%);
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    display: block !important;
    vertical-align: top !important;
  }

  /* Extra specific rules to eliminate any possible spacing */
  .bene-sport-item:first-child {
    margin-bottom: 0 !important;
  }
  
  .bene-sport-item:last-child {
    margin-top: 0 !important;
  }
  
  .bene-sport-item + .bene-sport-item {
    margin-top: 0 !important;
  }

  .bene-sport-section .bene-sport-badge {
    width: 80px !important;
    top: 15px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .bene-sport-section .shop-now-btn {
    bottom: 15px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    padding: 8px 16px !important;
    font-size: 12px !important;
    border-radius: 20px !important;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    transition: all 0.3s ease;
  }

  .bene-sport-section .shop-now-btn:hover {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
  }

  /* Banner Mobile Improvements */
  #banner {
    height: 50px;
    margin: 0 !important;
    border-radius: 0;
    overflow: hidden;
  }

  #banner h3 {
    font-size: 24px !important;
    line-height: 1.2;
  }

  .bannertext {
    animation: marquee 15s linear infinite;
  }

  /* Product Grid Mobile Improvements */
  #product-grid {
    display: grid;
    gap: 5px;
    padding: 5px;
    margin: 0 !important;
  }

  .product {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

  .product img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .product:hover img {
    transform: scale(1.05);
  }

  .product h2 {
    padding: 15px 10px;
    font-size: 14px !important;
    text-align: center;
    margin: 0;
    color: #333;
    line-height: 1.3;
  }

  /* Footer Mobile Improvements */
  .site-footer {
    padding: 10px 15px 10px 15px;
    margin-top: 0 !important;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    order: 2;
  }

  .footer-nav a {
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 20px;
    transition: all 0.3s ease;
  }

  .footer-nav a:hover {
    background-color: rgba(230, 57, 70, 0.1);
    transform: translateY(-2px);
  }

  .footer-logo {
    order: 1;
    margin: 0;
  }

  .footer-logo img {
    height: 60px;
  }

  .footer-middle {
    position: static;
    transform: none;
    margin: 15px 0 15px 0;
    order: 3;
  }

  .footer-instagram img {
    height: 35px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .footer-instagram img:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
  }

  .footer-bottom {
    margin-top: 20px;
    padding-bottom: 20px;
    order: 4;
  }

  .footer-bottom p {
    font-size: 14px;
    margin: 5px 0;
    color: #666;
  }

  /* Mobile Navigation - No margins to allow full-screen hero */

  /* Smooth scrolling for mobile */
  html {
    scroll-behavior: smooth;
  }

  /* Better touch targets */
  a, button {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Improved spacing for mobile */
  main section {
    margin-bottom: 0;
  }

  /* Custom cursor disabled on mobile */
  .custom-cursor {
    display: none !important;
  }
}
