/* =====================================================
 * TABLE OF CONTENTS
 *
 * 1. SETTINGS          — CSS Custom Properties
 * 2. LAYOUT            — .wz-container
 * 3. TYPOGRAPHY        — .wz-section-title, .wz-text-block, .wz-subtitle
 * 4. COMPONENTS
 *    4.1 Button        — .btn
 *    4.2 Chips         — .chips, .chip
 *    4.3 Badge         — .wz-badge
 *    4.4 Card          — .wz-card
 *    4.5 Accordion     — .wz-accordion
 *    4.6 Lightbox      — #lightbox
 *    4.7 Floating Dock — #floating-service-dock
 *    4.8 Contact Bar   — .wz-contact-bar
 * 5. PAGES
 *    5.1 HOME          — Bestseller-Grid
 *    5.2 PRODUCT       — Shared auf allen Produktseiten
 *    5.3 VARIO         — Nur wz-vario (page-specific)
 * 6. TOUCH             — hover: none (Touch-Geräte)
 * ===================================================== */
 
 
/* =====================================================
 * 1. SETTINGS — CSS Custom Properties
 * ===================================================== */
 
:root {
  /* Primärfarben */
  --wz-blue:        #416D95;   /* Hauptblau: Buttons, Titel, Links */
  --wz-blue-dark:   #35597a;   /* Button-Hover */
  --wz-blue-deep:   #3f6287;   /* Karten-Titel, Specs */
  --wz-blue-darker: #30486a;   /* Accordion-Titel */
 
  /* Textfarben */
  --wz-text:        #5a6f86;   /* Fließtext */
 
  /* Rahmen */
  --wz-border:      #dfe7ef;   /* Standard-Border */
}
 
 
/* =====================================================
 * 2. LAYOUT
 * ===================================================== */
 
.wz-container {
  max-width: 1200px;
  margin: auto;
}
 
 
/* =====================================================
 * 3. TYPOGRAPHY
 * ===================================================== */
 
/* ----- Section Title ----- */
.wz-section-title {
  font-family: 'Heebo', sans-serif;
  font-size: 38px;
  line-height: 48px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--wz-blue);
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 40px 0 28px 0;
}
.wz-section-title::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--wz-border), rgba(223,231,239,0));
}
 
@media (max-width: 768px) {
  .wz-section-title {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 480px) {
  .wz-section-title {
    font-size: 26px;
    line-height: 34px;
  }
}
 
/* ----- Text Block ----- */
.wz-text-block {
  font-family: 'Heebo', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--wz-text);
}
.wz-text-block p {
  margin: 24px 0 0 0;
}
.wz-text-block strong {
  color: var(--wz-blue);
  font-weight: 700;
}
 
/* ----- Subtitle ----- */
.wz-subtitle {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  color: #7c92aa;
}

/* PageBuilder Heading mit Linien links und rechts */

.wz-heading-line{
display:flex;
align-items:center;
gap:20px;
}

.wz-heading-line::before,
.wz-heading-line::after{

content:"";
flex:1;
height:2px;

background:linear-gradient(
to right,
rgba(65,109,149,.35),
rgba(65,109,149,0)
);
}

.wz-heading-line::before{
background:linear-gradient(
to left,
rgba(65,109,149,.35),
rgba(65,109,149,0)
);
}

@media (max-width: 768px) {

.wz-heading-line::before,
.wz-heading-line::after{
display:none;
}

}
 
 
/* =====================================================
 * 4. COMPONENTS
 * ===================================================== */
 
/* ----------------------------------------
 * 4.1 BUTTON
 * ---------------------------------------- */
 
.btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: 18px !important;
  background: var(--wz-blue) !important;
  color: #ffffff !important;
  padding: 16px 42px !important;
  border-radius: 10px !important;
  font-family: 'Heebo', sans-serif !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  letter-spacing: .04em !important;
  text-decoration: none !important;
  cursor: pointer !important;
  box-shadow: 0 10px 24px rgba(0,0,0,.12) !important;
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    background .18s ease !important;
}
.btn:hover {
  background: var(--wz-blue-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 16px 34px rgba(0,0,0,.18) !important;
}
.btn:active {
  transform: translateY(0) !important;
  box-shadow: 0 6px 14px rgba(0,0,0,.14) !important;
}
 
 
/* ----------------------------------------
 * 4.2 CHIPS
 * ---------------------------------------- */
 
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.chip {
  background: #f4f7fa;
  border: 1px solid #e3e6ea;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--wz-text);
}
 
 
/* ----------------------------------------
 * 4.3 BADGE
 * ---------------------------------------- */
 
.wz-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--wz-blue);
  color: #fff;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: .5px;
}
 
 
/* ----------------------------------------
 * 4.4 CARD
 * ---------------------------------------- */
 
.wz-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 14px;
  border: 1px solid #eef2f6;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition:
    transform .2s ease,
    box-shadow .2s ease;
}
.wz-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,0,0,.08);
}
.wz-card-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
  line-height: 1;
}
.wz-card h3,
.wz-card h4 {
  font-weight: 600;
  color: var(--wz-blue-deep);
  margin-bottom: 10px;
}
.wz-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--wz-text);
  margin: 0;
}
 
 
/* ----------------------------------------
 * 4.5 ACCORDION
 * ---------------------------------------- */
 
.wz-accordion {
  margin-top: 40px;
}
.wz-accordion-item {
  border: 1px solid var(--wz-border);
  border-radius: 10px;
  background: #fff;
  margin-bottom: 20px;
  transition: .25s ease;
}
.wz-accordion-item:hover {
  border-color: #cfd8e3;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}
.wz-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.wz-accordion-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}
 
/* Number / Icon */
.wz-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f6fa;
  border: 1px solid #e2e8ef;
  color: var(--wz-blue);
  font-weight: 700;
}
.wz-number img {
  width: 22px;
  height: 22px;
  display: block;
}
 
/* Title */
.wz-filter-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--wz-blue-darker);
}
 
/* Arrow */
.wz-accordion-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
}
.wz-accordion-icon svg {
  width: 26px;
  height: 16px;
  transition: transform .25s ease;
}
.wz-accordion-icon polyline {
  stroke: var(--wz-blue-darker);
  stroke-width: 3;
  fill: none;
}
.wz-accordion-item.active .wz-accordion-icon svg {
  transform: rotate(180deg);
}
 
/* Content */
.wz-accordion-content {
  display: none;
}
.wz-accordion-item.active .wz-accordion-content {
  display: block;
}
.wz-accordion-inner {
  padding: 12px 24px 26px 24px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--wz-text);
}
.wz-accordion-inner > *:first-child {
  margin-top: 0;
}
 
/* Accordion – Responsive */
@media (max-width: 768px) {
  .wz-filter-title {
    font-size: 17px;
    line-height: 1.35;
    font-weight: 600;
  }
  .wz-number {
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: 14px;
  }
  .wz-accordion-header {
    padding: 16px 14px;
  }
  .wz-accordion-inner {
    padding: 0 14px 16px 14px;
  }
}
 
 
/* ----------------------------------------
 * 4.6 LIGHTBOX
 * ---------------------------------------- */
 
#lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(10,15,20,.75);
  backdrop-filter: blur(8px);
  z-index: 9999999;
}
.lightbox-inner {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 92vw;
  max-height: 88vh;
}
#lightbox img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 40px 100px rgba(0,0,0,.45);
}
 
/* Buttons */
.lb-close,
.lb-nav {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,.95),
    rgba(225,225,225,.9)
  );
  border: 2px solid #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  transition:
    box-shadow .18s ease,
    background .18s ease;
}
.lb-close:hover,
.lb-nav:hover {
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,1),
    rgba(210,210,210,.95)
  );
  box-shadow: 0 14px 35px rgba(0,0,0,.35);
}
.lb-close {
  top: 12px;
  right: 12px;
}
.prev {
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
}
.next {
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
}
 
/* Lightbox – Responsive */
@media (max-width: 768px) {
  #lightbox {
    align-items: flex-start;
    padding-top: 70px;
  }
  .lightbox-inner {
    max-width: 94vw;
    max-height: 80vh;
  }
  #lightbox img {
    max-width: 94vw;
    max-height: 78vh;
  }
  .lb-close,
  .lb-nav {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .prev { left: 10px; }
  .next { right: 10px; }
  .lb-close {
    top: 10px;
    right: 10px;
  }
}
 
 
/* ----------------------------------------
 * 4.7 FLOATING SERVICE DOCK
 * ---------------------------------------- */
 
