/*
Theme Name: Westheart
Theme URI: https://westheart.nl
Author: Westheart Internationaal B.V.
Description: WordPress theme voor Westheart.nl, gebaseerd op het bestaande HTML/CSS ontwerp.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: f500
*/

:root {
    /* Brand */
    --color-primary: #D32F2F;
    --color-primary-rgb: 211, 47, 47;

    /* Surfaces */
    --color-bg: #000;
    --color-bg-alt: #050505;
    --color-surface: #0a0a0a;

    /* Borders */
    --color-border: #111;
    --color-border-light: #222;
    --color-border-outline: #333;

    /* Text */
    --color-text: #fff;
    --color-text-muted: #9E9E9E;

    /* Translucent overlays */
    --color-header-bg: rgba(0, 0, 0, 0.9);
    --color-nav-bg: rgba(0, 0, 0, 0.95);

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --section-padding: 12rem;

    /* Shape */
    --br-md: .5rem;

    /* Motion */
    --transition: .3s ease;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: var(--color-bg);
}




.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}
@media screen and (max-width: 1400px) {
    .container {
        padding: 0 5vw;
    }
    header#header .container {
        padding: 1.5rem 5vw;
    }
    header#header .nav .dropdown .mega-grid {
        padding: 0 5vw;
    }
    header#header .nav .dropdown .mega-foot {
        padding: 0.85rem 5vw 0;
    }
}
@media screen and (max-width: 768px) {
    :root {
        --section-padding: 10rem;
    }
    .head-h1 p {
        font-size: 0.9rem;
    }
}




.mb-lg {
    margin-bottom: 3rem;
}
.mb-md {
    margin-bottom: 2rem;
}
.mb-sm {
    margin-bottom: 1rem;
}
.mb-xs {
    margin-bottom: .5rem;
}




