/* === BASE === */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { font-size:100%; scroll-behavior:smooth; }
body { font-family:'Inter',sans-serif; color:#1a1a1a; line-height:1.6; background:#f9fafb; }
img { max-width:100%; height:auto; display:block; }
a { color:#0066cc; text-decoration:none; transition:all .2s; }
a:hover { color:#ff6600; }
h1,h2,h3,h4 { font-family:'Poppins',sans-serif; font-weight:700; }
.container { max-width:1400px; margin:0 auto; padding:0 1rem; }

/* === TOPBAR STYLING === */
.topbar {
    background-color: #1d4ed8; /* bg-blue-700 */
    color: white; /* text-white */
    font-size: 0.875rem; /* text-sm */
    padding-top: 0.5rem; /* py-2 top */
    padding-bottom: 0.5rem; /* py-2 bottom */
}

.topbar .container {
    max-width: 1600px; /* container width */
    margin-left: auto; /* mx-auto */
    margin-right: auto; /* mx-auto */
    padding-left: 1rem; /* px-4 */
    padding-right: 1rem; /* px-4 */
    display: flex; /* flex */
    justify-content: space-between; /* justify-between */
    align-items: center; /* items-center */
}

.topbar-links {
    display: flex; /* flex */
    gap: 1rem; /* gap-4 */
}

.topbar-links a {
    color: white; /* text-white */
    text-decoration: none;
}

.topbar-links a:hover {
    text-decoration: underline; /* hover:underline */
}

/* Responsive (optioneel, voor mobiel) */
@media (max-width: 768px) {
    .topbar .container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* === HEADER === */
/* === HEADER STRAK 2025 === */
.header {
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
}

.header:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1rem;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem; /* Meer spacing tussen elementen */
}

/* === HEADER === */
/* ... (je andere header-css ... */

/* STYLING VOOR HET NIEUWE TEKST-LOGO MET TAGLINE */
.header-logo-text {
    /* We hebben geen specifieke styling nodig op de container-div */
    line-height: 1.2; /* Zorgt dat de regels mooi dicht op elkaar staan */
}

/* De hoofdtitel: "Wesleys Witgoed" */
.header-logo-text .logo-main-title {
    font-family: 'Poppins', sans-serif; /* Je 'kop' lettertype */
    font-size: 1.75rem; /* Groot en duidelijk */
    font-weight: 700; /* Bold */
    color: #004a99; /* Je donkerblauwe kleur */
    text-decoration: none;
    transition: color 0.3s ease;
    display: block; /* Zorgt dat de tagline eronder springt */
}

.header-logo-text .logo-main-title:hover {
    color: #ff6200; /* Je oranje 'hover' kleur */
}

/* De tagline eronder */
.header-logo-text .logo-tagline {
    font-size: 1.08rem; /* Iets kleiner (14px) */
    color: #6b7280; /* Subtiel grijs, niet te schreeuwerig */
    font-weight: 500;
}

.search-form {
    flex: 1;
    max-width: 32rem; /* max-w-md md:max-w-lg */
    position: relative;
}

.search-wrapper {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.search-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

.search-button {
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
    background: #3b82f6;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.search-icon {
    width: 1.25rem;
    height: 1.25rem;
    stroke: white;
    stroke-width: 2;
}

.cart-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.cart-link:hover {
    color: #3b82f6;
    transform: translateY(-1px);
}

.cart-wrapper {
    position: relative;
}

.cart-icon {
    width: 1.5rem;
    height: 1.5rem;
    stroke: currentColor;
    stroke-width: 2;
    transition: stroke 0.3s ease;
}

.cart-link:hover .cart-icon {
    stroke: #3b82f6;
}

.cart-text {
    margin-left: 0.5rem;
}

.cart-count {
    background: #ff6200; /* orange-500 */
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    box-shadow: 0 2px 4px rgba(249,115,22,0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 1rem;
    }

    .search-form {
        max-width: 100%;
    }

    .cart-link .cart-text {
        display: none;
    }
}

/* === MEGA MENU (MET DROPDOWN) - SCHONE VERSIE === */
.megamenu {
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

/* 1. De hoofdbalk (de <ul>) */
.megamenu .mod-menu.nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center; /* Centreert de items */
}

/* 2. De hoofd-menu-items (de <li>) */
.megamenu .mod-menu.nav > li {
    position: relative; /* Dit is de 'haak' voor het submenu */
}

/* 3. De hoofd-menu-links (de <a>) */
.megamenu .mod-menu.nav > li > a {
    display: block;
    padding: 1rem 1.5rem; /* Maakt de knoppen 'dikker' */
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* 4. De hover-staat van de hoofdlinks */
.megamenu .mod-menu.nav > li > a:hover {
    color: #ff6200; /* Je oranje kleur */
    background-color: #f9fafb; /* Lichte achtergrond op hover */
}

/* 5. Het submenu (de <ul> binnen de <li>) */
.megamenu .mod-menu__sub {
    list-style: none;
    padding: 0.5rem;
    margin: 0;
    
    /* Verberg het submenu standaard */
    display: none;
    opacity: 0;
    visibility: hidden;

    /* Positionering */
    position: absolute;
    top: 100%; /* Direct onder het ouder-item */
    left: 0;
    z-index: 99;
    
    /* Styling van de 'dropdown' box */
    background: white;
    min-width: 220px;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

/* 6. Het submenu ZICHTBAAR maken op hover */
/* Als je over de <li> met class 'parent' hovert, toon het .mod-menu__sub daarin */
.megamenu .mod-menu.nav > li.parent:hover > .mod-menu__sub {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* 7. De links in het submenu */
.megamenu .mod-menu__sub a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #374151;
    white-space: nowrap; /* Zorgt dat "Voorladers" niet afbreekt */
    border-radius: 0.25rem;
}

/* 8. De hover-staat van de sublinks */
.megamenu .mod-menu__sub a:hover {
    background: #f9fafb;
    color: #ff6200;
}

/* === STYLING VOOR 'STRAKKE' DROPDOWN INHOUD === */

/* De <a> tag in het submenu (nu een flex-container) */
.megamenu .mod-menu__sub a {
    display: flex; /* Maakt er een flexbox van */
    align-items: center; /* Centreert verticaal */
    gap: 0.75rem; /* Ruimte tussen plaatje en tekst */
    padding: 0.75rem 1.25rem; 
    border-radius: 0.25rem;
    transition: background-color 0.2s;
    /* Zorgt dat links zonder plaatje (AEG, Beko) ook goed staan */
    color: #374151; 
    font-weight: 500;
}

/* Stijl voor het plaatje */
.megamenu .mod-menu__sub a .ww-menu-image {
    height: 40px;
    width: 40px;
    object-fit: contain;
    flex-shrink: 0; /* Zorgt dat het plaatje niet krimpt */
    border-radius: 0.25rem; /* Subtiel ronde hoeken */
}

/* De text-wrapper div */
.megamenu .mod-menu__sub a .ww-menu-text {
    line-height: 1.4;
}

/* Stijl voor de titel (bv. "Voorladers") */
.megamenu .mod-menu__sub a .image-title {
    font-weight: 600;
    color: #374151;
    display: block; /* Zorgt dat het een 'blok' is */
}

/* Stijl voor de subtitel (bv. "Meest verkochte") */
.megamenu .mod-menu__sub a .image-subtitle {
    font-size: 0.875rem; /* Iets kleiner */
    color: #6b7280; /* Iets lichter */
    display: block; /* Zorgt dat het onder de titel komt */
}

/* --- HOVER STATES --- */

/* Algemene link hover (voor 'AEG', 'Beko', etc.) */
.megamenu .mod-menu__sub a:hover {
    background: #f9fafb;
    color: #ff6200; /* Oranje op hover */
}

/* Speciale hover voor de 'rijke' links */
.megamenu .mod-menu__sub a:hover .image-title {
    color: #ff6200; /* Oranje op hover */
}

.megamenu .mod-menu__sub a:hover .image-subtitle {
    color: #6b7280; /* Subtitel blijft grijs (is chiquer) */
}
/* === HERO === */
.hero { background:linear-gradient(135deg, #0066cc, #004a99); color:white; padding:4rem 0; text-align:center; }
.hero h1 { font-size:2.8rem; margin-bottom:1rem; }
.hero p { font-size:1.2rem; margin-bottom:2rem; }

/* === BANNER CARD === */
.banner-card { background:white; padding:2rem; border-radius:1rem; box-shadow:0 10px 30px rgba(0,0,0,0.1); margin-top:-4rem; position:relative; z-index:10; max-width:1600px; margin-left:auto; margin-right:auto; }
.banner-card h2 { font-size:2.5rem; margin-bottom:1rem; }
.banner-card .text-orange { color:#ff6600; }
.banner-card .btn { display:inline-block; padding:0.75rem 1.5rem; border-radius:2rem; font-weight:600; margin-right:1rem; }
.banner-card .btn-primary { background:#0066cc; color:white; }
.banner-card .btn-outline { border:2px solid #0066cc; color:#0066cc; }

/* === CATEGORIEËN === */
.categories-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(160px,1fr)); gap:1.5rem; margin-top:2rem; }
.category-card { background:white; padding:1.5rem; border-radius:1rem; box-shadow:0 4px 12px rgba(0,0,0,0.08); text-align:center; transition:all .3s; }
.category-card:hover { transform:translateY(-6px); box-shadow:0 12px 24px rgba(0,0,0,0.15); }
.category-card .icon { font-size:2.5rem; margin-bottom:0.5rem; }


/* In je style.css */

/* 1. Voeg een transistie toe aan je bestaande h3-regel */
.category-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    transition: color 0.3s ease; /* <-- VOEG DEZE REGEL TOE */
}

/* 2. Voeg deze nieuwe 'hover state' toe */
.category-card:hover h3 {
    color: #ff6200; /* Je oranje accentkleur! */
}

/* === RESPONSIVE === */
@media (max-width:768px) {
    header .flex { flex-direction:column; gap:1rem; }
    header form { margin:0; }
    .hero h1 { font-size:2rem; }
    .banner-card { padding:1.5rem; margin-top:-2rem; }
    .categories-grid { grid-template-columns:repeat(2,1fr); }
}


/* === FOOTER === */
.footer {
    background: linear-gradient(135deg, #003087 0%, #0052cc 100%);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: auto;
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ff6200;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer ul {
    list-style: none;
}

.footer a {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer a:hover {
    color: #ff6200;
}

.footer p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

.footer-hr {
    border: none;
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 2rem 0;
}

.footer-bottom {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    margin-top: 1rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
}

/* === FOOTER UPDATE === */

/* Verander de grid naar 4 kolommen */
.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    /* Dit is de aanpassing: 4 kolommen op desktop */
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem; /* Iets meer ruimte */
}

/* Styling voor de social links (Google/FB) */
.footer-socials {
    margin-top: 1.5rem;
}
.footer-socials a {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    text-align: center;
    transition: all 0.3s ease;
    color: white;
}
.social-google {
    background-color: #4285F4; /* Google Blauw */
}
.social-google:hover {
    background-color: #fff;
    color: #4285F4;
}
.social-facebook {
    background-color: #1877F2; /* Facebook Blauw */
}
.social-facebook:hover {
    background-color: #fff;
    color: #1877F2;
}


/* Styling voor de betaalmethoden */
.footer-payment {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
    padding: 1rem;
    background: rgba(255,255,255, 0.1); /* Subtiele balk */
    border-radius: 0.5rem;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}
.footer-payment img {
    height: 30px; /* Nette, uniforme hoogte */
    filter: grayscale(1) brightness(1.5); /* Maakt ze 'wit' */
    opacity: 0.8;
    transition: all 0.3s ease;
}
.footer-payment img:hover {
    opacity: 1;
    filter: none;
}

/* Maak de 'bottom' netjes */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    margin-top: 1rem;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}
.footer-bottom p {
    margin: 0;
}
.footer-bottom a {
    color: rgba(255,255,255,0.8);
    text-decoration: underline;
}

/* === FIX VOOR FOOTER BOTTOM LINKS === */

/* Overruled de 'display: block' specifiek voor de 
   links in de '.footer-links-inline' paragraaf */
.footer-links-inline a {
    display: inline; /* <-- De ECHTE fix */
    margin-bottom: 0; /* Herstelt de margin */
    text-decoration: underline; /* Maakt ze onderstreept */
    color: rgba(255,255,255,0.8);
}

.footer-links-inline a:hover {
    color: #fff; /* Maak hover ook netjes */
}
/* === CATEGORIËN GRID === */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
	max-width:1600px;
	margin:0 auto;
}

.category-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    text-align: center;
    padding: 2rem 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border: 1px solid #003087;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #003087;
    transition: color 0.3s ease;
}

.category-card:hover .category-icon {
    color: #ff6200;
}

.category-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .category-card {
        padding: 1.5rem 0.5rem;
    }
}






/* === HERO SLIDER === */


.slider-white-box {
    max-width: 1400px;
    margin: -4rem auto 4rem;
    background: white;
    border-radius: 2rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    padding: 4rem;
    position: relative;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
}

#ww-hero-slider {
    position: relative;
}

.ww-slide {
    display: none;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.ww-slide.active {
    display: grid;
}

.slide-left {
    max-width: 550px;
}

.slide-right img {
    width: 100%;
    max-width: 520px;
    border-radius: 1.5rem;
    display: block;
    margin-left: auto;
}

.hero-kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: #003087;
    margin-bottom: 1rem;
}

.ww-slide h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.highlight {
    color: #ff6200;
}

.hero-sub {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #4b5563;
}

.ww-btns {
    display: flex;
    gap: 1rem;
}

.btnwas {
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    display: inline-block;
    transition: 0.25s;
}

.btn-primary {
    background: #003087;
    color: white;
}

.btn-primary:hover {
    background: #001d52;
}

.btn-secondary {
    border: 2px solid #003087;
    color: #003087;
}

.btn-secondary:hover {
    background: #003087;
    color: white;
}

.ww-slider-nav {
    text-align: center;
    margin-top: 2rem;
}

.ww-slider-nav span {
    width: 12px;
    height: 12px;
    background: #d0d4da;
    border-radius: 50%;
    display: inline-block;
    margin: 0 6px;
    cursor: pointer;
    transition: 0.25s;
}

.ww-slider-nav span.active {
    background: #003087;
    transform: scale(1.3);
}

@media (max-width: 1024px) {
    .ww-slide {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .slide-right img {
        margin: 0 auto;
    }

    .ww-btns {
        justify-content: center;
        flex-wrap: wrap;
    }
}


.ww-usps {
    list-style:none;
    padding:0;
    margin:1rem 0;
}

.ww-usps li {
    font-size:1rem;
    color:#374151;
    margin-bottom:4px;
    display:flex;
    align-items:center;
    gap:.35rem;
}

/* =========================================
   ULTRA HERO SLIDER VISUAL ENGINE
========================================= */

.ultra-slider {
  position:relative;
  overflow:hidden;
}

.ultra-track {
  position:relative;
  width:100%;
  height:100%;
}

.ww-slide {
  position:absolute;
  width:100%;
  inset:0;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  opacity:0;
  transform:translateX(40px);
  transition:opacity .9s ease, transform 1.2s cubic-bezier(.25,.8,.25,1);
  pointer-events:none;
}

.ww-slide.active {
  opacity:1;
  transform:translateX(0);
  pointer-events:auto;
}

/* ===== PROGRESS BAR ===== */
.ultra-progress {
  position:absolute;
  bottom:14px;
  left:50%;
  transform:translateX(-50%);
  width:180px;
  height:4px;
  background:rgba(0,0,0,.07);
  border-radius:20px;
  overflow:hidden;
}

.ultra-progress::after {
  content:"";
  display:block;
  width:0%;
  height:100%;
  background:#003087;
  transition:width linear;
}

/* ===== NAV DOTS ===== */
.ultra-dots {
  position:absolute;
  left:50%;
  bottom:-6px;
  transform:translateX(-50%);
  display:flex;
  gap:.55rem;
}

.ultra-dots div {
  width:11px;
  height:11px;
  border-radius:50%;
  background:#d1d5db;
  transition:all .3s ease;
  cursor:pointer;
}

.ultra-dots div.active {
  transform:scale(1.3);
  background:#003087;
}

/* =========================================================
   FIX VOOR RESPONSIVE "ULTRA" SLIDER
   (Plak dit ONDERAAN je stylesheet)
   ========================================================= */

@media (max-width: 992px) {

    /* 1. Reset de 'white box' padding & marge */
    .slider-white-box {
        padding: 2rem 1rem;
        margin: -2rem auto 2rem; /* Kleinere negatieve marge */
        border-radius: 1rem; /* Iets minder ronding */
    }

    /* 2. DE GROTE FIX: Schakel 'absolute' positionering uit */
    .ultra-track {
        min-height: auto; /* LAAT DE HOOGTE WEER AUTOMATISCH BEPALEN */
        height: auto;
    }

    .ww-slide {
        position: relative !important; /* Override 'position: absolute' */
        display: none !important;      /* Verberg niet-actieve slides */
        
        /* Reset de animatie-eigenschappen */
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        pointer-events: auto !important; /* Zorg dat de slide klikbaar is */
        
        /* Stapel de content (uit jouw 992px query) */
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem; /* Iets minder ruimte */
        padding: 0; 
    }
    
    .ww-slide.active {
        display: grid !important; /* TOON ALLEEN DE ACTIEVE SLIDE */
    }

    /* 3. LAYOUT VERFIJNEN (op basis van je bestaande 992px query) */
    .slide-right {
        order: -1; /* Afbeelding bovenaan (uit jouw code) */
    }
    
    .slide-right img {
        margin: 0 auto;
        max-height: 250px; /* Beperk de hoogte van de afbeelding */
        object-fit: cover;
        width: 100%;
        max-width: 100%; /* Verwijder de 520px max-width */
        border-radius: 1rem;
    }
    
    .slide-left {
        max-width: 100%; /* Verwijder de 550px max-width */
    }
    
    /* 4. Typografie & Knoppen verfijnen */
    .ww-slide h1 {
        font-size: 2rem; /* Kleiner voor mobiel */
        line-height: 1.2;
    }
    .hero-sub {
        font-size: 1rem;
    }
    
    /* Knoppen onder elkaar en 100% breed */
    .ww-btns {
         justify-content: center;
         flex-direction: column; 
         gap: 0.75rem;
    }
    
    .btnwas {
        width: 100%; /* Knoppen op 100% breedte */
    }
    
    /* USP-lijst (vinkjes) centreren */
    .ww-usps {
        text-align: left; /* Zorgt dat de vinkjes-tekst links uitlijnt */
        max-width: 280px; /* Voorkomt rare uitlijning */
        margin: 1rem auto 1.5rem;
    }

    /* 5. SLIDER CONTROLS (Dots & Progress) */
    .ultra-dots,
    .ultra-progress {
        position: static; /* Haal uit 'absolute' positionering */
        transform: none; /* Reset positie */
        margin: 1.5rem auto 0; /* Plaats onder de slide */
        width: 100%;
        justify-content: center; /* Centreer de dots */
        left: auto;
        bottom: auto;
    }
    
    .ultra-progress {
        width: 180px; /* Geef de progress bar een vaste breedte terug */
        margin-top: 2rem;
    }
    
    /* Verberg de oude navigatie als die nog bestaat */
    .ww-slider-nav {
        display: none;
    }
}

















.ultra-track {
  position: relative;
  min-height: 520px; /* mooie balans */
}




/* === PRODUCT SLIDER (TOP 5 KEUZES) - FINALE VERSIE === */
.top-keuzes-sectie {
    background-color: #f9fafb; /* Lichte achtergrond */
    padding: 4rem 0;
}

/* De 'kapstok' voor de pijlen */
.top-keuzes-sectie .container {
    position: relative;
    max-width: 1600px; /* Zorg dat de container een max-width heeft */
}

.top-keuzes-titel {
    font-size: 2.25rem; /* 36px */
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
}

/* De Product Kaart Styling */
.product-kaart {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-kaart:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.product-kaart-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-kaart-img {
    width: 100%;
    height: 200px; /* Vaste hoogte */
    object-fit: contain; /* FIxt je 'lege' kaarten */
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem;
}

.product-kaart-body {
    padding: 1.5rem;
}

.product-kaart-merk {
    font-size: 0.875rem;
    color: #6b7280;
    display: block;
}

.product-kaart-titel {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0.25rem 0;
    height: 2.75rem; /* Max 2 regels */
    overflow: hidden;
}

.product-kaart-prijs {
    margin-top: 0.75rem;
}

.prijs-nu {
    font-size: 1.5rem;
    font-weight: 700;
    color: #004a99;
}

.prijs-oud {
    font-size: 1rem;
    color: #9ca3af;
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.product-kaart-status-groen {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #16a34a;
    margin-top: 0.75rem;
}

.product-kaart-status-oranje {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #ff6200;
    margin-top: 0.75rem;
}

/* --- FINALE SLIDER PIJLEN STYLING --- */
.top-keuzes-sectie .tns-controls button {
    position: absolute;
    top: 50%;
    transform: translateY(-150%); /* Lift de pijlen omhoog in lijn met de kaarten */
    z-index: 10;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    /* Verbergt de lelijke 'prev'/'next' tekst */
    color: transparent; 
}

.top-keuzes-sectie .tns-controls [data-controls="prev"] {
    left: -22px; /* Pijl links buiten de container */
}

.top-keuzes-sectie .tns-controls [data-controls="next"] {
    right: -22px; /* Pijl rechts buiten de container */
}

/* Pijl-icoontje (de < en >) */
.top-keuzes-sectie .tns-controls button::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-style: solid;
    border-width: 3px 3px 0 0;
    border-color: #004a99;
    top: 50%;
    left: 50%;
    transition: border-color 0.3s ease;
}

.top-keuzes-sectie .tns-controls [data-controls="prev"]::before {
    transform: translate(-30%, -50%) rotate(-135deg);
}

.top-keuzes-sectie .tns-controls [data-controls="next"]::before {
    transform: translate(-70%, -50%) rotate(45deg);
}

/* Hover-staat voor de pijlen */
.top-keuzes-sectie .tns-controls button:hover {
    background: #004a99;
}

.top-keuzes-sectie .tns-controls button:hover::before {
    border-color: #fff;
}


/* ===== PERFECTE RUIMTE TUSSEN KAARTEN ===== */
.top-keuzes-slider .slide {
    padding: 0 22px;
    box-sizing: border-box;
}

.top-keuzes-slider {
    display: flex;
    align-items: stretch;
}




.top-keuzes-wrapper {
    width: 100vw;
    max-width: 100%;
    padding: 0;
    margin: 0;
}



/* === GLOBAL GRID WIDTHS === */
.container,
.header-container,
.topbar .container,
.footer-content {
    max-width: 1600px !important;
    margin-left: auto;
    margin-right: auto;
}







/* === HERO SLIDER & BANNER CARD OP 1400PX === */
.slider-white-box,
.banner-card {
    max-width: 1400px !important;
    margin-left: auto;
    margin-right: auto;
}







/* =========================================================
   STYLING: JOUW HEADER + "2025" PANEEL
  =========================================================
*/

:root {
    --brand-primary: #003087; /* Wesley's Blauw */
    --brand-secondary: #ff6200; /* Oranje accent */
    --grey-border: #e5e7eb;
    --text-dark: #222;
    --text-light: #555;
    --panel-width: 320px; /* Breedte van het menu */
}

/* DEEL 1: JOUW VASTE HEADER (BOVENAAN)
   Dit vervangt je oude .ww-mobile-header CSS
*/
.ww-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem; /* Iets compacter */
    background: white;
    border-bottom: 1px solid var(--grey-border);
    
    /* Maakt hem "sticky" bovenaan */
    position: sticky;
    top: 0;
    z-index: 999;
}
.ww-mobile-toggle {
    font-size: 1.75rem;
    background: none;
    border: none;
    color: var(--brand-primary);
    cursor: pointer;
    padding: 0.25rem;
}
.ww-mobile-logo {
    font-weight: 700;
    color: var(--brand-primary);
    text-decoration: none;
    font-size: 1.15rem;
    /* Centreert het logo (trucje) */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.ww-mobile-cart {
    font-size: 1.75rem;
    color: var(--text-dark);
    text-decoration: none;
    position: relative; /* Voor de cart count */
}
.ww-cart-count {
    position: absolute;
    top: -4px;
    right: -8px;
    background: var(--brand-secondary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    width: 1.25rem;
    height: 1.25rem;
    line-height: 1.25rem;
    text-align: center;
}

/* DEEL 2: HET SLIDE-IN PANEEL (CSS blijft hetzelfde)
*/

/* Overlay (dimt de pagina) */
.ww-menu-overlay-hidden {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.ww-menu-overlay-hidden.active {
    opacity: 1;
    pointer-events: auto;
}

/* Het paneel zelf (container) */
#ww-menu-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--panel-width);
    max-width: 90vw;
    height: 100vh;
    background: #f8f9fa; /* Lichtgrijs ipv spierwit */
    z-index: 1002;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    overflow: hidden; 
}
#ww-menu-panel.active {
    transform: translateX(0);
}

/* De 'vellen' (lijsten) in het paneel */
.ww-menu-list {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    transform: translateX(100%); 
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}
.ww-menu-list.ww-menu-level-active {
    transform: translateX(0);
    z-index: 10;
}
.ww-menu-list.ww-menu-level-parent {
    transform: translateX(-30%);
    z-index: 5;
}

/* Styling van de menu-onderdelen */
.ww-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--grey-border);
    background: white;
    flex-shrink: 0;
}
.ww-menu-header h3, .ww-menu-logo-inner {
    margin: 0;
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 700;
    text-decoration: none;
}
.ww-menu-header button {
    background: none;
    border: none;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-light);
    cursor: pointer;
}
#ww-menu-close { font-size: 2.25rem; line-height: 1; }
.ww-menu-back { color: var(--brand-primary); font-size: 1.5rem; }

.ww-menu-search {
    padding: 1rem;
    border-bottom: 1px solid var(--grey-border);
    flex-shrink: 0;
}
.ww-menu-search input {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--grey-border);
    background: #f8f9fa;
}

/* De navigatielijst zelf */
.ww-menu-navlist {
    padding: 0.5rem 0;
    overflow-y: auto;
    flex-grow: 1;
}
.ww-menu-item {
    display: flex;
    align-items: center; /* Dit is cruciaal */
    gap: 1rem;
    padding: 0.85rem 1.25rem; 
    text-decoration: none;
    border-bottom: 1px solid #f1f3f5;
    
    /* Zorg dat hier GEEN font-weight of color staat */
}
.ww-menu-item:hover { background: #f8f9fa; }
.ww-menu-icon {
    width: 40px;
    max-height: 40px;
    border-radius: 8px;
    background: white;
    border: 1px solid var(--grey-border);
}
.ww-menu-item .ww-arrow {
    margin-left: auto;
    color: var(--brand-primary);
    font-weight: 700;
    font-size: 1.25rem;
}

/* Footer met CTA knoppen */
.ww-menu-footer {
    display: flex;
    justify-content: space-around;
    padding: 1rem;
    border-top: 1px solid var(--grey-border);
    background: #f8f9fa;
    flex-shrink: 0;
}
.ww-menu-footer a {
    color: var(--brand-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}








/* =========================================================
   DE "GOUDEN WISSEL" (Desktop vs. Mobiel)
   Plaats dit helemaal onderaan je CSS-bestand.
   ========================================================= */

/* * 1. MOBIELE WEERGAVE (tot 767px breed)
 * We tonen de mobiele header en verbergen de desktop-onderdelen.
*/
@media (max-width: 767px) {
	
	.header-logo-text .logo-main-title {font-size:1.4rem!important;
	}	
	.header-logo-text .logo-tagline {
  font-size: 0.87rem!important;
	}

    /* Verberg de desktop headers */
    .topbar, .header, nav.megamenu {
        display: none !important;
    }
    
    /* Toon de mobiele header (als flex container) */
    .ww-mobile-header {
        display: flex !important; 
    }
    
    /* Zorg dat ons nieuwe paneel en overlay "bestaan"
       (Ze zijn toch verborgen met 'transform' en 'opacity') */
    #ww-menu-panel, 
    #ww-menu-overlay {
        display: block !important;
    }
}

/* * 2. DESKTOP WEERGAVE (vanaf 768px breed)
 * We tonen de desktop headers en verbergen het mobiele menu compleet.
*/
@media (min-width: 768px) {

    /* Toon de desktop headers */
    .topbar, .header, nav.megamenu {
        display: block !important; 
        /* Pas 'display: block' aan als je desktop header 'flex' of 'grid' gebruikt */
    }
    
    /* Verberg de mobiele header */
    .ww-mobile-header {
        display: none !important;
    }
    
    /* Verberg het nieuwe paneel en overlay VOLLEDIG */
    #ww-menu-panel, 
    #ww-menu-overlay {
        display: none !important;
    }
}

/* =========================================
   STYLING VOOR DE NIEUWE MENU "HUB"
   (Toevoegen aan je CSS)
   ========================================= */

/* Scheidingsblok voor de account-hub */
.ww-menu-hub {
    padding: 1rem;
    /* Dikke, subtiele scheidingslijn */
    border-bottom: 10px solid #f0f2f5; 
}

/* De hoofd "Inloggen" knop */
.ww-hub-login {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f0f2f5; /* Lichtgrijs blok */
    border-radius: 8px;
    text-decoration: none;
    color: var(--brand-primary); /* Gebruik je blauwe merkkleur */
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
/* Kleur van het SVG-icoon */
.ww-hub-login svg {
    stroke: var(--brand-primary);
}

/* Container voor de lossen acties (Verlanglijst, etc) */
.ww-hub-actions {
    display: flex;
    flex-direction: column;
}
.ww-hub-action {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 0.5rem; /* Iets subtieler */
    text-decoration: none;
    color: var(--text-dark); /* Standaard donkere tekst */
    font-weight: 500;
    border-bottom: 1px solid #f0f2f5; /* Licht lijntje */
}
.ww-hub-action:last-child {
    border-bottom: none;
}
/* Stijl van de SVG-icoontjes */
.ww-hub-action svg {
    width: 22px;
    height: 22px;
    opacity: 0.7; /* Iets minder aanwezig */
}

/* Titel voor de categorie-sectie ("Onze Producten") */
.ww-menu-section-title {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #666; /* Grijs, niet te schreeuwerig */
    padding: 1.5rem 1.25rem 0.5rem;
    background: white; /* Zorgt dat het op de lijst "ligt" */
}

/* Zorgt dat de productlijst zelf geen extra padding bovenaan heeft */
.ww-menu-navlist {
    padding-top: 0;
}


/* De text wrapper die de titel en tagline groepeert */
.ww-menu-text-wrapper {
    display: flex;
    flex-direction: column; /* Stapelt de titel en tagline */
    
    /* Fix voor te lange titels (zoals 'Alle wasmachines') */
    overflow: hidden; 
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* De titel-span */
.ww-menu-title {
    font-size: 1rem;
    font-weight: 600;
    color: #222; /* Of var(--text-dark) */
    line-height: 1.3;
}

/* De tagline-span */
.ww-menu-tagline {
    font-size: 0.85rem;
    font-weight: 400; /* NIET vetgedrukt */
    color: #6b7280; /* Subtiel grijs */
    line-height: 1.2;
    
    /* Zorgt dat tagline ook afbreekt met ... */
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* Hover-effect */
.ww-menu-item:hover .ww-menu-title {
    color: var(--brand-primary, #003087);
}

/* MODAL */
/* MODAL */
/* MODAL */

.wwmodal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:999999;
}

.wwmodal-box {
  background:#fff;
  width: min(90%, 600px);
  padding:25px;
  border-radius:14px;
  box-shadow:0 0 40px rgba(0,0,0,.2);
  position:relative;
  max-height:90vh;
  overflow-y:auto;
  animation: modalIn .25s ease;
}

.wwmodal-close {
  position:absolute;
  top:10px;right:15px;
  font-size:32px;
  background:none;
  border:none;
  cursor:pointer;
}

@keyframes modalIn {
  from {opacity:0;transform:translateY(20px);}
  to   {opacity:1;transform:translateY(0);}
}