#floating-service-dock {
  position: fixed;
  top: 120px;
  right: -38px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px 10px;
  opacity: 0;
  pointer-events: none;
  background: rgba(243,244,246,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 24px 0 0 24px;
  box-shadow:
    0 18px 40px rgba(0,0,0,0.14),
    0 2px 6px rgba(0,0,0,0.06);
  transition: right .35s ease, opacity .35s ease;
  overflow: visible;
}
 
/* Desktop Behavior */
@media (min-width: 769px) {
  #floating-service-dock.scroll-hide {
    right: -52px;
    opacity: .55;
  }
  #floating-service-dock:hover {
    right: 0;
  }
}
 
/* Dock Items */
.service-dock-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
 
/* Icons */
.service-dock-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  transition: transform .25s ease, filter .25s ease;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.18));
}
.service-dock-item:hover img {
  transform: scale(1.12);
  filter:
    drop-shadow(0 12px 18px rgba(0,0,0,0.22))
    brightness(1.05);
}
 
/* Tooltip Desktop */
.service-dock-item::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 78px;
  top: 50%;
  transform: translateY(-50%);
  background: #2f3a49;
  color: #fff;
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 10px;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(0,0,0,0.16);
  opacity: 0;
  pointer-events: none;
  transition: .2s ease;
}
.service-dock-item:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(-4px);
}
 
/* Handle (Desktop: hidden) */
.dock-handle {
  display: none;
}
 
/* Panel */
.dock-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
 
/* Mobile Version – Bottom Contact Bar */
@media (max-width: 768px) {
  #floating-service-dock {
    position: fixed;
    top: auto;
    bottom: 28px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    gap: 26px;
    padding: 14px 22px;
    background: rgba(243,244,246,0.96);
    border-radius: 30px;
    box-shadow:
      0 14px 30px rgba(0,0,0,.18),
      0 4px 10px rgba(0,0,0,.08);
  }
  .dock-panel {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 26px;
  }
  .service-dock-item img {
    width: 42px;
    height: 42px;
  }
  .service-dock-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
  }
  .service-dock-item::after {
    display: none;
  }
}

/* =====================================================
CONTACT – HOME
===================================================== */
.contact-wrapper{
max-width:1100px;
margin:60px auto 80px auto;
padding:0 20px;
position:relative;
z-index:5;
}

/* GRID */

.contact-grid{
display:grid !important;
grid-template-columns:repeat(3,1fr);
gap:40px;
}

/* CARD */

.contact-card{
display:block;
text-align:center;
background:#ffffff;
padding:40px 30px;
border-radius:18px;
text-decoration:none;
color:#3e5c7d;

box-shadow:0 18px 45px rgba(0,0,0,0.08);
transition:all .25s ease;
}

.contact-card:hover{
transform:translateY(-6px);
box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

/* ICON */

.contact-icon{
width:48px;
height:48px;
margin:0 auto 18px auto;
display:block;
}

/* TEXT */

.contact-title{
font-size:18px;
font-weight:600;
color:#516d8f;
margin-bottom:6px;
}

.contact-main{
font-size:22px;
font-weight:700;
margin-bottom:8px;
}

.contact-desc{
font-size:14px;
color:#7c8ca1;
}

/* MOBILE */

@media (max-width:900px){

.contact-grid{
grid-template-columns:1fr;
gap:25px;
}

}
 
/* =====================================================
 * 5. PAGES
 * ===================================================== */
 
/* =====================================================
 * 5.1 HOME
 * ===================================================== */
 
/* =====================================================
HOME – BESTSELLER
===================================================== */

.wz-home-bestseller{
padding:80px 20px;
background:#ffffff;

/* Fix: hebt das 20px Template-Container-Padding auf
   damit der Bestseller-Grid bündig zum Hero-Bereich ist */
margin-left:-20px;
margin-right:-20px;
}

/* GRID */

.wz-home-bestseller .wz-product-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:36px;

}