span.label {
    font: 500 14px/150% var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-primary);
    margin-bottom: .5rem;
    display: block;
}
span.eyebrown {
    color: var(--color-primary);
    text-align: center;

    /* Eyebrown */
    font-family: Inter;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.1875rem;
    text-transform: uppercase;
}
span.eyebrown-2 {
    color: var(--Gray, #9E9E9E);

    /* Eyebrown 2 */
    font-family: Inter;
    font-size: 0.625rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.09375rem;
    text-transform: uppercase;
}
h1 {
    font: 700 clamp(2.5rem, 5vw, 4rem)/125% var(--font-heading);
    color: var(--color-text);
}
h2 {
    font: 700 clamp(2rem, 4vw, 3rem)/125% var(--font-heading);
    color: var(--color-text);
}
h3 {
    font: 700 1.25rem/125% var(--font-heading);
    color: var(--color-text);
}
p {
    font: 300 1.125rem/165% var(--font-body);
    color: var(--color-text-muted);
}
a {
    font: 500 16px/150% var(--font-body);
    text-decoration: inherit;
    color: inherit;
}




.head-h1 {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.head-h1 h1 {
    margin-top: .5rem;
    margin-bottom: 1.5rem;
}
.head-h3 {
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}
.head-h3 h3 {
    margin-top: .75rem;
    margin-bottom: 1rem;
}
.head-h3 p {
    font-size: 14px;
}




.btn {
    display: inline-flex; align-items: center; gap: 0.55rem;
    padding: 0.9rem 1.75rem; border-radius: 999px;
    font: 600 13.5px/1 'Inter', sans-serif; letter-spacing: 0.02em;
    text-decoration: none; cursor: pointer; border: none;
    transition: background .25s ease, border-color .25s ease, transform .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary {
    background: var(--color-primary);
    color: #fff;
}
.btn.primary:hover { background: #b71c1c; }
.btn.primary::after {
    content: '';
    display: inline-block; width: 14px; height: 14px; flex-shrink: 0;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E") no-repeat center / contain;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E") no-repeat center / contain;
}
.btn.outline {
    background: transparent;
    border: 1px solid #2a2a2a;
    color: var(--color-text);
}
.btn.outline:hover { border-color: var(--color-primary); background: rgba(211,47,47,0.08); }
.btn.outline::after {
    content: '';
    display: inline-block; width: 14px; height: 14px; flex-shrink: 0;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E") no-repeat center / contain;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E") no-repeat center / contain;
}




/* Header */
header#header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-header-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}
header#header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
}
header#header .logo {
    font: 800 1.5rem/100% var(--font-heading);
    color: var(--color-text);
    text-decoration: none;
}
header#header .logo em {
    font-style: italic;
}
header#header .nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}
header#header .nav a {
    font: 500 .9rem/150% var(--font-heading);
    color: var(--color-text-muted);
    text-decoration: none;
    position: relative;
    padding: .25rem 0;
    transition: var(--transition);
}
header#header .nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}
header#header .nav a:hover,
header#header .nav a.active {
    color: var(--color-text);
}
header#header .nav a:hover::after,
header#header .nav a.active::after {
    width: 100%;
}
header#header .nav .cta {
    padding: 0.75rem 1.5rem;
    width: auto;
    color: #fff;
}
header#header .nav .cta:hover { color: #fff; }
header#header .nav .nav-item {
    position: relative;
}
header#header .nav .nav-item > a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
header#header .nav .nav-item > a::after { display: none; }
header#header .nav .nav-item .caret {
    font-size: 0.6rem;
    line-height: 1;
    transition: transform .25s ease;
    color: var(--color-text-muted);
}
header#header .nav .nav-item:hover .caret,
header#header .nav .nav-item:focus-within .caret {
    transform: rotate(180deg);
    color: var(--color-text);
}
header#header .nav .nav-item::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -0.5rem;
    right: -0.5rem;
    height: 0.75rem;
}
header#header .nav .dropdown {
    position: fixed;
    top: calc(4.5rem + 1px);
    left: 0;
    right: 0;
    width: 100vw;
    max-width: 100vw;
    transform: translateY(6px);
    background: #000;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
    backdrop-filter: none;
    padding: 1.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    z-index: 1001;
    box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.7);
}
header#header .nav .nav-item:hover .dropdown,
header#header .nav .nav-item:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
header#header .nav .dropdown .mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}
header#header .nav .dropdown .mega-item {
    position: relative;
    display: block;
    height: 200px;
    background: linear-gradient(180deg, #0c0c0c 0%, #080808 100%);
    border: 1px solid #1a1a1a;
    border-radius: 0.65rem;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
header#header .nav .dropdown .mega-item::after { display: none; }
header#header .nav .dropdown .mega-item:hover,
header#header .nav .dropdown .mega-item.active {
    border-color: #2a2a2a;
    transform: translateY(-3px);
}
header#header .nav .dropdown .mega-item .scene {
    position: absolute;
    inset: 0;
    background: #0a0a0a;
    overflow: hidden;
}
header#header .nav .dropdown .mega-item .scene img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease, filter .4s ease;
    filter: saturate(1.05);
}
header#header .nav .dropdown .mega-item:hover .scene img { transform: scale(1.06); filter: saturate(1.15); }
header#header .nav .dropdown .mega-item .scene::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 15%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.92) 85%, rgba(0,0,0,0.97) 100%);
    z-index: 1;
    pointer-events: none;
}
header#header .nav .dropdown .mega-item .scene { pointer-events: none; }
header#header .nav .dropdown .mega-item .body { pointer-events: none; }
header#header .nav .dropdown .mega-item * { cursor: pointer; }
header#header .nav .dropdown .mega-item .num-badge { display: none; }
header#header .nav .dropdown .mega-item .body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 3rem 1.1rem 1.1rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
header#header .nav .dropdown .mega-item .tag {
    font: 500 10px/1 var(--font-body);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}
header#header .nav .dropdown .mega-item .heading {
    font: 700 0.95rem/1.25 var(--font-heading);
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}
header#header .nav .dropdown .mega-item .arrow {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 3;
    color: #fff;
    font: 300 18px/1 var(--font-body);
    transition: transform .3s ease, color .25s ease;
}
header#header .nav .dropdown .mega-item:hover .arrow { color: var(--color-primary); transform: translateX(3px); }
/* Product dropdown variant — overrides for the Producten nav-item */
header#header .nav .nav-item.products .dropdown .mega-item {
    height: 240px;
    background: linear-gradient(180deg, #0d0d0d 0%, #080808 100%);
    display: flex;
    flex-direction: column;
}
header#header .nav .nav-item.products .dropdown .mega-item .num-badge { display: none; }
header#header .nav .nav-item.products .dropdown .mega-item .scene {
    position: relative;
    inset: auto;
    flex: 1;
    background:
        radial-gradient(ellipse at 50% 60%, rgba(211, 47, 47, 0.06) 0%, transparent 65%),
        #0a0a0a;
    border-bottom: 1px solid #161616;
}
header#header .nav .nav-item.products .dropdown .mega-item .scene::before {
    display: none;
}
header#header .nav .nav-item.products .dropdown .mega-item .scene img {
    object-fit: contain;
    padding: 1rem 1.25rem;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.6));
}
header#header .nav .nav-item.products .dropdown .mega-item:hover .scene img {
    transform: scale(1.04);
    filter: drop-shadow(0 10px 18px rgba(211, 47, 47, 0.25));
}
header#header .nav .nav-item.products .dropdown .mega-item:hover .scene {
    background:
        radial-gradient(ellipse at 50% 55%, rgba(211, 47, 47, 0.14) 0%, transparent 65%),
        #0a0a0a;
}
header#header .nav .nav-item.products .dropdown .mega-item .body {
    position: relative;
    bottom: auto;
    padding: 0.8rem 2.75rem 0.85rem 1rem;
    background: #060606;
    gap: 0.25rem;
    flex: 0 0 auto;
}
header#header .nav .nav-item.products .dropdown .mega-item .tag,
header#header .nav .nav-item.products .dropdown .mega-item .heading {
    text-shadow: none;
}
header#header .nav .nav-item.products .dropdown .mega-item .heading {
    font: 600 0.9rem/1.3 var(--font-heading);
}
header#header .nav .nav-item.products .dropdown .mega-item .arrow {
    bottom: 0.85rem;
    right: 0.9rem;
    color: #6f6f6f;
    font-size: 16px;
}

