#page-preload-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 1.3s cubic-bezier(.51,.02,.41,.91);
}

#page-preload-overlay.hide {
  opacity: 0;
  pointer-events: none;
}

.gold-linie-center,
.gold-linie-top,
.gold-linie-bottom {
  position: absolute;
  left: 50%;
  width: 80vw;
  height: 5px;
  background: linear-gradient(90deg, #fed500 0%, #ffe470 100%);
  border-radius: 4px;
  box-shadow: 0 2px 14px #fed50099;
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
  transition:
    transform 1.25s cubic-bezier(.51,.05,.21,.91),
    opacity 0.7s;
}

.gold-linie-center {
  top: 50%;
  margin-top: -2.5px;
  z-index: 110000;
}
.gold-linie-center.show {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}
.gold-linie-center.move-down {
  transform: translateX(-50%) translateY(60px) scaleX(1);
}
/* Schnellere Ausblendung! */
.gold-linie-center.split {
  opacity: 0;
  transition: opacity 0.38s;
}

.gold-linie-top,
.gold-linie-bottom {
  z-index: 110000;
}
.gold-linie-top {
  top: 45%;
  opacity: 0;
  transition:
    top 0.75s cubic-bezier(.51,.02,.41,.91),
    opacity 0.5s,
    transform 1.25s cubic-bezier(.51,.05,.21,.91);
}
.gold-linie-bottom {
  top: 55%;
  opacity: 0;
  transition:
    top 0.75s cubic-bezier(.51,.02,.41,.91),
    opacity 0.5s,
    transform 1.25s cubic-bezier(.51,.05,.21,.91);
}
.gold-linie-top.show,
.gold-linie-bottom.show {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}
.gold-linie-top.flyup {
  top: 14%;
}
.gold-linie-bottom.flydown {
  top: 86%;
}


.preload-logo {
  position: relative;
  opacity: 0;
  z-index: 120000;
  width: 28vw;
  max-width: 330px;
  min-width: 90px;
  transform: scaleY(0.3) translateY(50px);
  filter: drop-shadow(0 2px 44px #fed500bb) brightness(1.11);
  transition:
    opacity 0.5s cubic-bezier(.51,.02,.41,.91),
    transform 0.9s cubic-bezier(.51,.02,.41,.91);
  will-change: transform, opacity;
}
.preload-logo.show {
  opacity: 1;
  transform: scaleY(1.05) translateY(-12px);
}

/* Optional: kleineres Logo auf kleineren Bildschirmen */
@media (max-width: 600px) {
  .preload-logo {
    width: 48vw;
    max-width: 200px;
  }
}

/* Haupt-Content Fader */
body.is-preload #page-content,
body.is-preload header,
body.is-preload #main-content,
body.is-preload .hero,
body.is-preload footer,
body.is-preload .gold-divider,
body.is-preload .flyout-lippe {
  opacity: 0 !important;
  transition: opacity 1.15s cubic-bezier(.51,.02,.41,.91);
}
body:not(.is-preload) #page-content,
body:not(.is-preload) header,
body:not(.is-preload) #main-content,
body:not(.is-preload) .hero,
body:not(.is-preload) footer,
body:not(.is-preload) .gold-divider,
body:not(.is-preload) .flyout-lippe {
  opacity: 1 !important;
  transition: opacity 1.15s cubic-bezier(.51,.02,.41,.91);
}

/* Header-Logo erst nach Preloader sichtbar */
#main-header-logo {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(.46,.03,.52,.96);
}
body.header-logo-visible #main-header-logo {
  opacity: 1;
  visibility: visible;
}

/* ======================= */
/* ENDE Preloader/Fade Bereich */
/* ======================= */


h1 {
  font-family: "Quentin", Arial, sans-serif;
}

.elegant-text {
  font-family: "Rounded Elegance", Arial, sans-serif;
}

/* Allgemeine Einstellungen */
body {
  margin: 0;
  font-family: "Rounded Elegance", sans-serif;
  background-color: #000000;
  color: #fff;
  scroll-behavior: smooth;
}

h1, h2, h3 {
  color: #fed500;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background-color: #fed500;
  color: #000;
  padding: 8px 16px;
  margin: 5px 0;
  border-radius: 12px;
  transition: background-color 0.3s, box-shadow 0.3s;
  font-size: 1rem;
}

