/** Shopify CDN: Minification failed

Line 1225:0 Unexpected "<"
Line 1243:0 Unexpected "<"

**/
/* ================================================= */
/* VIS24 CUSTOM STYLES – BEREINIGT                   */
/* ================================================= */
/* ================================================= */
/* 1. NAVIGATION                                     */
/* ================================================= */

/* Basiseinstellungen: Schriftgröße, Farbe, Großbuchstaben */
.site-nav a,
.header__menu-item,
.navigation__link {
  font-size: 18px !important;
  font-weight: 500;
  text-transform: uppercase;
}

.site-nav,
.header__menu,
.navigation__container {
  background-color: #111;
}

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

.site-nav a:hover,
.header__menu-item:hover,
.navigation__link:hover {
  color: #ff4ecd !important;
}

/* Dropdown-Basisgestaltung */
.site-nav__link {
  color: #ffffff !important;
  background-color: #111 !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
}

/* Icon-Farbe & Hover */
.site-nav__icon svg {
  stroke: #ffffff;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  transition: stroke 0.3s ease;
}

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

/* Hintergrund der Dropdown-Container */
.site-nav__dropdown,
.site-nav__submenu {
  background-color: #111 !important;
}

/* Textstil für Links in Dropdowns */
.site-nav__dropdown a,
.site-nav__submenu a {
  color: #ffffff !important;
  padding: 6px 0;
}

/* ================================================= */
/* 2. EINRÜCKUNGEN & GRÖSSEN FÜR DESKTOP             */
/* ================================================= */

/*
  Die folgenden Regeln gelten nur auf dem Desktop.
  Sie sorgen dafür, dass Unterpunkte eingerückt werden:
    – 1. Ebene: normal
    – 2. Ebene: leichter Einzug
    – 3. Ebene: stärkerer Einzug
  Zusätzlich wird die Schriftgröße der ersten Ebene größer gesetzt.
*/
@media (min-width: 768px) {
  /* Erste Ebene im Dropdown – etwas größere Schrift */
  .site-nav > .site-nav__item > .site-nav__link {
    font-size: 17px !important;
  }

  /* Zweite Ebene: Einzug und kleinere Schrift */
  .site-nav__dropdown .site-nav__item > .site-nav__link {
    padding-left: 24px !important;
    font-size: 15px !important;
  }

  /* Dritte Ebene: stärkerer Einzug und kleinste Schrift */
  .site-nav__dropdown .site-nav__submenu .site-nav__link {
    padding-left: 40px !important;
    font-size: 14px !important;
  }
}
/* =========================================
   NAVIGATION HIERARCHIE (HALBFETT)
   ========================================= */

@media (min-width: 768px) {

  /* 🔥 Level 2 (z. B. Messewände) */
  .site-nav__dropdown .site-nav__item > .site-nav__link {
    font-weight: 600 !important; /* halbfett */
  }

  /* Level 3 wieder normal */
  .site-nav__dropdown .site-nav__submenu .site-nav__link {
    font-weight: 400 !important;
  }

}

/* =========================================
   LEVEL 3 TYPO (KEINE VERSALIEN + AUSGLEICH)
   ========================================= */

@media (min-width: 768px) {

  .site-nav__dropdown .site-nav__submenu .site-nav__link {
    text-transform: none !important;     /* keine Versalien */
    font-weight: 400 !important;

    font-size: 16px !important;          /* 🔥 größer für bessere Lesbarkeit */
    line-height: 1.5;
    letter-spacing: 0.2px;               /* 🔥 leicht öffnen */

    opacity: 0.9;                        /* optional: etwas softer */
  }

}


 
/* ================================================= */
/* 2. ACCORDION TITEL                               */
/* ================================================= */

.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;
}

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


/* Accordion FAQ */

.cc-accordion-item__title h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #888;
  margin: 0;
  display: inline-block;
  transition: all .3s ease;
}

.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;
}