header#header .nav .dropdown .mega-foot {
    margin: 1.5rem auto 0;
    padding: 0 2rem;
    text-align: center;
    max-width: 1400px;
}
header#header .nav .dropdown .mega-foot a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.15rem 0.6rem;
    font: 500 12px/1 var(--font-body);
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
}
header#header .nav .dropdown .mega-foot a::after { display: none; }
header#header .nav .dropdown .mega-foot a:hover { color: var(--color-text); }
header#header .toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
header#header .toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}
header#header .toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
header#header .toggle.active span:nth-child(2) {
    opacity: 0;
}
header#header .toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
@media screen and (max-width: 1024px) and (min-width: 769px) {
    header#header .nav .dropdown {
        padding: 1.25rem 0;
    }
    header#header .nav .dropdown .mega-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    header#header .nav .dropdown .mega-item { height: 180px; }
}

/* Offerte modal */
body.modal-open { overflow: hidden; }
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    opacity: 0;
    overflow-y: auto;
    transition: opacity .25s ease;
}
.modal-overlay.open {
    display: flex;
    opacity: 1;
}
.modal {
    width: 100%;
    max-width: 640px;
    background: linear-gradient(180deg, #0e0e0e 0%, #080808 100%);
    border: 1px solid #1f1f1f;
    border-radius: 0.85rem;
    padding: 2rem 2.25rem 1.85rem;
    transform: translateY(20px);
    transition: transform .25s ease;
    position: relative;
    box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.7);
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal .close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #c9c9c9;
    cursor: pointer;
    font: 400 20px/1 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s, border-color .2s;
}
.modal .close:hover {
    background: rgba(211, 47, 47, 0.15);
    border-color: var(--color-primary);
    color: #fff;
}
.modal .label {
    font: 500 11px/1 'Inter', sans-serif;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary);
}
.modal h2 {
    font: 700 1.4rem/1.2 'Montserrat', sans-serif;
    color: #fff;
    margin: 0.6rem 0 1.75rem;
}
.modal .lede {
    font: 300 0.95rem/1.55 'Inter', sans-serif;
    color: #9E9E9E;
    margin: 0 0 1.5rem;
}
.modal .row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; margin-bottom: 0.85rem; }
.modal .field { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.85rem; }
.modal label {
    font: 500 12px/1 'Inter', sans-serif;
    color: #c9c9c9;
    letter-spacing: 0.04em;
}
.modal input,
.modal select,
.modal textarea {
    background: #050505;
    border: 1px solid #1f1f1f;
    border-radius: 0.4rem;
    padding: 0.7rem 0.85rem;
    color: #fff;
    font: 400 14px/1.4 'Inter', sans-serif;
}
.modal input:focus,
.modal select:focus,
.modal textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}
.modal textarea { min-height: 110px; resize: vertical; }
.modal .check {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font: 300 12.5px/1.5 'Inter', sans-serif;
    color: #9E9E9E;
    margin: 0.25rem 0 1rem;
}
.modal .check input { accent-color: var(--color-primary); margin-top: 3px; }
.modal .check a { font: inherit; color: var(--color-primary); text-decoration: none; }
.modal .check a:hover { text-decoration: underline; }
.modal .submit-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}
.modal .submit-row .note {
    font: 300 12px/1.5 'Inter', sans-serif;
    color: #777;
}
.modal button.btn {
    border: 0;
    cursor: pointer;
    font: 600 14px/1 'Inter', sans-serif;
    color: #fff;
}
.modal button.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.modal .form-msg {
    display: none;
    margin-bottom: 1rem;
    padding: 0.75rem 0.9rem;
    border-radius: 0.4rem;
    font: 400 13px/1.5 'Inter', sans-serif;
}
.modal .form-msg.success {
    display: block;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.4);
    color: #b9e9b9;
}
.modal .form-msg.error {
    display: block;
    background: rgba(211, 47, 47, 0.1);
    border: 1px solid rgba(211, 47, 47, 0.4);
    color: #f4a4a4;
}
@media (max-width: 600px) {
    .modal { padding: 1.5rem 1.5rem 1.4rem; }
    .modal .row { grid-template-columns: 1fr; }
    .modal-overlay { padding: 2rem 1rem 1rem; }
}