button:hover {
  background-color: #fff;
  color: #000;
  box-shadow: 0 0 12px #fed500;
}

/* Footer */
.site-footer {
  background: #000000;
  padding: 20px;
  text-align: center;
  border-top: 1px solid #fed500;
  color: #aaa;
}

.site-footer .footer-content a {
  color: #fed500;
  text-decoration: none;
  margin: 0 10px;
  font-size: 0.9rem;
}

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

/* Map-Section */
.map-section {
  margin: 40px 0 0 0;
  border-top: 2px solid #222;
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 300px;
  filter: grayscale(100%);
  border: none;
}

/* Share-Info */
.share-info {
  font-size: 0.9rem;
  text-align: center;
  color: #ccc;
  margin-top: 10px;
  margin-bottom: 5px;
}

/* Social Links als Text */
.socials a {
  color: #fed500;
  margin: 0 8px;
  font-size: 0.95rem;
  text-decoration: none;
  font-weight: 500;
}

.socials a:hover {
  text-decoration: underline;
}

/* Warenkorb oben rechts */
.cart-icon {
  position: relative;
  font-size: 1.3rem;
  color: #fed500;
  background: #fed500;
  border-radius: 50%;
  padding: 10px;
  display: inline-block;
  line-height: 1;
  box-shadow: 0 0 0 4px #222;
}

.cart-icon #cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #111;
  color: #fed500;
  font-weight: bold;
  font-size: 0.78rem;
  border-radius: 50%;
  padding: 4px 7px;
  line-height: 1;
  border: 2px solid #fed500;
}

/* Flyout oben/unten abgerundet + moderne Scrollbar */
.einkaufsliste-flyout .flyout-content {
  border-radius: 20px 0 20px 0;
  scrollbar-width: thin;
  scrollbar-color: #fed500 #111;
}

.einkaufsliste-flyout .flyout-content::-webkit-scrollbar {
  width: 6px;
}

.einkaufsliste-flyout .flyout-content::-webkit-scrollbar-track {
  background: #111;
}

.einkaufsliste-flyout .flyout-content::-webkit-scrollbar-thumb {
  background-color: #fed500;
  border-radius: 10px;
  border: 1px solid #111;
}

/* Einkaufslisten-Zeilen-Layout */
#cart-items li.cart-list-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Rounded Elegance", sans-serif;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 8px 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #222;
  justify-content: center;       /* <--- zentriert! */
  flex-wrap: wrap;               /* <--- mehrere Zeilen möglich */
}

#cart-items .item-name {
  flex: 1;
  color: #fed500;
  font-weight: 500;
  font-size: 1rem;
  white-space: normal;
  overflow: visible;
  text-overflow: initial;
  word-break: break-word;
}


.cart-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 auto;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}

.cart-actions button {
  font-size: 0.95rem;
  padding: 3px 8px;
  border-radius: 7px;
  min-width: 0;
  margin: 0 2px;
  background: #fed500;
  color: #111;
  transition: background 0.2s, color 0.2s;
}

.cart-actions button:hover {
  background: #fff;
  color: #fed500;
}

.cart-actions .item-qty {
  display: inline-block;
  min-width: 18px;
  text-align: center;
  font-weight: bold;
  color: #fff;
  margin: 0 2px;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 18px 0 0 0;
}
.share-btn:disabled {
  background: #444 !important;
  color: #888 !important;
  cursor: not-allowed;
  opacity: 0.7;
  box-shadow: none;
}


/* Leerer Hinweis */
.leer-hinweis {
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  color: #ccc;
  font-style: italic;
  font-size: 1.03rem;
  min-height: 40px;
  margin: 24px 0 12px 0;
  width: 100%;
  word-break: break-word;
}


/* Header */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: #000000;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #fed500;
  flex-wrap: wrap;
  gap: 12px;
}

.logo {
  height: 100px;
  max-width: 220px;
  width: auto;
  object-fit: contain;
  margin-right: 25px;
  transition: height 0.3s;
}



@media (max-width: 900px) {
  .logo {
    height: 90px;
    max-width: 170px;
  }
}
@media (max-width: 700px) {
  .logo {
    height: 75px;
    max-width: 140px;
    margin: 0 auto 10px auto;
    display: block;
  }
}
@media (max-width: 430px) {
  .logo {
    height: 62px;
    max-width: 120px;
    margin: 0 auto 10px auto;
    display: block;
  }
}