/* ================================================= */
/* 3. DARK SECTION                                  */
/* ================================================= */

.dark-section{
  background-color: rgba(0,0,0,.3);
}

.dark-section p,
.dark-section li,
.dark-section span,
.dark-section a,
.dark-section strong,
.dark-section em,
.dark-section h1,
.dark-section h3,
.dark-section h4{
  color:#ffffff !important;
}

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

/* H2 nur weiß wenn kein Gradient */

.dark-section h2:not(.gradient-h2):not(.vis24){
  color:#ffffff !important;
}


/* ================================================= */
/* 4. GRADIENT HEADLINES                             */
/* ================================================= */

.gradient-h2,
h2.gradient-h2{

  font-size:2rem;
  font-weight:600;

  background:linear-gradient(90deg,#6e56ff,#b84ef1,#ff4ecd);
  background-size:200% 100%;

  background-clip:text;
  -webkit-background-clip:text;

  color:transparent;
  -webkit-text-fill-color:transparent;

  display:inline-block;

  animation:gradientShift 6s linear infinite;
}

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


/* Apple Style Gradient */

h2.vis24{
  background:linear-gradient(90deg,#007aff,#af52de,#ff9500,#ff5e3a);
  background-size:300% auto;

  background-clip:text;
  -webkit-background-clip:text;

  color:transparent;
  -webkit-text-fill-color:transparent;

  display:inline-block;

  animation:gradientReverse 8s ease infinite;
}

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


/* ================================================= */
/* 5. STANDARD TEXT                                  */
/* ================================================= */

body p,
body li{
  color:#333;
  line-height:1.6;
  font-size:1rem;
}

ul li{
  margin-bottom:10px;
}


/* ================================================= */
/* 6. CTA BUTTONS                                    */
/* ================================================= */

button[name="add"],
.product-form__cart-submit,
.button-beratung{

  background:linear-gradient(90deg,#ff6a00,#ee0979);
  color:white;

  font-size:1rem;
  padding:14px 36px;

  border-radius:9999px;
  border:none;

  font-weight:bold;
  text-transform:uppercase;

  box-shadow:0 4px 12px rgba(0,0,0,.2);

  transition:.3s ease;

  cursor:pointer;
  display:inline-block;
}

button[name="add"]:hover,
.product-form__cart-submit:hover,
.button-beratung:hover{

  background:linear-gradient(90deg,#ee0979,#ff6a00);
  transform:translateY(-2px);
}


/* ================================================= */
/* 7. LIQUID GLASS BUTTON                            */
/* ================================================= */

.glass-button{

  height:52px;
  padding:0 40px;

  font-size:1rem;
  font-weight:600;

  width:100%;
  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%;

  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);

  transition:.4s ease;

  box-shadow:
  inset 0 1px 2px rgba(255,255,255,.5),
  inset 0 -2px 2px rgba(0,0,0,.15),
  0 4px 12px rgba(0,0,0,.3);

  overflow:hidden;
}

/* Glass Highlight */

.glass-button::before{
  content:"";
  position:absolute;
  inset:0;

  border-radius:26px;

  background:linear-gradient(
  to bottom,
  rgba(255,255,255,.35),
  rgba(255,255,255,.05)
  );

  pointer-events:none;
}

.glass-button:hover{

  transform:scale(1.02);

  box-shadow:
  inset 0 1px 1px rgba(255,255,255,.4),
  inset 0 -1px 1px rgba(0,0,0,.1),
  0 2px 6px rgba(0,0,0,.15);
}


/* small glass button */

.glass-button--small{
  font-size:.9em;
  padding:10px 24px;
  transform:scale(.95);
}


/* ================================================= */
/* 8. BREADCRUMBS                                    */
/* ================================================= */

.breadcrumbs-list__link{
  color:#555;
  font-size:14px;
  text-decoration:none;
}

.breadcrumbs-list__link:hover{
  color:#000;
  text-decoration:underline;
}

.breadcrumbs-list__link[aria-current="page"]{
  color:#FF2D24;
  pointer-events:none;
}

.breadcrumbs-list__link:not(:first-child)::before{
  content:"›";
  margin:0 .5rem;
  color:#aaa;
}


/* ================================================= */
/* 9. COLLECTION HEADER                              */
/* ================================================= */

.collection-header{
  display:flex;
  flex-wrap:wrap;
  gap:2rem;
  padding:2rem 1rem;
}

.collection-header__image-container{
  flex:1 1 50%;
}

.collection-header__content-container{
  flex:1 1 50%;
  display:flex;
  flex-direction:column;
  justify-content:center;
}


/* ================================================= */
/* 10. VIDEO                                         */
/* ================================================= */

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

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


/* ================================================= */
/* RESPONSIVE                                        */
/* ================================================= */

@media (max-width:768px){

  .gradient-h2{
    font-size:1.6rem;
    text-align:center;
  }

  .collection-header{
    flex-direction:column;
  }

}
/* ================================================= */
/* COLLECTION HERO: Bild links, Text rechts          */
/* ================================================= */

.collection-header,
.collection-hero,
.collection-banner,
.collection-header__inner,
.collection-hero__inner {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 2rem !important;
}

/* Bild links */
.collection-header__image-container,
.collection-hero__image,
.collection-banner__media,
.collection-header__media {
  flex: 0 0 48% !important;
  max-width: 48% !important;
  order: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Text rechts */
.collection-header__content-container,
.collection-hero__content,
.collection-banner__content,
.collection-header__text {
  flex: 0 0 48% !important;
  max-width: 48% !important;
  order: 2 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  text-align: left !important;
}

/* Bilder sauber darstellen */
.collection-header__image-container img,
.collection-hero__image img,
.collection-banner__media img,
.collection-header__media img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}

/* Mobile: wieder untereinander */
@media (max-width: 768px) {
  .collection-header,
  .collection-hero,
  .collection-banner,
  .collection-header__inner,
  .collection-hero__inner {
    flex-direction: column !important;
    flex-wrap: wrap !important;
  }

  .collection-header__image-container,
  .collection-hero__image,
  .collection-banner__media,
  .collection-header__media,
  .collection-header__content-container,
  .collection-hero__content,
  .collection-banner__content,
  .collection-header__text {
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
}


/* Hover sanfter */
.template-product .variant-input-wrap label:hover,
.template-product .swatch-element label:hover,
.template-product .block-swatch:hover,
.template-product .option-selector__btn:hover {
  transform: translateY(-1px) !important;
}

/* Add to cart edler */
.template-product button[name="add"],
.template-product .product-form__cart-submit {
  min-height: 56px !important;
  font-size: 1rem !important;
  border-radius: 9999px !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12) !important;
}


/* Downloads Block etwas tiefer */
.template-product .downloads,
.template-product .product-block--downloads {
  margin-top: 24px !important;
}

/* Mobile wieder sauber untereinander */
@media (max-width: 990px) {
  .template-product .product-layout,
  .template-product .product-single,
  .template-product .product-detail,
  .template-product .product-page__layout,
  .template-product .product-section .page-width {
    display: block !important;
  }

  .template-product .product-form,
  .template-product .product-info,
  .template-product .product-detail__content,
  .template-product .product-meta {
    max-width: 100% !important;
    margin-top: 24px !important;
  }

  .template-product h1,
  .template-product .product-title {
    font-size: 1.7rem !important;
  }

  .template-product .price,
  .template-product .product-price {
    font-size: 1.6rem !important;
  }
}

/* Gradient für Hero H2 */

.collection-header h2,
.collection-hero h2,
.collection-banner h2 {

  background: linear-gradient(
    90deg,
    #007aff,
    #af52de,
    #ff9500,
    #ff5e3a
  );

  background-size: 300% auto;

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
  color: transparent;

  animation: gradientReverse 8s ease infinite;

  font-weight: 700;
}

/* Animation */

@keyframes gradientReverse {

  0% {
    background-position: 100% 0;
  }

  50% {
    background-position: 0 0;
  }

  100% {
    background-position: 100% 0;
  }

}

/* =========================================
   VIS24 – Collection Hero sauber ausrichten
========================================= */

/* Äußerer Hero-Block */
.collection-header,
.collection-hero,
.collection-banner {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  min-height: unset !important;
}

/* Innerer Container: 2 Spalten */
.collection-header__inner,
.collection-hero__inner,
.collection-banner__inner {
  display: flex !important;
  align-items: stretch !important;
  gap: 40px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Linke Bildspalte */
.collection-header__image-container,
.collection-hero__image,
.collection-banner__media,
.collection-header__media {
  flex: 0 0 52% !important;
  max-width: 52% !important;
  display: flex !important;
  align-items: stretch !important;
}

/* Bild füllt sauber die Höhe */
.collection-header__image-container img,
.collection-hero__image img,
.collection-banner__media img,
.collection-header__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* Rechte Textspalte */
.collection-header__content-container,
.collection-hero__content,
.collection-banner__content,
.collection-header__text,
.collection-hero__text {
  flex: 0 0 48% !important;
  max-width: 48% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: 28px 36px !important;
  box-sizing: border-box !important;
}

/* Schwarzer Hintergrund nicht höher als Bild */
.collection-header__content-container,
.collection-hero__content,
.collection-banner__content,
.collection-header__text,
.collection-hero__text {
  align-self: stretch !important;
}

/* Titel etwas kompakter */
.collection-header h1,
.collection-hero h1,
.collection-banner h1 {
  font-size: 2rem !important;
  line-height: 1.08 !important;
  margin-bottom: 12px !important;
}

/* H2 Gradient wieder aktiv */
.collection-header h2,
.collection-hero h2,
.collection-banner h2 {
  background: linear-gradient(90deg, #007aff, #af52de, #ff9500, #ff5e3a) !important;
  background-size: 300% auto !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  animation: gradientReverse 8s ease infinite !important;
  font-weight: 700 !important;
  margin-bottom: 14px !important;
}

/* Text etwas ruhiger */
.collection-header p,
.collection-hero p,
.collection-banner p,
.collection-header li,
.collection-hero li,
.collection-banner li {
  line-height: 1.65 !important;
}

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

/* Mobile sauber untereinander */
@media (max-width: 990px) {
  .collection-header__inner,
  .collection-hero__inner,
  .collection-banner__inner {
    flex-direction: column !important;
    gap: 20px !important;
  }

  .collection-header__image-container,
  .collection-hero__image,
  .collection-banner__media,
  .collection-header__media,
  .collection-header__content-container,
  .collection-hero__content,
  .collection-banner__content,
  .collection-header__text,
  .collection-hero__text {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .collection-header__image-container img,
  .collection-hero__image img,
  .collection-banner__media img,
  .collection-header__media img {
    height: auto !important;
    object-fit: contain !important;
  }

  .collection-header__content-container,
  .collection-hero__content,
  .collection-banner__content,
  .collection-header__text,
  .collection-hero__text {
    padding: 20px 20px 24px !important;
  }
}
/* =====================================
VIS24 – Collection Hero perfekt ausrichten
===================================== */

/* Hero Container mittig */

.collection-header.page-width{
max-width:1400px !important;
margin-left:auto !important;
margin-right:auto !important;
padding-left:18px !important;
padding-right:18px !important;
box-sizing:border-box !important;
overflow:hidden !important;
}

/* Hero Layout */

.collection-header__inner{
display:flex !important;
align-items:stretch !important;
gap:0 !important;
}

/* Bild links bündig */

.collection-header__image-container{
flex:0 0 calc(50% + 18px) !important;
max-width:calc(50% + 18px) !important;
margin-left:-18px !important;
padding:0 !important;
display:flex !important;
}

/* Bild */

.collection-header__image-container img{
display:block !important;
width:100% !important;
height:100% !important;
object-fit:cover !important;
}

/* Text rechts */

.collection-header__content-container{
flex:0 0 50% !important;
max-width:50% !important;
display:flex !important;
flex-direction:column !important;
justify-content:center !important;
padding:32px 40px !important;
box-sizing:border-box !important;
}

/* VIS24 Hero – Abstand H1 zu H2 reduzieren */

.collection-header h1{
margin-bottom:8px !important;   /* vorher meist ~24px */
}

.collection-header h2{
margin-top:0 !important;
margin-bottom:14px !important;
}

/* VIS24 – Links im Hero */

.collection-header a{
color:#e53935 !important;   /* Rot */
text-decoration:none;
font-weight:500;
transition:all .25s ease;
}

/* Hover Effekt */

.collection-header a:hover{
color:#ff6b6b !important;   /* helleres Rot */
text-decoration:underline;
}

/* =====================================
VIS24 – Produktseite Breite an Hero anpassen
===================================== */

/* Hauptcontainer breiter */

.template-product .page-width{
max-width:1400px !important;
margin-left:auto !important;
margin-right:auto !important;
}

/* Produktlayout mehr Platz */

.template-product .product-area,
.template-product .product-detail,
.template-product .product-layout{
grid-template-columns: 1.2fr 0.8fr !important;
gap:60px !important;
}

/* Bildlimit entfernen */

.template-product .rimage-outer-wrapper{
max-width:100% !important;
}

/* Hauptbild größer */

.template-product .product-media img,
.template-product .rimage__image{
width:100% !important;
height:auto !important;
}

/* Galerie größer */

.template-product .product-media{
max-width:100% !important;
}

/* Gradient H2 Produktseite */

.template-product h2{

background: linear-gradient(90deg,#007aff,#af52de,#ff9500,#ff5e3a);
background-size:300% auto;

-webkit-background-clip:text;
background-clip:text;

-webkit-text-fill-color:transparent;
color:transparent;

animation: gradientReverse 8s ease infinite;

font-weight:700;
}

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

/* =====================================
VIS24 – Hero Mobile Fix
===================================== */

@media (max-width:768px){

/* Hero untereinander */

.collection-header__inner{
flex-direction:column !important;
}

/* Bild volle Breite */

.collection-header__image-container{
flex:0 0 100% !important;
max-width:100% !important;
margin-left:0 !important;
}

/* Textbereich */

.collection-header__content-container{
flex:0 0 100% !important;
max-width:100% !important;
padding:24px 20px !important;
}

/* Headlines kleiner */

.collection-header h1{
font-size:1.6rem !important;
line-height:1.15 !important;
}

.collection-header h2{
font-size:1.3rem !important;
line-height:1.2 !important;
}

/* Text angenehmer */

.collection-header p,
.collection-header li{
font-size:0.95rem;
line-height:1.5;
}

}

/* =====================================
   VIS24 – Hero Bild auf iPhone erzwingen
===================================== */
@media (max-width: 768px) {

  .collection-header,
  .collection-header__inner {
    display: block !important;
  }

  .collection-header__image-container,
  .collection-hero__image,
  .collection-banner__media,
  .collection-header__media {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 220px !important;
    margin: 0 0 16px 0 !important;
    padding: 0 !important;
    order: 0 !important;
    overflow: hidden !important;
  }

  .collection-header__image-container img,
  .collection-hero__image img,
  .collection-banner__media img,
  .collection-header__media img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 220px !important;
    object-fit: cover !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .collection-header__content-container,
  .collection-hero__content,
  .collection-banner__content,
  .collection-header__text,
  .collection-hero__text {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 20px !important;
    margin: 0 !important;
  }
}
/* ===============================
VIS24 Gradient Headline Animation
Featured Collection + Products
=============================== */

.featured-collection h2,
.featured-product h2,
.section-header h2,
.section-title,
h2.section-heading {

background: linear-gradient(
90deg,
#ff4d4d,
#ff7a18,
#ffb347,
#4facfe,
#7b5cff
);

background-size: 300% 300%;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: visGradientMove 6s ease infinite;
}

/* Animation */

@keyframes visGradientMove {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
/* HERO breiter machen */
.banner,
.hero,
.shopify-section .banner {
  max-width: 1460px;
  margin: 0 auto;
  width: 100%;
}

/* Inhalt soll volle Breite nutzen */
.banner__media,
.banner__content {
  width: 100%;
}

/* Optional: Abstand nach unten */
.banner {
  margin-bottom: 30px;
}
.page-width {
  max-width: 1400px;
}

/* Google Bewertung – Basis */
.vis24-google-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.4;
}

/* Mobile Optimierung */
@media (max-width: 768px) {
  .vis24-google-rating {
    justify-content: center;
    text-align: center;
    width: 100%;
    margin-top: 8px;
  }
}

/* Logo */
.vis24-google-logo {
  height: 16px;
  width: auto;
}

/* Sterne */
.vis24-stars {
  color: #fbbc04;
  letter-spacing: 1px;
}

/* Bewertung */
.vis24-rating-value {
  font-weight: 500;
  color: #333;
}

/* Anzahl */
.vis24-rating-count {
  color: #777;
}
/* Link neutralisieren */
.vis24-google-rating {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.4;
  transition: all 0.25s ease;
}

/* KEINE Linie */
.vis24-google-rating:hover {
  text-decoration: none;
}

/* Subtile Animation */
.vis24-google-rating:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

/* Sicherstellen: keine Farben vom Theme */
.vis24-google-rating:link,
.vis24-google-rating:visited,
.vis24-google-rating:active {
  color: inherit;
  text-decoration: none;
}
/* Sticky Fix – Produktseite optimieren */

/* gesamte rechte Spalte NICHT sticky */
.product-detail__detail.sticky-element {
  position: static !important;
  top: auto !important;
}

/* nur Kaufbereich sticky machen */
.product-form,
.product-detail__form,
.product-form__controls-group {
  position: sticky;
  top: 120px;
  z-index: 2;
}
h1 {
    margin-bottom: 7px;
}

<style>
.vis24-cta-secondary {
  display:inline-block;
  background:#fff;
  color:#000;
  padding:14px 28px;
  border-radius:30px;
  text-decoration:none;
  font-weight:bold;
  font-family:'Archivo Narrow', sans-serif;
  border:2px solid #000;
  transition:all 0.3s ease;
}

.vis24-cta-secondary:hover {
  background:#000;
  color:#fff;
}
</style>

.vis24-pro-cta-wrap {
  text-align: center;
  margin: 32px 0;
  padding: 28px 20px;
  border: 1px solid #e9e9e9;
  border-radius: 18px;
  background: #fafafa;
}

.vis24-pro-cta-title {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  color: #111;
}

.vis24-pro-cta-text {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.vis24-pro-cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #ff6a00 0%, #ff006e 100%);
  color: #fff;
  padding: 18px 36px;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 24px rgba(0,0,0,0.16);
  transition: all 0.25s ease;
}

.vis24-pro-cta-btn:hover,
.vis24-pro-cta-btn:focus,
.vis24-pro-cta-btn:active {
  transform: scale(1.04);
  text-decoration: none;
  color: #fff;
}

.vis24-pro-cta-phone {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: #444;
}

.vis24-pro-cta-phone a {
  color: #111;
  font-weight: 700;
  text-decoration: none;
}

.vis24-pro-cta-phone a:hover,
.vis24-pro-cta-phone a:focus,
.vis24-pro-cta-phone a:active {
  text-decoration: none;
}

.vis24-pro-cta-wrap {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}

/* ===============================
VIS24 Rich Text Padding
=============================== */
.rich-text {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

/* ===== HEADLINE ===== */
.dark-section h2 {
  font-size: 34px;   /* 🔥 größer */
  line-height: 1.25;
  margin-bottom: 14px;
  font-weight: 600;
}

/* ===== SUBHEADLINE ===== */
.dark-section .subheadline {
  font-size: 18px;   /* 🔥 größer */
  margin-bottom: 14px;
  color: #ccc;
}

/* ===== TEXT ===== */
.dark-section p {
  font-size: 17px;   /* 🔥 wichtiger Schritt */
  line-height: 1.6;
  margin-bottom: 14px;
  color: #ddd;
}

/* ===== LIST ===== */
.dark-section li {
  font-size: 16px;
  margin-bottom: 8px;
}
/* =========================================
   PREMIUM CARD / COLUMN HOVER
   ========================================= */

.text-column,
.text-column__inner,
.grid__item,
.boost-pfs-filter-product-item {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

@media (hover: hover) {
  .text-column:hover,
  .text-column__inner:hover,
  .grid__item:hover,
  .boost-pfs-filter-product-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  }
}


/* =========================================
   IMAGE ZOOM (SUBTIL)
   ========================================= */

.text-column img,
.grid__item img {
  transition: transform 0.45s ease;
}

@media (hover: hover) {
  .text-column:hover img,
  .grid__item:hover img {
    transform: scale(1.03);
  }
}


/* =========================================
   PREMIUM ROUNDED BUTTON (DEIN SETUP)
   ========================================= */

a.text-column__link.btn.btn--small.btn--primary {
  border-radius: 999px !important;
  padding: 10px 20px;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

@media (hover: hover) {
  a.text-column__link.btn.btn--small.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
    opacity: 0.95;
  }
}

/* =========================================
   HERO FULL WIDTH (EXAKT RICHTIG)
   ========================================= */

/* 🔥 Section die H1 enthält */
.template-page .shopify-section:has(.giant-title) {
  background: #eef1f5;
  padding: 40px 20px 30px;
}

/* Inhalt zentrieren */
.template-page .reading-width {
  max-width: 1200px;
  margin: 0 auto;
}

/* H1 */
.template-page .giant-title {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
}

/* Text */
.template-page .rte p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 1000px;
  margin: 0 auto;
  color: #555;
}

/* =========================================
   TABLET
   ========================================= */

@media (max-width: 1024px) {

  .template-page .shopify-section:has(.giant-title) {
    padding: 50px 20px 25px;
  }

  .template-page .giant-title {
    font-size: 40px;
  }
}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 768px) {

  .template-page .shopify-section:has(.giant-title) {
    padding: 40px 15px 20px;
  }

  .template-page .giant-title {
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: 0;
  }

  .template-page .rte p {
    font-size: 15px;
    max-width: 100%;
  }
}

/* Footer */

#shopify-section-footer footer .footer-block__heading{color:#fff!important}
#shopify-section-footer footer .nav a{color:#999!important;font-size:.85em;opacity:.8}
#shopify-section-footer footer .nav a:hover{color:#ccc!important}

/* NUR Rechtliches-Überschrift grau */
#shopify-section-footer footer .footer-block:has(.nav) .footer-block__heading{
color:#999!important;font-size:.85em;opacity:.8
}
/* Hero Insert */
.vis24-hero-insert {
  max-width: 1000px;
  margin: -60px auto 40px;
  padding: 20px;
  text-align: center;
  background: #fff;
  border-radius: 10px;
}

/* easify custom css */
.po-priceSummary-root {
border-radius: 12px !important;
}
.po-select-button{ 
border: unset !important;
}
.po-priceSummary-summaryText span {
  font-size: 17px !important; 
  font-weight: 400 !important;
}
.po-renderPopup-customizeButton {
  --button-border-color: unset !important;
  border-radius: 9999px !important;
  font-size: 17px !important;
  font-weight: 600 !important;
}
.po-dialog-closeButton {
 --button-border-color: unset !important;
}