@media screen and (max-width: 768px) {
    header#header .container {
        padding: 1.5rem 5vw;
    }
    header#header .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-nav-bg);
        border-bottom: 1px solid var(--color-border);
        flex-direction: column;
        padding: 2rem 5vw;
        gap: 1.75rem;
    }
    header#header .nav.active {
        display: flex;
    }
    header#header .nav .cta {
        margin-left: 0;
    }
    header#header .nav .nav-item { width: 100%; text-align: center; }
    header#header .nav .nav-item > a { width: 100%; justify-content: center; gap: 0.5rem; }
    header#header .nav .nav-item::after { display: none; }
    header#header .nav .nav-item .caret { display: none; }
    header#header .nav .dropdown { display: none; }
    header#header .toggle {
        display: flex;
    }
    .btn {
        justify-content: center;
        width: 100%;
    }
    .btn:hover {
        transform: none;
    }
}





section#hero {
    height: 600vh;
    position: relative;
}
section#hero .sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}
section#hero .text {
    position: absolute;
    top: 180px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    max-width: 800px;
    width: 100%;
    padding: 0 2rem;
    z-index: 3;
}
section#hero .image {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 750px;
    max-width: 90vw;
    z-index: 2;
    object-fit: contain;
}
@media screen and (min-width: 2560px) {
    section#hero .image {
        width: 1100px;
    }
}
section#hero .panels {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 8rem;
    display: flex;
    justify-content: space-between;
    z-index: 3;
    pointer-events: none;
}
section#hero .panel {
    max-width: 350px;
    opacity: 0;
}
section#hero .panel.left {
    text-align: right;
}
section#hero .panel h3 {
    font-size: 1.8rem;
    line-height: 135%;
}
section#hero .panel p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 1.25rem;
}
@media screen and (max-width: 1024px) {
    section#hero .panel {
        max-width: 240px;
    }
    section#hero .panels {
        padding: 0 4rem;
    }
}
@media screen and (max-width: 768px) {
    section#hero .text {
        top: 130px;
    }
    section#hero .image {
        width: 440px;
    }
    section#hero .panel {
        max-width: 160px;
    }
    section#hero .panels {
        padding: 0 2rem;
    }
}




section#producten .text {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
section#producten .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
section#producten .grid .card {
    background-color: var(--color-surface);
    border-radius: var(--br-md);
    border: solid 1px var(--color-border);
    overflow: hidden;
    transition: var(--transition);
}
section#producten .grid .card:hover {
    transform: scale(1.03);
}
section#producten .grid .card .image {
    background-color: var(--color-border-light);
    height: 300px;
    width: 100%;
}
section#producten .grid .card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
section#producten .grid .card .content {
    padding: 2rem 1.5rem;
}
section#producten .grid .card .content p {
    font-size: 16px;
}
section#producten .grid .card .content span {
    color: var(--color-primary);
    font-weight: 500;
}
section#producten .grid .card .content span::after {
    content: '→';
    padding-left: .75rem;
    transition: var(--transition);
}
section#producten .grid .card:hover .content span::after {
    padding-left: 1rem;
}
section#producten .button {
    text-align: center;
}