/* Navigation */
nav a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  font-size: 1.02rem;
}

nav a:hover {
  text-decoration: underline;
}

.search-container {
  position: relative;
  display: flex;
  align-items: center;
}

#search {
  padding: 6px 10px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  width: 200px;
  background: #191919;
  color: #fff;
  outline: none;
}

.reset-button {
  margin-left: -28px;
  cursor: pointer;
  color: #fed500;
  font-weight: bold;
  font-size: 1.1rem;
  background: transparent;
  border: none;
  z-index: 10;
  padding: 4px 8px;
  border-radius: 50%;
  background: rgba(254,213,0,0.1);
  transition: background 0.2s;
}

#search-suggestions {
  position: absolute;
  display: none;
  top: 35px;
  left: 0;
  right: 0;
  background: #222;
  border: 1px solid #444;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  border-radius: 10px;
  box-shadow: 0 2px 10px #111;
  list-style: none;
  padding-left: 0;
}

#search-suggestions li {
  padding: 5px 10px;
  cursor: pointer;
  color: #fff;
  transition: background-color 0.3s;
  list-style: none;
}

#search-suggestions li.active,
#search-suggestions li:hover {
  background-color: #fed500;
  color: #000;
  font-weight: bold;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
}

.hero video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero h1, .hero p {
  margin: 0.2em;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.5em 1em;
  border-radius: 10px;
}

/* Tabs */
.tabs.tab-container.styled-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px 0 6px 0;
  background: #111;
  flex-wrap: wrap;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

/* Tabs auf Mobil als Dropdown */
.category-dropdown {
  display: none;
}
@media (max-width: 600px) {
  .tabs.tab-container.styled-tabs {
    display: none;
  }
  .category-dropdown {
    display: block;
    margin: 12px auto 0 auto;
    width: 94vw;
    max-width: 400px;
    font-size: 1rem;
    background: #191919;
    color: #fed500;
    border-radius: 8px;
    padding: 8px;
    border: 1px solid #fed500;
    outline: none;
  }
}

.tab-button {
  background: #222;
  color: #fff;
  padding: 6px 12px;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.3s;
  min-width: 85px;
}

.tab-button.active {
  background: #fed500;
  color: #000;
  font-weight: bold;
  box-shadow: 0 0 10px #fed500;
  letter-spacing: 0.5px;
}

.tab-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 8px #fed500;
}

/* Produktgrid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.product-card {
  background: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
}

.product-card.anim-zoom-on-hover:hover {
  transform: scale(1.03);
  box-shadow: 0 0 12px #fed500;
}

.product-card img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.5s, filter 0.3s;
}

.product-card:hover img {
  transform: scale(1.03);
  filter: brightness(1.1);
}

.highlighted {
  outline: 3px solid #fed500;
  transform: scale(1.05);
  transition: all 0.5s;
}

.product-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.produkt-menge {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-style: italic;
  color: #ccc;
  display: block;
  margin-top: 4px;
}

.fly-icon {
  font-size: 24px;
  position: fixed;
  transition: all 0.7s ease-in-out;
  pointer-events: none;
  z-index: 2000;
}

/* Einkaufsliste Flyout */
/* Für große Screens bleibt Flyout rechts */
.einkaufsliste-flyout {
  position: fixed;
  right: 0;
  top: 110px;
  width: 330px;
  max-width: 94vw;
  transform: translateX(100%);
  transition: transform 0.4s;
  z-index: 9999;
  margin-top: 5px !important;
}

/* Für kleine Bildschirme: Vollbild-Overlay von unten */
@media (max-width: 700px) {
  header {
    height: 150px;          /* Fixiere die Headerhöhe auf Mobil */
    min-height: 70px;
  }
  .einkaufsliste-flyout {
    position: fixed;
    left: 0;
    right: 0;
    top: 70px;             /* Beginnt direkt unter dem Header */
    bottom: 0;
    width: 100vw;
    max-width: 100vw;
    height: calc(100vh - 70px); /* Füllt alles unterhalb des Headers */
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
    transition: transform 0.4s;
    z-index: 9999;
  }
  .einkaufsliste-flyout.show {
    transform: translateY(0);
  }
  .flyout-lippe {
    display: none;
  }
}





.einkaufsliste-flyout .flyout-content {
  border-radius: 20px 0 20px 20px;  /* unten jetzt auch abgerundet */
}