/* CARD */

.wz-home-bestseller .wz-product-card{

display:block;

background:#ffffff;

border-radius:12px;

overflow:visible;

text-decoration:none;

border:1px solid #e8edf3;

box-shadow:0 8px 20px rgba(0,0,0,0.05);

transition:transform .25s ease,box-shadow .25s ease;

position:relative;

}

.wz-home-bestseller .wz-product-card:hover{

transform:translateY(-6px);

box-shadow:0 24px 60px rgba(0,0,0,0.12);

}

/* BADGE */

.wz-home-bestseller .wz-badge{

position:absolute;

top:-12px;
left:20px;

background:#ffffff;

color:var(--wz-blue);

font-size:12px;
font-weight:600;

padding:6px 12px;

border:2px solid var(--wz-blue);

border-radius:6px;

z-index:30;

}

/* IMAGE AREA */

.wz-home-bestseller .wz-product-image{

background:#f4f7fb;

height:300px;

overflow:hidden;

}

/* IMAGE */

.wz-home-bestseller .wz-product-image img{

width:100%;
height:100%;

object-fit:cover;

object-position:center 25%;

transition:transform .35s ease;

}

.wz-home-bestseller .wz-product-card:hover img{

transform:scale(1.05);

}

/* CONTENT */

.wz-home-bestseller .wz-product-content{

padding:28px;

}

/* TITLE */

.wz-home-bestseller .wz-product-content h3{

font-family:'Heebo',sans-serif;

font-size:22px;
font-weight:600;

margin:0 0 8px;

color:var(--wz-blue);

}

/* SUBLINE */

.wz-home-bestseller .wz-product-sub{

font-size:15px;

color:#7a8da6;

margin-bottom:22px;

}

/* PRICE */

.wz-home-bestseller .wz-product-price{

font-size:26px;

font-weight:700;

color:var(--wz-blue);

margin-bottom:18px;

}

/* LINK */

.wz-home-bestseller .wz-product-link{

font-size:15px;
font-weight:600;

color:var(--wz-blue);

}

/* RESPONSIVE */

@media (max-width:1100px){

.wz-home-bestseller .wz-product-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media (max-width:640px){

.wz-home-bestseller .wz-product-grid{
grid-template-columns:1fr;
}

.wz-home-bestseller{
padding:60px 20px;
}

}
 
/* =====================================================
 * 5.2 PRODUCT — Shared auf allen Produktseiten
 * ===================================================== */
 
/* ----- Hero ----- */
.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1300px;
  margin: auto;
  align-items: start;
}
 
@media (max-width: 900px) {
  .product-hero {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .product-hero {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .product-gallery { order: 1; }
  .product-text    { order: 2; max-width: 100%; }
}
 
/* Hero – Große Desktops */
@media (min-width: 1440px) {
  .product-hero {
    gap: 100px;
  }
}
 
/* ----- Gallery ----- */
.product-gallery {
  min-width: 0;
}
.product-gallery img {
  width: 100%;
  border-radius: 14px;
  cursor: zoom-in;
  transition: .25s;
}
.product-gallery img:hover {
  transform: scale(1.01);
}
#mainImage {
  transition: opacity .25s ease;
}
 
/* Gallery – Responsive */
@media (max-width: 768px) {
  .product-gallery {
    width: 100%;
  }
  #mainImage {
    width: 100%;
    border-radius: 12px;
  }
  .product-gallery img:hover {
    transform: none;
  }
}
 
/* ----- Thumbnails ----- */
.thumbs {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 6px;
}
.thumbs img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  flex: 0 0 auto;
  cursor: pointer;
  border-radius: 8px;
  border: 1px solid #e3e6ea;
  transition: .25s;
}
.thumbs img:hover {
  border-color: #cfd6de;
}
.active-thumb {
  border: 2px solid var(--wz-blue);
}
 
/* Thumbnails – Responsive
   ENTFERNT: -webkit-overflow-scrolling: touch (deprecated seit iOS 15) */