/* Voordelen Section */
section#voordelen {
    padding: var(--section-padding) 0;
    background: radial-gradient(circle at center left, rgba(var(--color-primary-rgb), .1) 0%, var(--color-bg) 50%);
    background-color: var(--color-bg);
}
section#voordelen .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
section#voordelen .text {
    max-width: 450px;
    margin-left: auto;
    text-align: right;
    margin-right: 6rem;
    position: sticky;
    top: 10rem;
    align-self: start;
}
section#voordelen .text h2 {
    max-width: 400px;
    margin-left: auto;
}
section#voordelen .list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
section#voordelen .list .item {
    border-bottom: 1px solid var(--color-border-light);
    padding-bottom: 4rem;
    display: flex;
    gap: 2rem;
    animation: item-scroll linear both;
    animation-timeline: view();
}
section#voordelen .list .item:last-child {
    border-bottom: 0px solid var(--color-border-light);
    padding-bottom: 0;
}
section#voordelen .list .item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    color: var(--color-primary);
    filter: drop-shadow(0 0 .5rem rgba(var(--color-primary-rgb), .6));
}
section#voordelen .list .item .icon svg {
    width: 100%;
    height: 100%;
}
section#voordelen .list .item .content p {
    font-size: 16px;
}
@keyframes item-scroll {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    75% {
        opacity: 1;
    }
    90% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
@media screen and (max-width: 1024px) {
    section#voordelen .text {
        margin-right: 3rem;
    }
    section#voordelen .list {
        gap: 2.5rem;
    }
    section#voordelen .list .item {
        padding-bottom: 2.5rem;
    }
}
@media screen and (max-width: 768px) {
    section#voordelen .container {
        grid-template-columns: 1fr;
    }
    section#voordelen .text {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 4rem;
        position: static;
        top: 0;
        text-align: left;
    }
    section#voordelen .text h2 {
        max-width: 300px;
        margin-left: 0;
    }
    section#voordelen .list .item {
        padding-bottom: 2rem;
        gap: 1rem;
    }
}




/* Logos Section */
section#logos .text .label {
    display: block;
    text-align: center;
    font-size: 18px;
}
section#logos .marquee {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 25%, black 75%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 25%, black 75%, transparent);
}
section#logos .marquee .track {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: marquee 30s linear infinite;
}
section#logos .marquee-reverse .track {
    animation-direction: reverse;
}
section#logos .marquee .track .item {
    flex-shrink: 0;
    height: 45px;
    display: flex;
    align-items: center;
}
section#logos .marquee .track .item img {
    height: 100%;
    width: auto;
    object-fit: contain;
    opacity: .8;
}
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}




/* OVER ONS */
section#overons {
    padding: var(--section-padding) 0;
}
section#overons .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
section#overons .images {
    text-align: center;
}
section#overons .images img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--br-md);
    aspect-ratio: 1/1;
}
section#overons .images img:first-child {
    width: 55%;
    margin-right: 30%;
}
section#overons .images img:nth-child(2) {
    width: 62%;
    margin: -12rem 0 0 30%;
    box-shadow: 0 0 0 1rem rgba(0, 0, 0, 1);
}
section#overons .text {
    max-width: 450px;
    align-self: center;
}
@media screen and (max-width: 1024px) {
    section#overons .container {
        gap: 2rem;
    }
}
@media screen and (max-width: 768px) {
    section#overons .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    section#overons .images {
        max-width: 500px;
        margin: 0 auto;
    }
    section#overons .images img:first-child {
        width: 60%;
        margin-right: 25%;
    }
    section#overons .images img:nth-child(2) {
        width: 65%;
        margin: -8rem 0 0 25%;
    }
    section#overons .text {
        max-width: 100%;
    }
}




