:root {
  --brand-orange: #ff6600;
  --brand-blue: #009ee3;
  --text-dark: #1d2b38;
  --text-light: #5a6a78;
  --bg-card: #ffffff;
  --bg-page: #f7faff;
  --line-color: #e9eef5;
  --radius-btn: 999px;
  --anim-easing: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== STRUCTUUR DESKTOP ===== */
#ww-hero-slider {
  margin: 0 auto;
  position: relative;
  background: var(--bg-page);
  overflow: hidden;
  transition: height 0.6s ease;
  /* FIX: Vaste hoogte reserveren voor desktop tegen verspringen */
  min-height: 450px; 
}

.ww-slide {
  display: flex;
  flex-direction: row; /* Altijd naast elkaar op desktop */
  align-items: center;
  gap: 60px; /* Iets meer ruimte op desktop */
  padding: 56px;
  background: var(--bg-card);
  box-shadow: 0 10px 40px -10px rgba(29, 43, 56, 0.08);
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transform: translateY(20px);
  transition:
    opacity 0.9s ease-in-out,
    transform 0.9s ease-in-out,
    box-shadow 0.5s ease-in-out;
}

#ww-hero-slider .ww-slide.active {
  opacity: 1;
  transform: translateY(0);
  z-index: 2;
  pointer-events: auto;
}

.ww-slide .ww-left { flex: 1.5; }
.ww-slide .hero-art { flex: 1; display: flex; justify-content: center; align-items: center; }

/* FIX: Plaatjes krijgen vaste verhouding */
.ww-slide .hero-art img {
    width: 100%;
    height: auto;
    max-width: 400px; 
    display: block;
}

/* ===== ANIMATIES ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ww-slide.active .anim-child {
  animation: fadeInUp 0.9s var(--anim-easing) forwards;
}
/* Delays voor trapsgewijs effect */
.ww-slide.active .anim-child-1 { animation-delay: 0.1s; }
.ww-slide.active .anim-child-2 { animation-delay: 0.25s; }
.ww-slide.active .anim-child-3 { animation-delay: 0.4s; }
.ww-slide.active .anim-child-4 { animation-delay: 0.55s; }
.ww-slide.active .anim-child-5 { animation-delay: 0.7s; }
.ww-slide.active .hero-art {
  animation: fadeInUp 1.1s var(--anim-easing) 0.4s forwards;
  opacity: 0;
}

/* ===== TYPOGRAFIE ===== */
.hero-kicker { 
    font-size: 1rem; font-weight: 700; color: var(--brand-blue); 
    margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; 
}
.ww-slide h1 {
  font-size: 3.2rem; /* Vaste desktop grootte */
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -1px;
  line-height: 1.1;
  margin: 0;
}
.ww-slide h1 .highlight { color: var(--brand-orange); }
.ww-slide .hero-sub {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 24px 0 36px;
  max-width: 600px;
}

/* ===== KNOPPEN ===== */
.ww-btns { display: flex; gap: 16px; }
.btnwas {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .75rem; font-weight: 700; border-radius: var(--radius-btn);
  padding: 0 36px; height: 56px; text-decoration: none; font-size: 1.05rem;
  border: none; transition: all 0.25s ease;
}
.btn-primary {
  background: #0ea0e7!important; color: #fff;
  box-shadow: 0 4px 15px rgba(255,102,0,0.2);
}
.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  background:#fd6727!important;
}
.btn-secondary {
  background: var(--bg-card); color: var(--brand-blue);
  border: 2px solid var(--line-color);
}
.btn-secondary:hover {
  transform: translateY(-3px); border-color: var(--brand-blue);
}

/* ===== USP's ===== */
.ww-usps {
  margin: 40px 0 0; display: flex; gap: 16px; list-style: none; padding: 0;
}
.ww-usps li {
  display: flex; align-items: center; gap: 10px; font-size: 1rem;
  color: var(--text-dark); background: var(--bg-page);
  border-radius: var(--radius-btn); padding: 10px 20px; font-weight: 600;
  border: 1px solid #cfedfb;
}
.ww-usps li svg { width: 22px; height: 22px; color: var(--brand-blue); }

/* ===== DOTS ===== */
.ww-slider-nav {
  position: absolute; top: 50%; right: 32px; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 16px; z-index: 10;
}
.ww-slider-nav .nav-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--line-color); cursor: pointer; transition: all .3s ease;
}
.ww-slider-nav .nav-dot:hover { transform: scale(1.25); background: var(--brand-blue); }
.ww-slider-nav .nav-dot.active { background: var(--brand-orange); transform: scale(1.4); }

/* Theme override */
.is-reviewstarter .btn-primary { background: var(--brand-blue); }

/* Fixes */
#ww-hero-slider { height: auto !important; }
#ww-hero-slider .ww-slide:not(.active) { position: absolute; }
#ww-hero-slider .ww-slide.active { position: relative; }

 

#ww-hero-slider .ww-slide {
    display: flex !important;
    flex-direction: column !important;
}

@media(min-width: 992px) {
    #ww-hero-slider .ww-slide {
        flex-direction: row !important;
    }
}



@media screen and (max-width: 767px){
.v6-slider {
  position: relative;
  width: 100%;
  background: #f7faff;
  border-radius: 0 0 16px 16px;
  margin-bottom: 15px;
  padding: 20px 0 30px;
}

/* Viewport */
.v6-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Track: NU 2 SLIDES → 200% */
.v6-track {
  display: flex;
  width: 200%;
  transition: transform 0.4s ease-in-out;
}

/* Slide: NU 50% ipv 25% */
.v6-slide {
  width: 50%;
  padding: 15px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Radio buttons */
.v6-slider > input { display: none; }

/* Transform voor 2 slides */
#v6-slide-1:checked ~ .v6-viewport .v6-track { transform: translateX(0%); }
#v6-slide-2:checked ~ .v6-viewport .v6-track { transform: translateX(-50%); }

/* Dots */
.v6-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.v6-dot {
  width: 10px;
  height: 10px;
  background: #ddd;
  border-radius: 50%;
  transition: .3s;
}
#v6-slide-1:checked ~ .v6-dots .dot-1 { background:#ff6600; transform:scale(1.2); }
#v6-slide-2:checked ~ .v6-dots .dot-2 { background:#ff6600; transform:scale(1.2); }

/* Typography + buttons */
.v6-kicker { font-size:11px; font-weight:700; color:#009ee3; margin-bottom:5px; }
.v6-title { font-size:30px; font-weight:800; text-align:center; margin-bottom:10px; }
.v6-title span { color:#ff6600; }
.v6-desc { font-size:13px; text-align:center; color:#5a6a78; margin-bottom:15px; }

.v6-row { display:flex; align-items:center; gap:15px; }
.v6-img { width:110px; }
.v6-img img { width:100%; border-radius:12px; object-fit:contain; }

.v6-btns { display:flex; flex-direction:column; gap:8px; flex:1; }
.v6-btn { height:40px; border-radius:50px; font-size:13px; font-weight:700; display:flex; align-items:center; justify-content:center; }
.v6-btn-primary { background:#0ea0e7; color:#fff!important;padding:8px; }
.v6-btn-sec { background:#fff; color:#ff6600; border:1px solid #eee; }

.v6-usps { margin-top:10px; display:flex; gap:8px; list-style:none; padding:0; }
.v6-usps li { background:#f0f7ff; color:#009ee3; padding:4px 8px; border-radius:6px; font-size:11px; }

}