@media (max-width: 768px) {
  .thumbs {
    gap: 10px;
    margin-top: 12px;
    padding-bottom: 4px;
    overflow-x: auto;
  }
  .thumbs img {
    width: 64px;
    height: 64px;
    flex: 0 0 auto;
    border-radius: 6px;
  }
  .active-thumb {
    border: 2px solid var(--wz-blue);
  }
}
 
/* ----- Product Text ----- */
.product-text {
  max-width: 520px;
}
.product-text p {
  font-family: 'Heebo', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--wz-text);
  margin: 16px 0;
}
.wz-note-section {
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid #e5e5e5;
}
.wz-note-text {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
}
 
/* ----- Product Title ----- */
.pro-title {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-family: 'Heebo', sans-serif;
  font-size: clamp(42px, 7vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--wz-blue);
  margin-bottom: 6px;
}
.pro-badge {
  display: inline-flex;
  padding: .15em .25em;
  font-size: .32em;
  font-weight: 800;
  color: var(--wz-blue);
  background: #fff;
  border: 2px solid var(--wz-blue);
  transform: translateY(-0.54em);
  margin-right: .6em;
}
 
@media (max-width: 480px) {
  .pro-title {
    font-size: clamp(32px, 9vw, 42px);
  }
}
 
/* ----- Made in Italy ----- */
.made-text {
  display: flex;
  gap: .3rem;
  font-weight: 700;
  letter-spacing: .05em;
  margin-bottom: 6px;
}
.made    { color: #009246; }
.in      { color: #777; }
.country { color: #ce2b37; }
 
/* ----- Made in Germany ----- */
.made-de    { color: #000000; }
.in-de      { color: #dd0000; }
.country-de { color: #ffce00; }
 
/* ----- Claim ----- */
.claim {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  margin-bottom: 16px;
}
.claim h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--wz-blue);
  margin: 0;
  white-space: nowrap;
}
.claim-icon {
  width: 28px;
}
 
@media (max-width: 768px) {
  .claim h3 { font-size: 20px; }
}
@media (max-width: 480px) {
  .claim h3 { font-size: 18px; }
}
 
/* ----- Product Info ----- */
.product-info {
  margin-top: 20px;
}
.info-row {
  font-size: 15px;
  color: var(--wz-text);
  margin-bottom: 6px;
}
.info-row strong {
  color: var(--wz-blue);
}
.info-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #2ca44f;
  border-radius: 50%;
  margin-right: 8px;
}
 
/* ----- Product Options ----- */
.product-options {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.option-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.option-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--wz-blue);
}
.option-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.option-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f4f7fa;
  border: 1px solid #e3e6ea;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--wz-text);
}
.color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid #d9e1ea;
}
.color-white      { background: #ffffff; }
.color-anthracite { background: #3a3f46; }
 
/* ----- Price & Payment ----- */
.price {
  font-size: 38px;
  font-weight: 800;
  color: var(--wz-blue);
  margin-top: 24px;
}
.price-note {
  font-size: 14px;
  color: #7a8da3;
  margin-top: 4px;
}
.payment {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--wz-text);
}
.payment-icon {
  width: 22px;
  height: 22px;
  stroke: var(--wz-blue);
  fill: none;
  stroke-width: 2;
}
 
@media (max-width: 768px) {
  .price { font-size: 32px; }
}
@media (max-width: 480px) {
  .price { font-size: 28px; }
}
 
/* ----- Model Switch ----- */
.wz-models {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  margin-bottom: 14px;
}
.wz-model {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid var(--wz-border);
  font-family: 'Heebo', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--wz-blue);
  cursor: pointer;
  transition: .25s ease;
  white-space: nowrap;
  min-width: 140px;
}
.wz-model:hover {
  border-color: #cfd8e3;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}
.wz-model.active {
  border: 2px solid var(--wz-blue);
  box-shadow: none;
  position: relative;
}
.wz-model.active::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--wz-blue);
}
 
/* Model Info Panel
   BUGFIX: max-height: none → 9999px
   'none' ist nicht animierbar → Transition funktionierte nicht */