.einkaufsliste-flyout.show {
  transform: translateX(0);
}

.flyout-lippe {
  position: absolute;
  left: -30px;
  top: 20px;
  width: 30px;
  height: 50px;
  background: #fed500;
  color: #000;
  border-radius: 10px 0 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 1.2rem;
}

.flyout-content {
  background: #111;
  padding: 22px 20px 15px 20px;
  border-left: 2px solid #fed500;
  height: 80vh;
  overflow-y: auto;
  border-radius: 0 0 0 20px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}

.flyout-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 12px;
}

.flyout-header button {
  align-self: flex-end;
  margin-bottom: 8px;
  margin-right: 0;
  margin-top: -12px;
}

.flyout-header h2 {
  margin: 0 0 8px 0;
  font-size: 1.5rem;
  color: #fed500;
  text-align: center;
}

/* Toast */
.toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fed500;
  color: #000;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s;
}

.toast.show {
  opacity: 1;
}

/* Mehr-Anzeigen Button */
.more-button.styled-more-button,
.less-button.styled-more-button {
  display: block;
  margin: 24px auto 0 auto;
  background: linear-gradient(145deg, #f3c400, #fed500);
  color: #000;
  font-weight: bold;
  padding: 10px 32px;
  border-radius: 14px;
  box-shadow: 0 0 8px #fed500;
  transition: all 0.3s;
  font-size: 1.05rem;
}

.more-button.styled-more-button:hover,
.less-button.styled-more-button:hover {
  background: #fff;
  color: #fed500;
  transform: scale(1.04);
}

@media (max-width: 800px) {
  .einkaufsliste-flyout {
    width: 98vw;
    max-width: 98vw;
    top: 75px;
    border-radius: 0 0 0 20px;
  }
  .flyout-content {
    border-radius: 0 0 0 20px;
    padding: 13px 8px 13px 8px;
    min-height: 270px;
  }
}

/* Schließen-Button volle Breite & responsive */
.close-cart-fullwidth {
  width: 100% !important;
  background: #fed500 !important;
  color: #000 !important;
  font-weight: bold !important;
  font-size: 1.09rem !important;
  border-radius: 14px !important;
  margin-top: 5px !important;
  margin-bottom: 5px !important;
  padding: 12px 0 !important;
  text-align: center !important;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 1px 6px #fed50033 !important;
  display: block !important;
}


.close-cart-fullwidth:hover {
  background: #fff;
  color: #fed500;
}

/* Adresse weiß und kleiner als Überschrift */
.flyout-header .adresse {
  color: #fff !important;
  font-size: 1.02rem;
  opacity: 0.85;
  display: block;
  margin-top: 3px;
  letter-spacing: 0.03em;
  font-weight: 400;
}

/* Leerer Hinweis zentrieren */
.leer-hinweis {
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  color: #ccc;
  font-style: italic;
  font-size: 1.03rem;
  min-height: 40px;
  margin: 24px 0 12px 0;
}

/* Teilen/Drucken Buttons nebeneinander und volle Breite */
.action-button-row {
  display: flex;
  gap: 15px;
  width: 100%;
  margin: 15px 0 5px 0;
}

.action-button-row .share-btn {
  flex: 1 1 50%;
  width: 100%;
  margin: 0;
  font-size: 1.05rem;
  padding: 11px 0;
}

/* Social Follow Buttons untereinander, volle Breite */
.social-follow-block {
  width: 100%;
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.follow-facebook {
  width: 100%;
  background: #1877f3 !important; /* Facebook Blau */
  color: #fff !important;
  font-weight: 600;
  font-size: 1.07rem;
  margin-bottom: 0;
  letter-spacing: 0.01em;
}

.follow-facebook:hover {
  background: #1162c7 !important;
}

.follow-instagram {
  width: 100%;
  background: linear-gradient(90deg, #f58529, #dd2a7b 55%, #8134af 100%) !important;
  color: #fff !important;
  font-weight: 600;
  font-size: 1.07rem;
  letter-spacing: 0.01em;
}

.follow-instagram:hover {
  background: linear-gradient(90deg, #b73620, #c82667 55%, #472178 100%) !important;
}

#cart-items {
  padding-left: 0 !important;
  margin-left: 0 !important;
}
#cart-items .leer-hinweis {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.gold-marker {
  filter: drop-shadow(0 2px 7px #fed500aa);
}

.load-more-footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0 40px 0;
  grid-column: 1/-1; /* Damit sie ggf. bei grid layouts wirklich drunter ist */
}

.more-button.styled-more-button,
.less-button.styled-more-button {
  min-width: 180px;
  margin: 0 8px;
}

.load-more-footer {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.more-button.styled-more-button,
.less-button.styled-more-button {
  min-width: 190px;      /* Mindestbreite */
  max-width: 220px;      /* Maximal optional */
  width: 200px;          /* Feste Breite für beide Buttons */
  text-align: center;
  flex: 1 1 0px;         /* Beide gleich groß im Container */
}

.nav-to-mercato {
  width: 100%;
  margin-top: 12px;
  background: rgba(0, 0, 0, 0.65) !important;
  color: #fff !important;
  font-weight: 600;
  font-size: 1.07rem;
  border-radius: 12px;
  border: 2px solid #fed500;
  box-shadow: 0 1px 12px #111a;
  text-align: center;
  letter-spacing: 0.01em;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
  display: block;
}
.nav-to-mercato:hover {
  background: #fed500 !important;
  color: #111 !important;
  border-color: #fff;
  box-shadow: 0 0 10px #fed500;
}

.mercato-flyout-logo {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 0;
}

.mercato-flyout-logo img {
  width: 250px;
  max-width: 65%;
  height: auto;
  filter: drop-shadow(0 1px 8px #fed500aa) brightness(1.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 12px;
}

.flyout-header h2 {
  margin: 8px 0 !important;
}

.mini-logo-in-flyout {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}
.mini-logo-in-flyout img {
  height: 90px;
  width: auto;
  border-radius: 8px;
  padding: 2px 10px;
}
.flyout-header h2 {
  margin: 8px 0 2px 0 !important;
  font-size: 1.27rem;
  color: #fed500;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.flyout-header .adresse {
  display: block;
  margin-top: 0;
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.04rem;
  opacity: 0.9;
  text-align: center;
}

.zu-produkten-btn {
  margin: 14px auto 0 auto;
  display: block;
  background: #fed500;
  color: #111;
  font-weight: 700;
  font-size: 1.04rem;
  border-radius: 12px;
  padding: 12px 24px;
  border: none;
  box-shadow: 0 2px 10px #fed50055;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.zu-produkten-btn:hover {
  background: #fff7c2;
  color: #9a7a09;
}

.product-grid,
#product-grid {
  transition: opacity 0.33s cubic-bezier(.46,.03,.52,.96);
}

.product-grid.fade-out,
#product-grid.fade-out {
  opacity: 0;
  pointer-events: none;
}

.product-grid.fade-in,
#product-grid.fade-in {
  opacity: 1;
}

nav a[data-section] {
  position: relative;
  transition: color 0.25s;
}
nav a[data-section].active,
nav a[data-section]:focus {
  color: #fed500;
}
nav a[data-section].active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 3px;
  background: linear-gradient(90deg, #fff700 0%, #fed500 45%, #be9c01 100%);
  border-radius: 3px;
  box-shadow: 0 1px 6px #fed50066;
  transition: opacity 0.3s;
  opacity: 1;
}
@media (max-width: 900px) {
  nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #000;
    padding: 10px 0;
    flex-direction: column;
    z-index: 1111;
    box-shadow: 0 8px 32px #000a;
    border-bottom: 2px solid #fed500;
  }
  nav.active {
    display: flex;
  }
  nav a {
    padding: 14px 24px;
    font-size: 1.18rem;
    margin: 0;
    text-align: left;
    border-bottom: 1px solid #222;
  }
  .burger-menu {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    width: 34px;
    height: 34px;
    justify-content: center;
    cursor: pointer;
    margin-left: 4px;
  }
  .burger-menu span {
    display: block;
    height: 4px;
    width: 100%;
    background: #fed500;
    border-radius: 3px;
    transition: all 0.25s;
  }
}
.navi-btn {
  background: #111;
  color: #fed500;
  border: 2px solid #fed500;
  border-radius: 1.5em;
  padding: 0.7em 1.5em;
  font-size: 1.12em;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  cursor: pointer;
  box-shadow: 0 4px 20px #fed50044;
  transition: background 0.15s, color 0.15s, transform 0.12s;
}
.navi-btn:hover, .navi-btn:focus {
  background: #fed500;
  color: #111;
  transform: translateY(-2px) scale(1.035);
  border-color: #be9c01;
}
.map-buttons-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2em;
  flex-wrap: wrap;
}
.gold-divider {
  width: auto;
  margin-left: calc(-50vw + 50%);
  height: 1px;
  background: linear-gradient(90deg, #fed500 0%, #ffe470 100%);
  box-shadow: 0 2px 24px #fed50044, 0 1px 0 #fff4;
  border-radius: 0 0 22px 22px;
  margin-top: 0;
  margin-bottom: 1.6rem;
  z-index: 5;
  position: relative;
}
@media (max-width: 600px) {
  .gold-divider {
    height: 1px;
    border-radius: 0 0 10px 10px;
    margin-bottom: 1rem;
  }
}
.about-section-bg {
  background: rgba(17, 17, 17, 0.72);
  border-radius: 18px;
  box-shadow: 0 4px 32px #fed50022;
  padding: 25px 52px 48px 52px;
  margin: 0 auto 0 auto;
  max-width: 1400px;               /* NOCH breiter! */
}
.about-heading {
  color: #fed500;
  text-align: center;
  font-size: 2.5rem;
  margin: 0 auto 44px auto;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.about-section-row,
.about-section-row.reverse {
  display: flex;
  align-items: flex-start;
  gap: 90px;                       /* Noch mehr Abstand */
  margin: 0 auto 56px auto;
  max-width: 1400px;
}
.about-section-row.reverse {
  flex-direction: row-reverse;
}
.about-img {
  width: 100%;
  max-width: 480px;                /* NOCH größere Bilder */
  min-height: 250px;
  max-height: 350px;
  object-fit: cover;
  margin: 0 auto 18px auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 4px 20px #fed50033;
  background: #181818;
}
.about-text {
  max-width: 500px;                /* Textblock deutlich breiter */
  margin: 0 auto 28px auto;
  line-height: 1.7;
  font-size: 1.19rem;              /* Noch einen Tick größer */
  color: #fff;
  letter-spacing: 0.01em;
  font-family: "Rounded Elegance", Arial, sans-serif;
  text-align: block;
  text-shadow: 0 1px 3px #0006;
}
.about-text h3 {
  color: #fed500;
  margin-top: 0;
}
.about-dot {
  width: 14px;
  height: 14px;
  background: #fed500;
  border-radius: 50%;
  margin: 40px auto 34px auto;
  box-shadow: 0 0 14px #fed50099;
  opacity: 0.72;
}
.about-divider {
  width: auto;
  height: 1px;
  background: linear-gradient(90deg, #fed500 10%, #fff7c2 90%);
  border-radius: 2px;
  margin: 50px auto 46px auto;
  opacity: 0.65;
}
.features-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 44px 54px;                  /* Noch mehr Abstand bei Features */
  margin: 38px auto 48px auto;
  max-width: 1240px;
}
.feature {
  background: rgba(0,0,0,0.15);
  border-radius: 16px;
  text-align: center;
  padding: 22px 32px 18px 32px;
  min-width: 160px;
  max-width: 240px;
  flex: 1 1 180px;
  box-shadow: 0 2px 16px #fed50022;
  margin-bottom: 12px;
}
.feature-img {
  margin: 0 auto 12px auto;
}
.round-img img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 14px #fed50066;
}
.feature-title {
  font-weight: 600;
  color: #fed500;
  margin-top: 12px;
  font-size: 1.15rem;
}

@media (max-width: 1200px) {
  .about-section-bg { max-width: 98vw; padding: 24px 2vw 24px 2vw; }
  .about-section-row, .about-section-row.reverse { max-width: 99vw; gap: 38px; }
  .about-img { max-width: 100%; min-height: 120px; max-height: 220px; }
  .about-text { max-width: 100%; font-size: 1.06rem; }
  .features-row { flex-direction: column; align-items: center; gap: 20px; }
}
@media (max-width: 900px) {
  .about-section-bg { padding: 18px 2vw 18px 2vw; }
  .about-section-row, .about-section-row.reverse { flex-direction: column; align-items: center; gap: 18px; }
  .about-img { max-width: 100%; min-height: 120px; max-height: 220px; }
  .about-text { max-width: 100%; font-size: 1.03rem; }
  .features-row { flex-direction: column; align-items: center; gap: 14px; }
}