/* Footer */
footer#footer {
    background: var(--color-bg-alt);
    padding: 4rem 0 2rem;
}
section#contact-cta {
    padding: 0 0 7rem 0;
}
section#contact-cta .card.cta {
    background:
        linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9)),
        url('../images/cta-bg.png') center / cover no-repeat;
    border: 1px solid var(--color-border);
    border-radius: var(--br-md);
    padding: 3.5rem 2rem;
    text-align: center;
    overflow: hidden;
}
section#contact-cta .card.cta h2,
section#contact-cta .card.cta p,
section#contact-cta .card.cta .label {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}
section#contact-cta .card.cta h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
}
section#contact-cta .card.cta p {
    font-size: 1rem;
}
section#contact-cta .card.cta .buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}
section#contact-cta .card.cta .buttons .btn {
    font-size: 0.875rem;
}
footer#footer .grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 4rem 3.5rem;
    margin-bottom: 3.5rem;
    align-items: start;
}
footer#footer .info .logo {
    font: 800 1.5rem/100% var(--font-heading);
    color: var(--color-text);
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
}
footer#footer .info .logo em {
    font-style: italic;
}
footer#footer .info p {
    font-size: .95rem;
    max-width: 300px;
}
footer#footer .info .socials {
    display: flex;
    gap: .5rem;
    margin-top: 1.5rem;
}
footer#footer .info .socials a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition);
}
footer#footer .info .socials a svg {
    width: 16px;
    height: 16px;
}
footer#footer .info .socials a:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}
footer#footer .links {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
footer#footer .links h4 {
    font: 700 .875rem/150% var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text);
    margin-bottom: .75rem;
    padding-bottom: .75rem;
    position: relative;
}
footer#footer .links h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 22px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 1px;
}
footer#footer .links a {
    font-size: .95rem;
    color: var(--color-text-muted);
    transition: color .2s ease;
    display: inline-flex;
    align-items: center;
    width: fit-content;
}
footer#footer .links a::before {
    content: '→';
    color: var(--color-primary);
    opacity: 0;
    width: 0;
    overflow: hidden;
    font-size: .85rem;
    transition: opacity .2s ease, width .2s ease, margin-right .2s ease;
}
footer#footer .links a:has(svg.link-icon)::before {
    display: none;
}
footer#footer .links a .link-icon {
    width: 14px;
    height: 14px;
    margin-right: .55rem;
    color: var(--color-primary);
    flex-shrink: 0;
    transition: transform .2s ease;
}
footer#footer .links a:hover {
    color: var(--color-text);
}
footer#footer .links a:hover::before {
    opacity: 1;
    width: 1em;
    margin-right: .4rem;
}
footer#footer .links a:hover .link-icon {
    transform: translateX(2px);
}
footer#footer .bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer#footer .bottom p {
    font-size: .85rem;
}
footer#footer .bottom .bottom-links {
    display: flex;
    gap: 1.5rem;
}
footer#footer .bottom .bottom-links a {
    font-size: .85rem;
    font-weight: 300;
    color: var(--color-text-muted);
    transition: var(--transition);
}
footer#footer .bottom .bottom-links a:hover {
    color: var(--color-text);
}
@media screen and (max-width: 1024px) {
    footer#footer .grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem 2.5rem;
    }
    footer#footer .info {
        grid-column: 1 / -1;
    }
}
@media screen and (max-width: 768px) {
    section#contact-cta {
        padding-bottom: 4rem;
    }
    section#contact-cta .card.cta {
        padding: 4rem 1.5rem;
    }
    section#contact-cta .card.cta .buttons {
        flex-direction: column;
        align-items: center;
    }
    footer#footer .grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1.5rem;
    }
    footer#footer .info {
        grid-column: 1 / -1;
    }
    footer#footer .bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        align-items: center;
    }
}




section#producten {
    padding: 7rem 0 7rem;
}
section#producten .filter-bar {
    display: flex;
    margin-top: 2.5rem;
    align-items: stretch;
    flex-wrap: wrap;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: .85rem;
    position: relative;
}
section#producten .filter-bar .search {
    position: relative;
    flex: 1 1 240px;
    min-width: 200px;
    display: flex;
    align-items: center;
}
section#producten .filter-bar .search input {
    width: 100%;
    background: transparent;
    border: none;
    border-radius: .85rem 0 0 .85rem;
    padding: .85rem 1rem .85rem 2.85rem;
    color: #fff;
    font-family: Inter;
    font-size: .9rem;
    font-weight: 300;
    transition: background .2s ease;
}
section#producten .filter-bar .search input::placeholder {
    color: rgba(255, 255, 255, .4);
}
section#producten .filter-bar .search input:hover,
section#producten .filter-bar .search input:focus {
    background: rgba(255, 255, 255, .03);
    outline: none;
}
section#producten .filter-bar .search .search-icon {
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, .55);
    pointer-events: none;
    transition: color .2s ease;
}
section#producten .filter-bar .search:focus-within .search-icon {
    color: var(--color-primary);
}
section#producten .filter-bar .select-wrap {
    position: relative;
    flex: 0 0 auto;
    display: flex;
    border-left: 1px solid #1a1a1a;
}
section#producten .filter-bar .filter-panel {
    display: contents;
}
section#producten .filter-bar .filter-panel-header,
section#producten .filter-bar .filter-toggle,
section#producten .filter-backdrop {
    display: none;
}

