/** Shopify CDN: Minification failed

Line 481:0 Unexpected "}"

**/
/* ========== 1. NAVIGATION-TEXT KLEINER & KLARER ========== */
.site-nav a,
.header__menu-item,
.navigation__link {
  font-size: 15px !important;
  font-weight: 500;
  text-transform: uppercase;
  color: inherit !important; /* Sicherheitsregel */
}


/* ========== 2. ACCORDION-TITEL GRUNDDESIGN ========== */
.accordion-title {
  font-weight: 600;
  font-size: 1,1rem;
  margin: 18px 0;
  display: inline-block;
  color: #222;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-title:hover {
  background: linear-gradient(90deg, #6e56ff, #b84ef1, #ff4ecd);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* ========== 3. DARK MODE: TEXT IN DUNKLEN BLÖCKEN ========== */
.dark-section {
  background-color: rgba(0, 0, 0, 0.3);
}

/* Nur gezielte Inhalte in .dark-section weiß */
.dark-section p,
.dark-section ul,
.dark-section ol,
.dark-section li,
.dark-section span,
.dark-section a,
.dark-section strong,
.dark-section em,
.dark-section h2,
.dark-section h3,
.dark-section h4,
.dark-section .rte,
.dark-section .richtext {
  color: #ffffff !important;
  opacity: 1 !important;
  text-align: left;
}

.dark-section ul li::marker {
  color: #ffffff !important;
}

/* Spezielle Korrektur für H1, auch ohne HTML-Zugriff */
.dark-section h1 {
  color: #ffffff !important;
  text-align: left !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
}

/* Listen-Bullets ebenfalls weiß */
.dark-section ul li::marker {
  color: #ffffff !important;
}

/* Bullet Points (•) ebenfalls weiß */
.dark-section ul li::marker {
  color: #ffffff !important;
}
/* Accordion-Hover nur in dunklem Bereich */
.dark-section .accordion-title:hover {
  background: linear-gradient(90deg, #ff4ecd, #6e56ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}

/* ========== 4. CTA-BUTTON (CREATE DESIGN) ========== */
#addToCartByAntigroDesigner {
  background: linear-gradient(90deg, #ff6a00, #ee0979);
  color: white;
  font-size: 1rem;
  padding: 14px 2rem;
  border-radius: 9999px;
  border: none;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;

  /* Diese Zeilen machen ihn flexibel UND begrenzen die Max-Breite */
  width: 100%;
  max-width: 100%;
  white-space: nowrap;
}

@media (max-width: 480px) {
  #addToCartByAntigroDesigner {
    font-size: 0.9rem;
    padding: 12px 1.5rem;
    white-space: normal;
  }
}

/* ========== 5. H2-GRADIENT MIT ANIMATION ========== */
.gradient-h2,
h2.gradient-h2 {
  font-size: 2rem;
  font-weight: 600;
  background: linear-gradient(90deg, #6e56ff, #b84ef1, #ff4ecd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-align: left;
  margin: 30px 0;
  background-size: 200%;
  animation: gradientShift 6s linear infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% }
  100% { background-position: 100% }
}


/* ========== 6. TEXT & LISTEN STANDARD ========== */
body:not(.dark-section) p,
body:not(.dark-section) ul,
body:not(.dark-section) li {
  color: #333;
  line-height: 1.6;
  font-size: 1rem;
}

ul li {
  margin-bottom: 10px;
}


/* ========== 7. LETZTE CTA-ZEILE ========== */
.final-cta {
  font-size: 1.1rem;
  font-weight: bold;
  color: #6e56ff;
  text-align: left;
  margin-top: 30px;
}


/* ========== 8. RESPONSIVE ANPASSUNGEN ========== */
@media (max-width: 768px) {
  .gradient-h2 {
    font-size: 1.6rem;
    text-align: center;
  }

  #addToCartByAntigroDesigner {
    width: 100%;
    font-size: 1.1rem;
  }

  .accordion-title {
    font-size: 1rem;
  }

  .site-nav a,
  .header__menu-item,
  .navigation__link {
    font-size: 14px;
  }
}

/* Navigation: Weiße Links auf dunklem Hintergrund */
.site-nav,
.header__menu,
.navigation__container {
  background-color: #111; /* oder dein Menü-Hintergrund */
}

.site-nav a,
.header__menu-item,
.navigation__link {
  color: #ffffff !important; /* gut sichtbar */
}

/* Hover-Effekt */
.site-nav a:hover,
.header__menu-item:hover,
.navigation__link:hover {
  color: #ff4ecd !important; /* oder deine Akzentfarbe */
}

/* ========== NAVIGATION MIT DUNKLEM DESIGN ========== */

/* === Hauptmenü: weißer Text auf schwarzem Hintergrund === */
.site-nav__link {
  color: #ffffff !important;
  background-color: #111 !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  text-transform: uppercase;
}

/* === Icon (Chevron) ebenfalls weiß === */
.site-nav__icon svg {
  stroke: #ffffff;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  transition: stroke 0.3s ease;
}

/* === Hover-Effekt für Link & Icon === */
.site-nav__link:hover {
  color: #ff4ecd !important;
}

.site-nav__link:hover .site-nav__icon svg {
  stroke: #ff4ecd;
}

/* === Dropdown-Menü: dunkler Hintergrund + weißer Text === */
.site-nav__dropdown,
.site-nav__submenu {
  background-color: #111 !important;
}

.site-nav__dropdown a,
.site-nav__submenu a {
  color: #ffffff !important;
}

.site-nav__dropdown a:hover,
.site-nav__submenu a:hover {
  color: #ff4ecd !important;
}

/* === Dropdown-Menüeinträge kompakter machen === */
.site-nav__dropdown a,
.site-nav__submenu a {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
  line-height: 1.4 !important;
}

/* ========== FAQ Accordion-Titel (h3) Styling ========== */
.cc-accordion-item__title h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #888;             /* Mittelgrau */
  line-height: 1.3;
  margin: 0;
  display: inline-block;
  transition: all 0.3s ease;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}

/* Hover-Effekt mit Farbverlauf */
.cc-accordion-item__title:hover h3,
details[open] .cc-accordion-item__title h3 {
  background: linear-gradient(90deg, #6e56ff, #b84ef1, #ff4ecd);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}

/* Apple Intelligence Gradient Effekt (reverse) */
h2.vis24 {
  background: linear-gradient(
    90deg,
    #007aff,
    #af52de,
    #ff9500,
    #ff5e3a
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientReverse 8s ease infinite;
  font-weight: bold;
  display: inline-block;
}

@keyframes gradientReverse {
  0% {
    background-position: 100% 0;
  }
  50% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 0;
  }
}

/* Gradient dauerhaft anzeigen, solange Accordion offen ist */
details[open] .accordion-title,
details[open] .cc-accordion-item__title h3 {
  background: linear-gradient(90deg, #6e56ff, #b84ef1, #ff4ecd);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Allgemeine Breadcrumb-Links */
.breadcrumbs-list__link {
  color: #555;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

/* Hover-Effekt */
.breadcrumbs-list__link:hover {
  color: #000;
  text-decoration: underline;
}

/* Aktueller Abschnitt (z. B. Produktseite) – rot, nicht fett */
.breadcrumbs-list__link[aria-current="page"] {
  color: #FF2D24; /* kräftiges Rot */
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  font-weight: normal;
}

/* Trenner zwischen Links */
.breadcrumbs-list__link:not(:first-child)::before {
  content: "›";
  margin: 0 0.5rem;
  color: #aaa;
}

/* Animierter Farbverlauf für die H2-Headline */
.featured-collection--title {
  font-size: 2rem; /* Passe die Schriftgröße nach Bedarf an */
  font-weight: bold;
  display: inline-block;
  background: linear-gradient(90deg, #007aff, #af52de, #ff9500, #ff5e3a);
  background-size: 300% 300%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 8s ease infinite;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* NUR „In den Warenkorb“-Button */
button[name="add"],
.product-form__cart-submit {
  background: linear-gradient(90deg, #ff6a00, #ee0979);
  color: white;
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: 9999px;
  border: none;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
}

/* Hover-Zustand */
button[name="add"]:hover,
.product-form__cart-submit:hover {
  background: linear-gradient(90deg, #ee0979, #ff6a00);
  transform: translateY(-2px);
}

/* Liquid Glass Button */
.glass-button {
  height: 52px;
  padding: 0 40px;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
  max-width: 100%; /* oder 100% in sehr engen Layouts */
  text-align: center;
  color: white;
  border: none;
  border-radius: 26px;
  line-height: 52px;
  cursor: pointer;
  position: relative;
  background: linear-gradient(135deg, #ff6a00, #ee0979);
  background-size: 200% 200%;
  transition: all 0.4s ease;
  text-shadow: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
  inset 0 1px 2px rgba(255,255,255,0.5),
  inset 0 -2px 2px rgba(0,0,0,0.15),
  0 4px 12px rgba(0,0,0,0.3),
  0 0 8px rgba(255,78,205,0.4);
  z-index: 1;
  overflow: hidden;
}

/* Glanzschicht */
.glass-button::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 30px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.05) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Hover-Verhalten */
.glass-button:hover {
  transform: scale(1.02);
  background-position: 100% 0;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.4),
    inset 0 -1px 1px rgba(0, 0, 0, 0.1),
    0 2px 6px rgba(0, 0, 0, 0.15),
    0 0 4px rgba(255, 78, 205, 0.2);
}

/* Sanftere Schatten für helle Hintergründe */
.background.light .glass-button {
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.35),
    0 4px 10px rgba(0, 0, 0, 0.08),
    0 0 6px rgba(255, 78, 205, 0.2);
}

.responsive-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: #000;
}

.responsive-video iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
}

/* Container für Header */
.collection-header {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 1rem;
}

/* Bild links (Desktop), oben (Mobile) */
.collection-header__image-container {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  order: 1; /* Standardreihenfolge */
}

/* Bilddarstellung */
.collection-header__image-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
}

/* Text rechts (Desktop), unten (Mobile) */
.collection-header__content-container {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: 1rem;
  box-sizing: border-box;
  order: 2;
}

/* Inhalte im Textblock begrenzen */
.collection-header__content-container > * {
  max-width: 700px;
  width: 100%;
}

/* Responsive: Bild über Text auf kleineren Geräten */
@media (max-width: 768px) {
  .collection-header {
    flex-direction: column;
  }

  .collection-header__image-container,
  .collection-header__content-container {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .collection-header__image-container {
    order: 1; /* Bild zuerst */
  }

  .collection-header__content-container {
    order: 2; /* Text danach */
    padding-top: 1.5rem;
  }
}

/* Animierter Verlauf H3 exakt wie .vis24 */
@keyframes gradientReverse {
  0% {
    background-position: 100% 0;
  }
  50% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 0;
  }
}

.cta-glow {
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
  background: linear-gradient(
    90deg,
    #007aff,
    #af52de,
    #ff9500,
    #ff5e3a
  );
  background-size: 300% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gradientReverse 8s ease infinite;
  transition: filter 0.3s ease;
}

/* Optional stärkerer Leuchteffekt beim Hover */
.cta-glow:hover {
  text-shadow: 0 0 12px rgba(255, 100, 100, 0.6),
               0 0 20px rgba(255, 0, 0, 0.6);
}

/* Collection H1 Title – Reverse Gradient, aber kein Glow */
.collection-header h1 {
  display: inline-block;
  font-weight: bold;
  background: linear-gradient(90deg, #007aff, #af52de, #ff9500, #ff5e3a);
  background-size: 300% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gradientReverse 8s ease infinite;
  transition: none; /* kein Shadow-Übergang */
}

/* Kein Hover-Effekt mehr */
.collection-header h1:hover {
  text-shadow: none;
}

/* Collection H1, H2 Text Große Reverse Gradient */
.collection-header h1 {
  font-size: 2.2rem;
}

.collection-header h2 {
  font-size: 1.8rem;
}

/* Button Beratung */
.button-beratung {
  background: linear-gradient(90deg, #ff6a00, #ee0979);
  color: white;
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: 9999px;
  border: none;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}

/* Hover-Effekt */
.button-beratung:hover {
  background: linear-gradient(90deg, #ee0979, #ff6a00);
  transform: translateY(-2px);
}

/* kleine Glass-Button */
.glass-button.glass-button--small {
  font-size: 0.9em;
  padding: 10px 24px;
  transform: scale(0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}