.wz-model-info {
  margin-top: 10px;
  background: #f8fbfe;
  border: 1px solid var(--wz-border);
  border-radius: 12px;
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .35s ease, opacity .25s ease, padding .35s ease;
}
.wz-model-info.active {
  padding: 24px;
  max-height: 9999px;
  opacity: 1;
}
.wz-model-info h4 {
  font-family: 'Heebo', sans-serif;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 500;
  color: var(--wz-blue);
  margin: 0 0 12px 0;
}
.wz-model-info p {
  font-family: 'Heebo', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--wz-text);
  margin: 0 0 8px 0;
}
.wz-model-info strong {
  color: var(--wz-blue);
  font-weight: 700;
}
 
/* Model Switch – Responsive */
@media (max-width: 768px) {
  .wz-models {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
  }
  .wz-model {
    width: 100%;
    padding: 10px 8px;
    font-size: 14px;
    min-width: 0;
  }
  .wz-model-info h4 { font-size: 20px; }
  .wz-model-info p  { font-size: 15px; }
}

 
/* ----- Feature Section ----- */
.wz-feature-section {
  width: 100%;
  margin: 20px 0;
}
.wz-feature-grid-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 26px;
}
.wz-feature-card {
  background: #fff;
  border: 1px solid #e4e9ef;
  border-radius: 5px;
  padding: 26px 24px;
  transition: .25s ease;
  min-height: 170px;
  display: flex;
  flex-direction: column;
}
.wz-feature-card:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.wz-feature-card h4 {
  font-family: 'Heebo', sans-serif;
  font-size: 19px;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 8px;
  text-decoration: underline;
  color: #4c6a8a;
}
.wz-feature-card p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--wz-text);
}
 
@media (max-width: 1000px) {
  .wz-feature-grid-3 {
    grid-template-columns: repeat(2,1fr);
  }
}
@media (max-width: 480px) {
  .wz-feature-grid-3 {
    grid-template-columns: 1fr;
  }
}
 
/* ----- Feature Center ----- */
.wz-feature-center {
  width: 100%;
  margin: auto;
  text-align: center;
}
.wz-feature-image {
  text-align: center;
  margin: 10px 0 40px 0;
}
.wz-feature-image img {
  max-width: 480px;
  width: 100%;
  height: auto;
  margin: auto;
  display: block;
  transition: transform .35s ease;
}
.wz-feature-image img:hover {
  transform: scale(1.08);
}
.wz-feature-intro {
  max-width: 720px;
  margin: 0 auto 26px auto;
}
 
/* ----- Specs Grid ----- */
.wz-spec-group-title {
  margin-top: 36px;
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 600;
  color: var(--wz-blue-deep);
}
.wz-specs-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 18px;
  margin-bottom: 10px;
}
.wz-spec {
  padding: 18px 22px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #eef2f6;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all .2s ease;
}
.wz-spec:hover {
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(0,0,0,.05);
  transform: translateY(-1px);
}
.wz-spec-label {
  font-size: 13px;
  font-weight: 500;
  color: #6b7f96;
}
.wz-spec-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--wz-blue-deep);
  line-height: 1.4;
}
 
@media (max-width: 900px) {
  .wz-specs-grid {
    grid-template-columns: 1fr;
  }
}
 
/* ----- Tech Section ----- */
.wz-tech-layout {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 70px;
  align-items: center;
}
.wz-tech-content {
  max-width: 650px;
}
.wz-tech-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wz-tech-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  margin: auto;
}
 
/* Tech Cards */
.wz-tech-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 30px;
  margin-top: 35px;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.wz-tech-card {
  background: #fff;
  padding: 28px 30px;
  border-radius: 10px;
  border: 1px solid #e6edf4;
  transition: all .25s ease;
}
.wz-tech-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  border-color: #d7e2ec;
}
.wz-tech-card h4 {
  font-family: 'Heebo', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--wz-blue);
  text-decoration: underline;
}
.wz-tech-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--wz-text);
}
 
/* Tech Section & Cards – Responsive */
@media (max-width: 1000px) {
  .wz-tech-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .wz-tech-image   { order: 1; }
  .wz-tech-content { order: 2; }
  .wz-tech-image img { max-width: 360px; }
}
@media (max-width: 768px) {
  .wz-tech-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .wz-tech-grid {
    grid-template-columns: 1fr;
  }
}
 
 
/* =====================================================
 * 5.3 VARIO — Nur wz-vario (page-specific)
 * ===================================================== */
 