/* Custom select */
section#producten .filter-bar .select {
    position: relative;
    width: 100%;
}
section#producten .filter-bar .select-trigger {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: .85rem 2.6rem .85rem 1rem;
    color: #fff;
    font-family: Inter;
    font-size: .9rem;
    font-weight: 300;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    white-space: nowrap;
    transition: background .2s ease, color .2s ease;
}
section#producten .filter-bar .select-wrap:last-child .select-trigger {
    border-radius: 0 .85rem .85rem 0;
}
section#producten .filter-bar .select-trigger:hover,
section#producten .filter-bar .select.open .select-trigger {
    background: rgba(255, 255, 255, .03);
}
section#producten .filter-bar .select-value {
    overflow: hidden;
    text-overflow: ellipsis;
}
section#producten .filter-bar .select-value em {
    font-style: normal;
    color: rgba(255, 255, 255, .5);
    font-weight: 300;
    margin-left: .1rem;
}
section#producten .filter-bar .select-chevron {
    color: rgba(255, 255, 255, .55);
    transition: transform .25s ease, color .2s ease;
    flex-shrink: 0;
}
section#producten .filter-bar .select.open .select-chevron {
    transform: rotate(180deg);
    color: #fff;
}
section#producten .filter-bar .select-menu {
    position: absolute;
    top: calc(100% + .5rem);
    left: 0;
    min-width: 100%;
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: .65rem;
    padding: .35rem;
    margin: 0;
    list-style: none;
    box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .8), 0 0 0 1px rgba(0, 0, 0, .4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    z-index: 100;
    white-space: nowrap;
}
section#producten .filter-bar .select-wrap:last-child .select-menu {
    left: auto;
    right: 0;
}
section#producten .filter-bar .select.open .select-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
section#producten .filter-bar .select-option {
    padding: .55rem .85rem;
    border-radius: .4rem;
    color: rgba(255, 255, 255, .8);
    font-family: Inter;
    font-size: .85rem;
    font-weight: 300;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
    display: flex;
    align-items: center;
    gap: .35rem;
}
section#producten .filter-bar .select-option em {
    font-style: normal;
    color: rgba(255, 255, 255, .5);
    font-weight: 300;
}
section#producten .filter-bar .select-option:hover {
    background: rgba(255, 255, 255, .04);
    color: #fff;
}
section#producten .filter-bar .select-option:hover em {
    color: rgba(255, 255, 255, .75);
}
section#producten .filter-bar .select-option.active {
    background: rgba(var(--color-primary-rgb), .14);
    color: var(--color-primary);
}
section#producten .filter-bar .select-option.active em {
    color: rgba(var(--color-primary-rgb), .8);
}
section#producten .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}
section#producten .product-grid .card.hidden {
    display: none;
}
section#producten .product-grid .card {
    background-color: var(--color-surface);
    border-radius: var(--br-md);
    border: solid 1px var(--color-border);
    overflow: hidden;
    transition: var(--transition);
    display: grid;
    grid-template-columns: 2fr 3fr;
    padding: 2.5rem 2rem 2.5rem 0;
}
section#producten .product-grid .card .image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
section#producten .product-grid .card .image img {
    width: 100%;
    max-width: 200px;
}
section#producten .product-grid .card .image .variants {
    position: absolute;
    bottom: 0;
    left: 2rem;
    right: 0;
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
    z-index: 2;
}
section#producten .product-grid .card .image .variants .variant {
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .12);
    color: var(--color-text);
    padding: .4rem .75rem;
    border-radius: .35rem;
    font: 500 11px/1 var(--font-body);
}
section#producten .product-grid .card .content {
    display: flex;
    flex-direction: column;
}
section#producten .product-grid .card .content .head-h3 {
    margin-bottom: 1rem;
}
section#producten .product-grid .card .content .specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border-light);
}
section#producten .product-grid .card .content .specs .spec {
    display: flex;
    gap: .25rem;
    flex-direction: column;
}
section#producten .product-grid .card .content .specs .spec .value {
    color: #FFF;

    /* A-Button */
    font-family: Inter;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 600;
    line-height: 165%; /* 1.44375rem */
}
section#producten .product-grid .card .content a {
    margin-top: 1.5rem;
    width: 100%;
    text-align: center;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
}
@media screen and (max-width: 1024px) {
    section#producten .product-grid {
        grid-template-columns: 1fr;
        margin-top: 2rem;
    }
}
@media screen and (max-width: 768px) {
    section#producten {
        padding: 4rem 0 4rem;
    }
    section#producten .filter-bar {
        margin-top: 2rem;
    }
    section#producten .filter-bar .search {
        flex: 1 1 auto;
    }
    section#producten .filter-bar .search input {
        border-radius: .85rem 0 0 .85rem;
        padding-top: .9rem;
        padding-bottom: .9rem;
        font-size: .95rem;
    }
    section#producten .filter-bar .filter-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        background: transparent;
        border: none;
        border-left: 1px solid #1a1a1a;
        padding: 0 1.25rem;
        color: #fff;
        cursor: pointer;
        border-radius: 0 .85rem .85rem 0;
        transition: background .2s ease;
    }
    section#producten .filter-bar .filter-toggle svg {
        width: 20px;
        height: 20px;
    }
    section#producten .filter-bar .filter-toggle:hover,
    section#producten .filter-bar.filters-open .filter-toggle {
        background: rgba(255, 255, 255, .03);
    }
    section#producten .filter-bar .filter-panel {
        display: none;
        position: fixed;
        left: 50%;
        top: 50%;
        right: auto;
        bottom: auto;
        width: calc(100% - 2rem);
        max-width: 420px;
        background: var(--color-surface);
        border-radius: 1rem;
        border: 1px solid var(--color-border);
        padding: 1.75rem 1.25rem 1.5rem;
        flex-direction: column;
        gap: .5rem;
        z-index: 1001;
        max-height: calc(100vh - 2rem);
        overflow-y: auto;
        transform: translate(-50%, -50%) scale(.96);
        opacity: 0;
        transition: transform .25s ease, opacity .2s ease;
    }
    section#producten .filter-bar.filters-open .filter-panel {
        display: flex;
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    section#producten .filter-bar .filter-panel-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: .25rem .25rem 1rem;
        border-bottom: 1px solid var(--color-border);
        margin-bottom: .75rem;
        color: #fff;
        font-family: Inter;
        font-weight: 600;
        font-size: 1rem;
    }
    section#producten .filter-bar .filter-panel-close {
        background: transparent;
        border: none;
        color: #fff;
        font-size: 1.6rem;
        line-height: 1;
        cursor: pointer;
        padding: 0 .25rem;
    }
    section#producten .filter-bar .filter-panel .select-wrap {
        flex: 1 1 100%;
        border: none;
        display: block;
        padding: .25rem 0;
    }
    section#producten .filter-bar .filter-panel .select-wrap::before {
        content: attr(data-label);
        display: block;
        font-family: Inter;
        font-size: .7rem;
        font-weight: 600;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, .5);
        padding: .25rem .25rem .5rem;
    }
    section#producten .filter-bar .filter-panel .select-trigger {
        display: none;
    }
    section#producten .filter-bar .filter-panel .select-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        white-space: normal;
        transition: none;
    }
    section#producten .filter-bar .filter-panel .select-option {
        padding: .85rem 1rem;
        border-radius: .55rem;
        font-size: .9rem;
    }
    section#producten .filter-bar .filter-panel .select-option + .select-option {
        margin-top: .25rem;
    }
    section#producten .filter-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .5);
        opacity: 0;
        visibility: hidden;
        transition: opacity .25s ease, visibility .25s;
        z-index: 1000;
        pointer-events: none;
    }
    section#producten .filter-bar.filters-open ~ .filter-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    section#producten .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-top: 1.25rem;
    }
    section#producten .product-grid .card {
        grid-template-columns: 1fr;
        padding: 1.25rem .9rem;
        gap: 1rem;
        min-width: 0;
    }
    section#producten .product-grid .card .content {
        min-width: 0;
    }
    section#producten .product-grid .card .head-h3 h3 {
        font-size: 1.05rem;
        overflow-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
    }
    section#producten .product-grid .card .head-h3 .eyebrown {
        overflow-wrap: break-word;
        word-break: break-word;
    }
    section#producten .product-grid .card .head-h3 p {
        display: none;
    }
    section#producten .product-grid .card .image {
        min-height: 160px;
    }
    section#producten .product-grid .card .image img {
        max-width: 140px;
    }
    section#producten .product-grid .card .image .variants {
        top: 0;
        right: 0;
        bottom: auto;
        left: auto;
        justify-content: flex-end;
    }
    section#producten .product-grid .card .content .specs {
        grid-template-columns: 1fr;
        gap: .5rem;
    }
    section#producten .product-grid .card .content a {
        padding: 0.6rem 0.5rem;
        font-size: 0.8rem;
        margin-top: 1rem;
    }
}
@media screen and (max-width: 480px) {
    section#producten .filter-bar .select-option {
        font-size: .8rem;
    }
    section#producten .product-grid {
        grid-template-columns: 1fr;
    }
    section#producten .product-grid .card {
        grid-template-columns: 1fr;
        padding: 1.5rem 1.25rem;
        gap: 1rem;
    }
    section#producten .product-grid .card .image {
        min-height: 180px;
    }
    section#producten .product-grid .card .image img {
        max-width: 160px;
    }
    section#producten .product-grid .card .image .variants {
        top: 0;
        right: 0;
        bottom: auto;
        left: auto;
        justify-content: flex-end;
    }
    section#producten .product-grid .card .head-h3 p {
        display: block;
    }
    section#producten .product-grid .card .content .specs {
        grid-template-columns: 1fr 1fr;
    }
}