/* ----- Vario Options ----- */
.vario-options {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.vario-option-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--wz-blue);
  margin-bottom: 8px;
}
 
/* Farbwahl */
.vario-colors {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 6px;
}
.vario-color {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--wz-text);
  cursor: default;
}
.vario-color-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #d9e1ea;
}
.vario-color-dot.white      { background: #ffffff; }
.vario-color-dot.anthracite { background: #3a3f46; }
 
/* Option Chips (Vario-Kontext) */
.vario-option .chips {
  margin-top: 6px;
}
 
/* ----- Filter Accordion Layout -----
 *
 * ⚠️  BEKANNTER KONFLIKT: .wz-filter-grid ist zweimal definiert.
 *     Die erste Definition (gap: 18px) wird durch die zweite
 *     (gap: 28px) überschrieben — gap: 18px ist toter Code.
 *
 *     Empfehlung für v4:
 *     Erste Definition umbenennen in .wz-filter-grid--accordion
 *     und im HTML-Modul entsprechend anpassen.
 */
.wz-filter-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 10px;
}
.wz-filter-image img {
  width: 100%;
  max-width: 320px;
  display: block;
  margin: auto;
}
 
/* Erste Definition (gap: 18px – wird durch zweite überschrieben) */
.wz-filter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px; /* ⚠️ toter Code */
}
 
/* Kompakte Karten im Accordion-Kontext */
.wz-filter-grid .wz-feature-card {
  min-height: auto;
  padding: 20px;
}
.wz-filter-grid .wz-feature-card h4 {
  font-size: 18px;
  margin-bottom: 6px;
}
.wz-filter-grid .wz-feature-card p {
  font-size: 15px;
  line-height: 1.6;
}
 
/* ----- Filter Cards ("Was wird gefiltert") -----
 * Zweite Definition – überschreibt gap: 18px von oben */
.wz-filter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 35px;
}
 
.wz-filter-card {
  background: #ffffff;
  padding: 26px;
  border-radius: 14px;
  border: 1px solid #eef2f6;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition:
    transform .2s ease,
    box-shadow .2s ease;
}
.wz-filter-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,0,0,.08);
}
.wz-filter-card h4 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--wz-blue-deep);
}
.wz-filter-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--wz-text);
}
 
/* Vario – Responsive */
@media (max-width: 900px) {
  .wz-filter-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .wz-filter-image img {
    max-width: 240px;
  }
  .wz-filter-grid {
    grid-template-columns: 1fr;
  }
}
 
 
/* =====================================================
 * 6. TOUCH — Hover-Effekte auf Touch-Geräten deaktivieren
 *
 * Auf Touchscreens gibt es kein echtes Hover. Ohne diese
 * Regel bleiben Karten nach dem Tippen "angehoben" und
 * Zoom-Effekte stören die Bedienung.
 * ===================================================== */
 
@media (hover: none) {
  /* Produkt-Cards (Home) */
  .wz-product-card:hover {
    transform: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  }
  .wz-product-card:hover img {
    transform: none;
  }
 
  /* Universelle Card */
  .wz-card:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
  }
 
  /* Feature Card */
  .wz-feature-card:hover {
    transform: none;
    box-shadow: none;
  }
 
  /* Accordion */
  .wz-accordion-item:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--wz-border);
  }
 
  /* Model Switch */
  .wz-model:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--wz-border);
  }
 
  /* Tech Card */
  .wz-tech-card:hover {
    transform: none;
    box-shadow: none;
    border-color: #e6edf4;
  }
 
  /* Filter Card */
  .wz-filter-card:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
  }
 
  /* Spec Card */
  .wz-spec:hover {
    background: #f8fafc;
    box-shadow: none;
    transform: none;
  }
 
  /* Gallery */
  .product-gallery img:hover {
    transform: none;
  }
 
  /* Feature Image */
  .wz-feature-image img:hover {
    transform: none;
  }
 
  /* Thumbnails */
  .thumbs img:hover {
    border-color: #e3e6ea;
  }
}