/* ================================================
   JASSEN MET LOGO — style.css
   ================================================ */

:root {
    /* KLEUREN */
    --dark-blue: #2a3e57; /* announcement bar, CTA knoppen, mega menu accenten */
    --dark-blue-light: #eee9ff; /* lavendel achtergrond featured block */
    --pink: #f3919e; /* hover states */
    --green-dark: #1b3a2d; /* footer achtergrond */
    --green-mid: #2c5f2e; /* category accenten */
    --green-light: #d4edda; /* stats sectie achtergrond */
    --blue-light: #d6e8f5; /* reviews sectie achtergrond */
    --yellow-green: #c8e64a; /* ticker banner */
    --red-accent: #e05a2b; /* tagline "niet" */
    --green-accent: #2e7d32; /* tagline "persoonlijk" */
    --orange-nav: #e05a2b; /* actieve nav link */
    --bg: #f8f6f2; /* site achtergrond */
    --white: #ffffff;
    --text: #1a1a1a;
    --text-light: #555555;
    --border: #e8e2da;

    /* FONTS */
    --font: "Lexend", sans-serif;

    /* SPACING */
    --max-width: 1240px;
    --radius: 12px;
    --radius-sm: 8px;
}

/* ---- RESET ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}
img {
    display: block;
    max-width: 100%;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
button {
    cursor: pointer;
    font-family: var(--font);
}

/* ---- CONTAINER ---- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
}

/* ---- BUTTONS ---- */
.btn-primary {
    display: inline-block;
    width: fit-content;
    background: var(--orange-nav);
    color: var(--white);
    font-weight: 300;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    transition:
        background 0.15s,
        transform 0.15s;
}
.btn-primary:hover {
    background: #c44e22;
    transform: translateY(-1px);
}

.btn-dark-blue {
    display: inline-block;
    background: var(--dark-blue);
    color: var(--white);
    font-weight: 300;
    font-size: 14px;
    padding: 11px 22px;
    border-radius: 50px;
    border: none;
    transition:
        background 0.15s,
        transform 0.15s;
    white-space: nowrap;
}
.btn-dark-blue:hover {
    background: var(--dark-blue-light);
    transform: translateY(-1px);
}

.btn-pink {
    display: inline-block;
    background: var(--pink);
    color: var(--white);
    font-weight: 300;
    font-size: 14px;
    padding: 11px 22px;
    border-radius: 50px;
    border: none;
    transition:
        background 0.15s,
        transform 0.15s;
    white-space: nowrap;
}
.btn-pink:hover {
    background: var(--pink);
    transform: translateY(-1px);
}

/* ---- ANNOUNCEMENT BAR ---- */
.announcement-bar {
    background: var(--dark-blue);
    color: var(--white);
    text-align: center;
    padding: 9px 48px;
    font-size: 13px;
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.announcement-icon {
    flex-shrink: 0;
}
.announcement-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--white);
    font-size: 18px;
    opacity: 0.7;
    line-height: 1;
    padding: 4px 8px;
}
.announcement-close:hover {
    opacity: 1;
}

/* ---- HEADER ---- */
.header {
    position: sticky;
    top: 5px;
    z-index: 200;
    background: transparent;
    padding: 0 16px;
    margin-top: 5px;
}
.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 40px;
    background: #fcee67;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* LOGO */
.logo {
    font-size: 26px;
    font-weight: 900;
    color: var(--pink);
    line-height: 1;
    flex-shrink: 0;
    letter-spacing: -0.5px;
}
.logo span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--dark-blue);
    letter-spacing: 1.5px;
    text-transform: lowercase;
    margin-top: 1px;
    margin-left: 10px;
}

/* NAV */
.nav {
    display: flex;
    gap: 32px;
    flex-shrink: 0;
}
.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-blue);
    padding-bottom: 2px;
    position: relative;
    transition: color 0.15s;
}
.nav-link-active,
.nav-link:hover {
    color: var(--pink);
}

/* ICONS */
.header-icons {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: flex-end;
}
.icon-btn {
    background: none;
    border: none;
    color: var(--text);
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}
.icon-btn:hover {
    background: var(--bg);
}

/* ---- MEGA MENU ---- */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    display: none;
    z-index: 199;
}
.mega-menu.open {
    display: block;
}

.mega-menu-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 32px;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
}

.mega-menu-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mega-cat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    transition:
        background 0.12s,
        color 0.12s;
}
.mega-cat:hover,
.mega-cat-active {
    background: var(--dark-blue-light);
    color: var(--dark-blue);
}
.mega-cat span {
    font-size: 13px;
    opacity: 0.5;
}

.mega-promo {
    margin-top: 16px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    background: var(--green-dark);
}
.mega-promo img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    opacity: 0.6;
}
.mega-promo-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mega-promo-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--dark-blue);
    color: var(--white);
    border-radius: 50%;
    font-size: 14px;
}

.mega-menu-right {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.mega-tile {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg);
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 10px;
    transition: transform 0.2s;
}
.mega-tile:hover {
    transform: scale(1.02);
}
.mega-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mega-tile span {
    position: relative;
    z-index: 2;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.mega-tile-accent {
    background: var(--dark-blue-light);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
}
.mega-tile-accent strong {
    font-size: 15px;
    font-weight: 800;
    color: var(--dark-blue);
}
.mega-arrow-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--dark-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    position: relative;
    z-index: 2;
    align-self: flex-end;
}

.mega-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 198;
}
.mega-backdrop.open {
    display: block;
}

/* ---- HERO ---- */
.hero {
    position: relative;
    height: 82vh;
    min-height: 500px;
    overflow: hidden;
    background: #1a1a1a;
    margin-top: -74px;
    z-index: 1;
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(5, 10, 25, 0.62) 0%,
        rgba(5, 10, 25, 0.18) 55%,
        transparent 100%
    );
}
.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 0 64px;
    max-width: 1100px;
}
.hero-eyebrow {
    display: none;
}
.hero-title {
    font-size: clamp(44px, 6.5vw, 82px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1.5px;
    font-style: normal;
}
.hero-white {
    color: #ffffff;
}
.hero-pink {
    color: #f3919e;
}
.hero-title em {
    font-style: normal;
}

/* ---- SECTION HEADER ---- */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 16px;
    flex-wrap: wrap;
}
.section-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.section-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark-blue);
}

/* ARROW BUTTONS */
.arrow-group {
    display: flex;
    gap: 6px;
    align-items: center;
}
.arrow-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid #ccc;
    background: var(--white);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        border-color 0.15s,
        background 0.15s;
}
.arrow-btn:hover {
    border-color: var(--text);
    background: var(--bg);
}
.arrow-btn-dark {
    border-color: var(--text);
    background: transparent;
}

/* ---- PRODUCT SECTION ---- */
.product-section {
    padding: 98px 0 50px;
    background: var(--white);
}

.product-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: none;
}
.product-carousel::-webkit-scrollbar {
    display: none;
}

/* ---- PRODUCT CARD ---- */
.product-card {
    scroll-snap-align: start;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}
.product-card-sm {
    flex: 0 0 190px;
}

.product-img-wrap {
    position: relative;
    background: var(--bg);
    aspect-ratio: 4/5;
    overflow: hidden;
}
.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.product-img-wrap .img-hover {
    position: absolute;
    inset: 0;
    opacity: 0;
}
.product-card:hover .product-img-wrap .img-main {
    opacity: 0;
}
.product-card:hover .product-img-wrap .img-hover {
    opacity: 1;
}
.product-card:hover .product-img-wrap img {
    transform: scale(1.04);
}

.wishlist-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
    transition: color 0.15s;
}
.wishlist-btn:hover {
    color: var(--red-accent);
}
.wishlist-btn.active {
    color: var(--red-accent);
}
.wishlist-btn.active svg path {
    fill: var(--red-accent);
    stroke: var(--red-accent);
}

.product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    background: var(--pink);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 50px;
}

.product-info {
    padding: 10px 12px 14px;
}
.product-qty {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
}
.product-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin: 2px 0 4px;
}
.product-price-old {
    font-size: 12px;
    color: var(--text-light);
}
.product-price-old s {
    opacity: 0.6;
}
.product-price {
    font-size: 13px;
    color: var(--text);
}
.product-price strong {
    color: var(--green-mid);
}

/* ---- CATEGORY SECTION ---- */
.category-section {
    padding: 16px 0 98px;
    background: var(--white);
}
.category-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
}
.category-grid::-webkit-scrollbar {
    display: none;
}
.cat-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    display: block;
    scroll-snap-align: start;
}
.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.cat-card:hover img {
    transform: scale(1.06);
}
.cat-card span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 14px 14px;
    background: linear-gradient(transparent, rgba(10, 20, 40, 0.7));
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
}

/* ---- FEATURED SECTION ---- */
.featured-section {
    background: var(--white);
    padding: 0 0 98px;
}
.featured-block {
    background: var(--dark-blue-light);
    border-radius: var(--radius);
    padding: 40px 40px 40px 48px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: center;
}
.featured-left {
    display: flex;
    flex-direction: column;
}
.featured-tag {
    display: inline-block;
    background: var(--dark-blue);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    width: fit-content;
}
.featured-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 12px;
}
.featured-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}
.featured-products {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scrollbar-width: none;
}
.featured-products::-webkit-scrollbar {
    display: none;
}

/* ---- TAGLINE SECTION ---- */
.tagline-section {
    background: var(--bg);
    padding: 98px 0;
}
.tagline-photo-block {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 420px;
}
.tagline-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}
.tagline-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10, 20, 40, 0.72) 0%,
        rgba(10, 20, 40, 0.3) 60%,
        transparent 100%
    );
}
.tagline-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
    padding: 100px 64px 0 64px;
    max-width: 680px;
}
.tagline-text {
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.35;
}
.tagline-text em {
    font-style: normal;
}
.tagline-red {
    color: var(--red-accent);
}
.tagline-green {
    color: var(--green-accent);
}

/* ---- TICKER ---- */
.ticker-wrap {
    background: var(--pink);
    overflow: hidden;
    padding: 50px 0;
}
.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: ticker 20s linear infinite;
}
.ticker-content {
    font-size: 92px;
    font-weight: 900;
    color: var(--green-dark);
    letter-spacing: -1px;
    padding-right: 80px;
    display: inline-block;
    line-height: 1;
}
@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ---- TESTIMONIAL SECTION ---- */
.testimonial-section {
    background: var(--white);
    padding: 98px 0;
}
.testimonial-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.testimonial-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.testimonial-stars {
    color: #f5a623;
    font-size: 18px;
    letter-spacing: 3px;
}
.testimonial-quote {
    font-size: 42px;
    font-weight: 100;
    color: var(--text);
    line-height: 1;
}
.testimonial-author {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}
.testimonial-right {
    position: relative;
    height: 420px;
}
.testi-img-1 {
    position: absolute;
    left: 0;
    top: 0;
    width: 60%;
    height: 88%;
    object-fit: cover;
    border-radius: var(--radius);
}
.testi-img-2 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 55%;
    height: 65%;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* ---- STATS SECTION ---- */
.stats-section {
    background: var(--green-light);
    padding: 98px 32px;
}
.stats-title {
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    color: var(--text);
    max-width: 520px;
    margin: 0 auto 48px;
    line-height: 1.35;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.stat-icon {
    width: 48px;
    height: 48px;
    color: var(--green-mid);
}
.stat-icon svg {
    width: 100%;
    height: 100%;
}
.stat-number {
    font-size: 38px;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
}
.stat-label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
    max-width: 160px;
}

/* ---- REVIEWS SECTION ---- */
.reviews-section {
    background: var(--blue-light);
    padding: 64px 0 114px;
}
.reviews-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
}
.reviews-grid::-webkit-scrollbar {
    display: none;
}
.review-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 0 0 280px;
    scroll-snap-align: start;
}
.review-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--text);
}
.review-stars {
    color: #f5a623;
    font-size: 14px;
    letter-spacing: 2px;
}
.review-text {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.55;
    flex: 1;
}
.review-verified {
    font-size: 11px;
    font-weight: 600;
    color: var(--green-mid);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 4px;
}
.verified-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    background: var(--green-mid);
    color: var(--white);
    border-radius: 50%;
    font-size: 9px;
}

/* ---- FOOTER ---- */
.footer {
    background: var(--green-dark);
    color: var(--white);
    padding: 56px 0 0;
}
.footer-top {
    display: flex;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-cols {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 40px;
    flex: 1;
}
.footer-col h4 {
    font-size: 18px;
    font-weight: 100;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 14px;
}
.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.footer-col a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    transition: color 0.15s;
}
.footer-col a:hover {
    color: var(--white);
}

.footer-right {
    flex-shrink: 0;
    width: 260px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.footer-newsletter-label {
    font-size: 18px;
    font-weight: 100;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 6px;
}
.footer-newsletter-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}
.footer-newsletter {
    display: flex;
    gap: 6px;
}
.footer-newsletter input {
    flex: 1;
    padding: 9px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 13px;
    font-family: var(--font);
    outline: none;
}
.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}
.footer-newsletter input:focus {
    background: rgba(255, 255, 255, 0.14);
}
.footer-newsletter-btn {
    background: var(--yellow-green);
    color: var(--green-dark);
    border: none;
    border-radius: 50px;
    width: 36px;
    height: 36px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.15s;
}
.footer-newsletter-btn:hover {
    opacity: 0.85;
}

.footer-contact-label {
    font-size: 18px;
    font-weight: 100;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 10px;
}
.footer-contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    padding: 9px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    transition: background 0.15s;
}
.footer-contact-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.footer-bottom {
    padding: 28px 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-social {
    display: flex;
    gap: 14px;
}
.footer-social a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.15s;
}
.footer-social a:hover {
    color: var(--white);
}
.footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    margin-left: auto;
}
.footer-logo-big {
    text-align: center;
    font-size: clamp(52px, 9vw, 110px);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.06);
    letter-spacing: -3px;
    line-height: 0.9;
    padding: 8px 0 32px;
    user-select: none;
    overflow: hidden;
}

/* ---- CHAT FAB ---- */
.chat-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    background: var(--white);
    border: none;
    border-radius: 50px;
    padding: 6px 14px 6px 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.chat-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.25);
}
.chat-fab img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonial-inner {
        grid-template-columns: 1fr;
    }
    .testimonial-right {
        height: 300px;
    }
    .featured-block {
        grid-template-columns: 1fr;
    }
    .footer-cols {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-top {
        flex-direction: column;
    }
    .footer-right {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding: 0 16px;
        gap: 12px;
    }
    .nav {
        display: none;
    }
    .hero {
        height: 68vh;
    }
    .hero-content {
        padding: 0 24px;
    }
    .hero-title {
        font-size: 38px;
    }
    .container {
        padding: 0 16px;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .mega-menu-inner {
        grid-template-columns: 1fr;
    }
    .mega-menu-right {
        grid-template-columns: repeat(3, 1fr);
    }
    .featured-products {
        display: none;
    }
}

/* ================================================
   ZOEKBALK IN HEADER
   Gesloten: alleen het zoekicoon zichtbaar
   Open: inputveld in de flow, vult ruimte tussen nav en iconen
   ================================================ */

.search-wrap {
  display: flex;
  align-items: center;
  flex: 1;                  /* vult de beschikbare ruimte op */
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}

/* Gesloten: formulier heeft geen breedte */
.search-form {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.88);
  border-radius: 50px;
  overflow: hidden;
  width: 0;
  opacity: 0;
  pointer-events: none;
  transition: width 0.35s ease, opacity 0.25s ease;
  flex-shrink: 0;
}

/* Open: vult de beschikbare ruimte */
.search-wrap.search-open .search-form {
  width: 100%;
  opacity: 1;
  pointer-events: auto;
  padding: 0 6px 0 18px;
}

/* Toggle icoon verbergen als open */
.search-wrap.search-open .search-toggle {
  display: none;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 0;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  color: var(--text);
  min-width: 0;
}
.search-input::placeholder { color: #aaa; }
.search-input.search-input-error { animation: shake 0.3s ease; }
@keyframes shake {
  0%,100% { transform: translateX(0); }
  25%      { transform: translateX(-5px); }
  75%      { transform: translateX(5px); }
}

.search-submit {
  background: none;
  border: none;
  padding: 8px 10px;
  color: var(--text-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: color 0.15s;
}
.search-submit:hover { color: var(--purple); }

.search-toggle {
  flex-shrink: 0;
}

/* ================================================
   HULP NODIG POPUP
   ================================================ */
.hulp-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 998;
}
.hulp-backdrop.open { display: block; }

.hulp-popup {
  position: fixed;
  bottom: 88px;
  right: 24px;
  z-index: 999;
  width: 320px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.hulp-popup.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.hulp-popup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 16px 12px;
  border-bottom: 1px solid var(--border);
}
.hulp-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.hulp-name {
  font-weight: 800;
  font-size: 15px;
  color: var(--text);
  line-height: 1.2;
}
.hulp-sub {
  font-size: 12px;
  color: var(--text-light);
}
.hulp-close {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-light);
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.15s;
}
.hulp-close:hover { color: var(--text); }

.hulp-options {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}
.hulp-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  text-decoration: none;
  color: var(--text);
  transition: background 0.12s;
  border-bottom: 1px solid var(--border);
}
.hulp-option:last-child { border-bottom: none; }
.hulp-option:hover { background: var(--bg); }

.hulp-option-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--bg);
  border-radius: 8px;
  color: var(--text);
}
.hulp-option-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.hulp-option-text strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.hulp-option-text small {
  font-size: 11px;
  color: var(--text-light);
}
.hulp-option-arrow {
  font-size: 14px;
  color: var(--text-light);
  flex-shrink: 0;
}

/* ================================================
   ZOEKRESULTATEN PAGINA
   ================================================ */
.search-results-section {
  padding: 50px 0 80px;
  min-height: 60vh;
}
.search-results-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.search-results-header em {
  font-style: italic;
  color: var(--purple);
}
.search-results-count {
  font-size: 14px;
  color: var(--text-light);
}
.search-page-form {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  max-width: 560px;
}
.search-page-input {
  flex: 1;
  padding: 12px 18px;
  border: 2px solid var(--border);
  border-radius: 50px;
  font-family: var(--font);
  font-size: 15px;
  outline: none;
  transition: border-color 0.15s;
}
.search-page-input:focus { border-color: var(--purple); }

.search-error {
  color: var(--red-accent);
  font-weight: 600;
  margin-bottom: 24px;
}
.search-empty {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 15px;
}
.search-empty a { color: var(--purple); font-weight: 600; }
.search-empty a:hover { text-decoration: underline; }

/* Grid op zoekresultaten pagina */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.product-brand-small {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

/* ================================================
   PAGE HEADER BLOK
   Gebruikt op alle pagina's behalve homepage
   ================================================ */
.page-header-block {
    background: var(--dark-blue-light);
    padding: 48px 0 40px;
    margin-top: -74px;          /* schuift onder de sticky header */
    padding-top: calc(74px + 40px); /* compenseert de negatieve margin */
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.breadcrumb-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-blue);
    opacity: 0.65;
    transition: opacity 0.15s;
}
.breadcrumb-link:hover { opacity: 1; }
.breadcrumb-sep {
    font-size: 13px;
    color: var(--dark-blue);
    opacity: 0.35;
}
.breadcrumb-current {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-blue);
}
.page-header-title {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 900;
    color: var(--dark-blue);
    line-height: 1.15;
    letter-spacing: -0.5px;
}

/* ================================================
   PRODUCTPAGINA
   ================================================ */

/* GRID */
.product-detail-section {
    padding: 56px 0 80px;
}
.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
    align-items: start;
    margin-bottom: 56px;
}

/* FOTO'S */
.product-detail-images {
    min-width: 0;
}
.product-detail-info {
    min-width: 0;
}
.product-main-img-wrap {
    position: relative;
    background: var(--bg);
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/5;
}
.product-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s ease;
}
.product-badge-lg {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 12px;
    padding: 5px 12px;
}
.product-thumbnails {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.product-thumb {
    width: 64px;
    height: 72px;
    border-radius: 8px;
    border: 2px solid var(--border);
    background: var(--bg);
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.15s;
    padding: 0;
    flex-shrink: 0;
}
.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-thumb.active,
.product-thumb:hover { border-color: var(--purple); }
.product-no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 14px;
}

/* PRODUCT INFO */
.product-detail-brand {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 6px;
}
.product-detail-name {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.product-detail-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.price-old {
    font-size: 16px;
    color: var(--text-light);
    text-decoration: line-through;
}
.price-from {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
}
.price-from strong { color: var(--green); }
.price-qty {
    font-size: 13px;
    color: var(--text-light);
}
.product-detail-short-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

/* OPTIES */
.product-option-group { margin-bottom: 24px; }
.product-option-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.product-option-label small { font-weight: 400; color: var(--text-light); }

/* KLEUR PICKER */
.color-picker { display: flex; gap: 8px; flex-wrap: wrap; }
.color-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: transform 0.15s, border-color 0.15s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.color-btn:hover  { transform: scale(1.15); }
.color-btn.active { border-color: var(--purple); transform: scale(1.15); }

/* BESCHIKBARE MATEN — badges */
.size-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.size-badge {
    padding: 6px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}
.size-info-note {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 8px;
}

/* LOGO POSITIE TAGS */
.logo-pos-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.logo-pos-tag {
    padding: 5px 12px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
}

/* CTA */
.product-detail-cta { margin-top: 28px; }
.btn-personaliseren {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--dark-blue);
    color: var(--white);
    font-family: var(--font);
    font-size: 16px;
    font-weight: 700;
    padding: 15px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, transform 0.15s;
    width: auto;
}
.btn-personaliseren:hover { background: #1e3a5f; transform: translateY(-1px); }
.cta-sub {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 10px;
}

/* PRODUCT INFO BLOK */
.product-info-block {
    background: var(--green-light);
    border-radius: 16px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}
.product-info-section {}
.product-info-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* SPEC TABEL */
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table td {
    padding: 10px 16px;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}
.spec-table td:first-child {
    font-weight: 700;
    color: var(--text);
    width: 180px;
    white-space: nowrap;
}
.spec-table td:last-child { color: var(--text-light); }

/* MATERIALEN */
.materials-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.materials-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
}
.material-pct {
    font-size: 12px;
    background: var(--bg);
    padding: 2px 8px;
    border-radius: 50px;
    color: var(--text-light);
}

/* VERGELIJKBARE JASSEN */
.similar-section {
    background: var(--bg);
    padding: 56px 0 80px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ================================================
   PERSONALISEREN
   ================================================ */
.personaliseer-section {
    padding: 56px 0 80px;
}

/* GEEN COÖRDINATEN */
.personaliseer-no-coords {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: var(--text-light);
}
.personaliseer-no-coords svg { color: var(--border); }
.personaliseer-no-coords h2 { font-size: 22px; font-weight: 800; color: var(--text); }
.personaliseer-no-coords p  { font-size: 15px; line-height: 1.6; }
.personaliseer-no-coords-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    border-radius: 50px;
    border: 2px solid var(--border);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    transition: border-color 0.15s;
}
.btn-back:hover { border-color: var(--dark-blue); }

/* GRID */
.personaliseer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

/* PREVIEW LINKS */
.personaliseer-preview { position: sticky; top: 90px; }
.preview-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border);
    margin-bottom: 16px;
}
.preview-tab {
    padding: 10px 20px;
    background: none;
    border: none;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color 0.15s, border-color 0.15s;
}
.preview-tab.active { color: var(--dark-blue); border-bottom-color: var(--dark-blue); }
.preview-canvas-wrap {
    position: relative;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    text-align: center;
    padding: 34px 0;
}
.preview-canvas-wrap.hidden { display: none; }
.preview-jas-img {
    max-width: 100%;
    max-height: 420px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
.preview-canvas {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}
.preview-hint {
    font-size: 11px;
    color: var(--text-light);
    text-align: center;
    margin-top: 10px;
    font-style: italic;
}
.preview-no-img {
    text-align: center;
    color: var(--text-light);
    font-size: 13px;
    padding: 16px;
}

/* FORMULIER RECHTS */
.personaliseer-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* PRODUCT INFO BALK */
.personaliseer-product-info {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg);
    border-radius: 12px;
    padding: 12px;
}
.personaliseer-product-img {
    width: 56px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--border);
}
.personaliseer-product-img img { width: 100%; height: 100%; object-fit: cover; }
.personaliseer-brand { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); }
.personaliseer-name  { font-size: 15px; font-weight: 700; color: var(--text); margin: 2px 0 4px; }
.personaliseer-color {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-light);
}
.personaliseer-color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
    flex-shrink: 0;
}

/* STAPPEN */
.personaliseer-stap {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 24px;
}
.personaliseer-stap-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.stap-nr {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--dark-blue);
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
}
.personaliseer-stap-sub {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 16px;
    margin-left: 36px;
}

/* MAAT QTY GRID */
.size-qty-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}
.size-qty-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.size-qty-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    width: 40px;
    flex-shrink: 0;
}
.size-qty-picker {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}
.size-qty-btn {
    background: var(--bg);
    border: none;
    padding: 7px 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    color: var(--text);
    line-height: 1;
    transition: background 0.15s;
    font-family: var(--font);
}
.size-qty-btn:hover { background: var(--border); }
.size-qty-input {
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    width: 48px;
    text-align: center;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    padding: 7px 0;
    outline: none;
    -moz-appearance: textfield;
}
.size-qty-input::-webkit-outer-spin-button,
.size-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.size-qty-total {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    padding-top: 10px;
    border-top: 1px solid var(--border);
}
.size-qty-min-warning {
    font-size: 12px;
    color: #c0392b;
    font-weight: 600;
}

/* LOGOPLAATSEN */
.logo-positions-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.logo-pos-item {
    border: 1.5px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.15s;
}
.logo-pos-item:has(.logo-pos-check:checked) {
    border-color: var(--dark-blue);
}
.logo-pos-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    cursor: pointer;
    background: var(--bg);
}
.logo-pos-check { width: 16px; height: 16px; accent-color: var(--dark-blue); flex-shrink: 0; }
.logo-pos-name  { font-size: 14px; font-weight: 700; color: var(--text); flex: 1; }
.logo-pos-side-badge {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-light);
    background: var(--white);
    border: 1px solid var(--border);
    padding: 2px 8px;
    border-radius: 50px;
}

/* UPLOAD AREA */
.logo-pos-upload {
    padding: 14px;
    border-top: 1px solid var(--border);
    background: var(--white);
}
.logo-upload-label { display: block; cursor: pointer; }
.logo-upload-area {
    border: 2px dashed var(--border);
    border-radius: 10px;
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    transition: border-color 0.15s, background 0.15s;
}
.logo-upload-area:hover {
    border-color: var(--dark-blue);
    background: var(--bg);
}
.logo-upload-area p     { font-size: 14px; font-weight: 600; color: var(--text); margin: 0; }
.logo-upload-area small { font-size: 11px; }

/* LOGO PREVIEW */
.logo-preview-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}
.logo-preview-wrap img {
    max-height: 60px;
    max-width: 120px;
    object-fit: contain;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: var(--bg);
    padding: 4px;
}
.logo-remove-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #c0392b;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    font-family: var(--font);
    transition: background 0.15s;
}
.logo-remove-btn:hover { background: #fde8e8; }
.pdf-notice {
    font-size: 12px;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

/* CTA */
.personaliseer-cta { display: flex; flex-direction: column; gap: 8px; }
.btn-toevoegen {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--dark-blue);
    color: var(--white);
    font-family: var(--font);
    font-size: 16px;
    font-weight: 700;
    padding: 15px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: background 0.15s, transform 0.15s, opacity 0.15s;
    width: 100%;
}
.btn-toevoegen:hover:not(:disabled) { background: #1e3a5f; transform: translateY(-1px); }
.btn-toevoegen:disabled { opacity: 0.4; cursor: not-allowed; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .personaliseer-grid {
        grid-template-columns: 1fr;
    }
    .personaliseer-preview { position: static; }
}

/* ================================================
   ORDER FLOW
   ================================================ */
.order-section { padding: 48px 0 80px; }

/* STAP INDICATOR */
.order-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 48px;
}
.order-step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
}
.order-step.active { color: var(--dark-blue); }
.order-step.done   { color: var(--green-mid); }
.order-step-nr {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
    background: var(--white);
}
.order-step.active .order-step-nr {
    border-color: var(--dark-blue);
    background: var(--dark-blue);
    color: var(--white);
}
.order-step.done .order-step-nr {
    border-color: var(--green-mid);
    background: var(--green-mid);
    color: var(--white);
}
.order-step-line {
    flex: 1;
    height: 2px;
    background: var(--border);
    min-width: 40px;
    max-width: 80px;
}
.order-step-line.done { background: var(--green-mid); }

/* GRID */
.order-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    align-items: start;
}

/* ITEM CARDS */
.order-items { display: flex; flex-direction: column; gap: 16px; }
.order-item-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
}
.order-item-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-bottom: 1px solid var(--border);
}
.order-item-img {
    width: 64px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    background: var(--bg);
}
.order-item-meta { flex: 1; min-width: 0; }
.order-item-name  { font-size: 15px; font-weight: 700; color: var(--text); }
.order-item-brand { font-size: 12px; color: var(--text-light); margin: 2px 0; }
.order-item-color {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-light);
}
.order-color-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
    flex-shrink: 0;
}
.order-remove-btn {
    color: var(--text-light);
    transition: color 0.15s;
    padding: 8px;
    flex-shrink: 0;
}
.order-remove-btn:hover { color: #c0392b; }
.order-item-price-col { text-align: right; flex-shrink: 0; }
.order-item-total { font-size: 16px; font-weight: 800; color: var(--text); }
.order-item-qty   { font-size: 12px; color: var(--text-light); }

.order-item-section {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
}
.order-item-section:last-child { border-bottom: none; }
.order-item-section-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 8px;
}

/* MATEN */
.order-sizes { display: flex; gap: 6px; flex-wrap: wrap; }
.order-size-badge {
    padding: 4px 10px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 12px;
    color: var(--text-light);
}

/* LOGOS */
.order-logos { display: flex; flex-direction: column; gap: 6px; }
.order-logo-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}
.order-logo-name  { font-weight: 600; color: var(--text); flex-shrink: 0; }
.order-logo-file  { flex: 1; color: var(--text-light); font-size: 12px; display: flex; align-items: center; gap: 4px; }
.order-logo-price { flex-shrink: 0; font-size: 12px; color: var(--text-light); }

/* SUBTOTAAL */
.order-item-subtotal, .order-subtotal {
    padding: 12px 16px;
    background: var(--dark-blue-light);
    border-top: 1px solid var(--border);
}
.order-subtotal-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-light);
    padding: 3px 0;
}
.order-subtotal-total {
    font-weight: 700;
    color: var(--text);
    border-top: 1px solid var(--border);
    margin-top: 6px;
    padding-top: 6px;
}

/* TOEVOEGEN KNOP */
.order-add-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 2px dashed var(--border);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    text-decoration: none;
    background: var(--green-light);
    transition: border-color 0.15s, color 0.15s;
}
.order-add-btn:hover { border-color: var(--dark-blue); color: var(--dark-blue); }

/* SUMMARY */
.order-summary-card {
    background: var(--dark-blue-light);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 24px;
    position: sticky;
    top: 90px;
}
.order-summary-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.order-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-light);
    padding: 5px 0;
}
.order-summary-total {
    font-weight: 700;
    color: var(--text);
    border-top: 1px solid var(--border);
    margin-top: 8px;
    padding-top: 8px;
    font-size: 15px;
}
.order-summary-btw  { color: var(--text-light); font-size: 13px; }
.order-summary-incl { font-weight: 800; color: var(--dark-blue); font-size: 16px; border-top: 1px solid var(--border); margin-top: 6px; padding-top: 6px; }
.order-summary-sub  { font-size: 11px; color: var(--text-light); margin: 8px 0 16px; }

.btn-order-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 13px 28px;
    background: var(--dark-blue);
    color: var(--white);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    width: auto;
    transition: background 0.15s;
}
.btn-order-next:hover { background: #1e3a5f; }

/* ERRORS */
.order-errors {
    background: #fee2e2;
    color: #b91c1c;
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600;
}

/* GEGEVENS FORM */
.order-form-wrap { }
.order-form-fullwidth { max-width: 100%; }
.order-form-section {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 24px;
}
.order-form-section-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.order-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.order-form-row:last-child { margin-bottom: 0; }
.order-form-row-straat { grid-template-columns: 2fr 1fr; }
.order-form-group { display: flex; flex-direction: column; gap: 5px; }
.order-form-group label { font-size: 13px; font-weight: 600; color: var(--text); }
.order-form-group input,
.order-form-group textarea {
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: var(--font);
    font-size: 14px;
    outline: none;
    transition: border-color 0.15s;
}
.order-form-group input:focus,
.order-form-group textarea:focus { border-color: var(--dark-blue); }
.order-form-group textarea { resize: vertical; min-height: 80px; }
.order-form-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.order-form-actions .btn-back,
.order-form-actions .btn-order-next {
    width: auto;
    display: inline-flex;
}

/* BEVESTIGEN */
.order-gegevens-preview {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.order-gegevens-block { font-size: 14px; color: var(--text-light); line-height: 1.7; }
.order-edit-link {
    font-size: 13px;
    color: var(--dark-blue);
    font-weight: 600;
    grid-column: 1 / -1;
}
.order-akkoord-form { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.order-akkoord-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text);
    line-height: 1.5;
    cursor: pointer;
    white-space: nowrap;
    flex-wrap: wrap;
}
.order-akkoord-label input { width: 16px; height: 16px; accent-color: var(--dark-blue); flex-shrink: 0; }
.order-akkoord-label a { color: var(--dark-blue); font-weight: 600; }
.order-factuur-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-light);
}
.btn-order-definitief {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    background: var(--green-mid);
    color: var(--white);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: background 0.15s;
}
.btn-order-definitief:hover { background: #1e4a20; }

/* BEDANKT */
.bedankt-section { padding: 80px 0; }
.bedankt-card {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.bedankt-icon { color: var(--green-mid); }
.bedankt-card h2 { font-size: 28px; font-weight: 900; color: var(--text); }
.bedankt-order-nr { font-size: 14px; color: var(--text-light); }
.bedankt-card p { font-size: 15px; color: var(--text-light); line-height: 1.6; max-width: 440px; }
.bedankt-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .order-grid { grid-template-columns: 1fr; }
    .order-form-row { grid-template-columns: 1fr; }
    .order-form-row-straat { grid-template-columns: 1fr; }
    .order-gegevens-preview { grid-template-columns: 1fr; }
    .order-summary-card { position: static; }
}

/* Volle breedte order form */
.order-form-fullwidth { max-width: 100%; }
.order-form-fullwidth .order-form-section { max-width: 100%; }

    color: var(--text);
    line-height: 1.5;
    cursor: pointer;
}

/* ================================================
   ORDER GEGEVENS — 2/3 + 1/3 LAYOUT
   ================================================ */
.order-gegevens-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}
.order-gegevens-form-col { min-width: 0; }
.order-gegevens-trust-col { min-width: 0; }

/* TRUST CARD */
.trust-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 24px;
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.trust-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--dark-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--dark-blue);
}
.trust-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 3px;
}
.trust-sub {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
}
.trust-esther {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.trust-esther-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.trust-esther-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}
.trust-esther-sub {
    font-size: 12px;
    color: var(--text-light);
    margin: 2px 0 6px;
}
.trust-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 700;
    color: #25D366;
    text-decoration: none;
}
.trust-whatsapp:hover { text-decoration: underline; }

@media (max-width: 900px) {
    .order-gegevens-layout {
        grid-template-columns: 1fr;
    }
    .trust-card { position: static; }
}

/* Volledige breedte knop in summary card */
.order-summary-card .btn-order-next { width: 100%; margin-top: 16px; }

/* ================================================
   ORDER OVERZICHT — ESTHER PERSOONLIJK
   ================================================ */
.order-size-badge-colored {
    background: var(--dark-blue-light);
    border-color: transparent;
    color: var(--dark-blue);
}

.order-esther-quote {
    display: flex;
    align-items: center;
    gap: 12px;
}
.order-esther-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.order-esther-bubble {
    background: var(--white);
    border-radius: 14px 14px 14px 4px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-blue);
    line-height: 1.4;
    flex: 1;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.order-esther-sign {
    font-size: 11px;
    color: var(--text-light);
    text-align: center;
    margin-top: 10px;
    font-style: italic;
}

/* ================================================
   SHOP PAGINA
   ================================================ */
.shop-section { padding: 40px 0 80px; }

.shop-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    align-items: start;
}

/* SIDEBAR */
.shop-sidebar {
    position: sticky;
    top: 90px;
    background: var(--green-light);
    border-radius: 16px;
    padding: 24px;
}

.shop-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.shop-sidebar-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
}
.shop-filter-reset {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    text-decoration: underline;
}
.shop-filter-reset:hover { color: var(--dark-blue); }

/* FILTER GROEP */
.filter-group {
    border-bottom: none;
}
.filter-group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 0;
    background: none;
    border: none;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    text-align: left;
    gap: 8px;
}
.filter-group-header:hover { color: var(--dark-blue); }
.filter-active-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--pink);
    flex-shrink: 0;
    margin-left: auto;
}
.filter-chevron {
    flex-shrink: 0;
    transition: transform 0.2s;
}
.filter-group.is-open .filter-chevron { transform: rotate(180deg); }

.filter-group-body {
    display: none;
    padding-bottom: 14px;
    flex-direction: column;
    gap: 6px;
}
.filter-group.is-open .filter-group-body { display: flex; }

.filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text);
    cursor: pointer;
    padding: 3px 0;
}
.filter-option input[type="radio"] {
    accent-color: var(--dark-blue);
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}
.filter-option:hover { color: var(--dark-blue); }
.filter-clear-one {
    font-size: 11px;
    color: var(--text-light);
    text-decoration: underline;
    margin-top: 4px;
    cursor: pointer;
}
.filter-clear-one:hover { color: var(--dark-blue); }

/* KLEUR FILTER */
.filter-color-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.filter-color-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text);
}
.filter-color-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.filter-color-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid transparent;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    transition: border-color 0.15s, transform 0.15s;
}
.filter-color-option input:checked + .filter-color-dot {
    border-color: var(--dark-blue);
    transform: scale(1.15);
}
.filter-color-name { font-size: 13px; }

/* PRIJS FILTER */
.filter-price-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.filter-price-field label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-light);
    display: block;
    margin-bottom: 4px;
}
.filter-price-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
}
.filter-price-wrap span {
    padding: 0 8px;
    font-size: 13px;
    color: var(--text-light);
    border-right: 1px solid var(--border);
}
.filter-price-wrap input {
    border: none;
    padding: 7px 8px;
    font-family: var(--font);
    font-size: 13px;
    width: 100%;
    outline: none;
}

/* TOOLBAR */
.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 10px;
}
.shop-count {
    font-size: 14px;
    color: var(--text-light);
}
.shop-sort {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
}
.shop-sort select {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 6px 10px;
    font-family: var(--font);
    font-size: 13px;
    outline: none;
    cursor: pointer;
    background: var(--white);
}

/* ACTIEVE FILTER TAGS */
.shop-active-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.active-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    background: var(--dark-blue-light);
    color: var(--dark-blue);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s;
}
.active-filter-tag:hover { background: #ddd5ff; }

/* PRODUCT GRID */
.shop-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* LEEG */
.shop-empty {
    text-align: center;
    padding: 60px 0;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* PAGINERING */
.shop-pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}
.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    transition: border-color 0.15s, background 0.15s;
}
.page-btn:hover  { border-color: var(--dark-blue); color: var(--dark-blue); }
.page-btn.active { background: var(--dark-blue); color: var(--white); border-color: var(--dark-blue); }

/* RESPONSIVE */
@media (max-width: 900px) {
    .shop-layout { grid-template-columns: 1fr; }
    .shop-sidebar { position: static; }
    .shop-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .shop-grid { grid-template-columns: 1fr; }
}

/* ================================================
   MERKEN PAGINA
   ================================================ */

/* INTRO */
.merken-intro-section {
    background: var(--green-light);
    padding: 64px 0 0;
    overflow: visible;
}
.merken-intro-block {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 64px;
    align-items: end;
}
.merken-intro-img-col {
    margin-bottom: -80px;
}
.merken-intro-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}
.merken-intro-text-col {
    display: flex;
    align-items: center;
    padding-bottom: 64px;
}
.merken-intro-text h2 {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 900;
    color: var(--dark-blue);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.merken-intro-text p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--dark-blue);
    margin-bottom: 14px;
}
.merken-intro-sign {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark-blue);
    font-style: italic;
    margin-top: 24px !important;
}

/* GRID SECTIE */
.merken-section { padding: 144px 0 80px; }

/* GRID 3: groot links (2 kolommen), twee klein rechts */
.merken-grid { display: grid; gap: 20px; margin-bottom: 20px; }

.merken-grid-3 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
}
.merken-grid-3 .merk-card-large {
    grid-row: 1 / 3;
}
.merken-grid-3 .merk-card-small:nth-child(2) { grid-column: 2; grid-row: 1; }
.merken-grid-3 .merk-card-small:nth-child(3) { grid-column: 2; grid-row: 2; }

/* GRID 4: twee klein links, groot rechts */
.merken-grid-4 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
}
.merken-grid-4 .merk-card-small:nth-child(1) { grid-column: 1; grid-row: 1; }
.merken-grid-4 .merk-card-small:nth-child(2) { grid-column: 1; grid-row: 2; }
.merken-grid-4 .merk-card-large {
    grid-column: 2;
    grid-row: 1 / 3;
}

/* REST: gewone kleine kaarten */
.merken-grid-rest {
    grid-template-columns: repeat(3, 1fr);
}

/* MERK KAART */
.merk-card {
    display: block;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.merk-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: var(--dark-blue);
}

/* Grote kaart met achtergrondafbeelding */
.merk-card-large {
    border: none;
    background-size: cover;
    background-position: center;
    position: relative;
}
.merk-card-large::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0.1) 100%);
    border-radius: 16px;
    pointer-events: none;
}
.merk-card-large .merk-card-inner {
    position: relative;
    z-index: 1;
}
.merk-card-large .merk-card-logo img { filter: brightness(0) invert(1); }
.merk-card-large .merk-card-name-fallback { color: var(--white); }
.merk-card-large .merk-card-tagline { color: rgba(255,255,255,0.8); }
.merk-card-large .merk-card-desc { color: rgba(255,255,255,0.85); }
.merk-card-large .merk-card-count { color: rgba(255,255,255,0.7); }
.merk-card-large .merk-card-cta { color: var(--white); }
.merk-card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 32px;
    gap: 16px;
}
.merk-card-large .merk-card-inner {
    padding: 48px;
    justify-content: space-between;
    min-height: 320px;
}
.merk-card-small .merk-card-inner {
    min-height: 160px;
    justify-content: space-between;
}

/* LOGO */
.merk-card-logo {
    height: 48px;
    display: flex;
    align-items: center;
}
.merk-card-logo img {
    max-height: 40px;
    max-width: 140px;
    object-fit: contain;
    object-position: left;
}
.merk-card-name-fallback {
    font-size: 22px;
    font-weight: 900;
    color: var(--dark-blue);
    letter-spacing: -0.5px;
}

/* KAART BODY */
.merk-card-tagline {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: none;
}
.merk-card-large .merk-card-tagline {
    font-size: 15px;
}
.merk-card-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-light);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.merk-card-large .merk-card-desc {
    font-size: 15px;
    -webkit-line-clamp: 5;
}
.merk-card-small .merk-card-desc { display: none; }

.merk-card-count {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
}
.merk-card-cta {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-top: auto;
    display: block;
}
.merk-card:hover .merk-card-cta { text-decoration: underline; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .merken-intro-block { grid-template-columns: 1fr; gap: 32px; }
    .merken-intro-img-col { margin-bottom: 0; }
    .merken-intro-img { border-radius: 16px; aspect-ratio: 4/3; }
    .merken-grid-3,
    .merken-grid-4 { grid-template-columns: 1fr; }
    .merken-grid-3 .merk-card-large,
    .merken-grid-4 .merk-card-large { grid-row: auto; grid-column: auto; }
    .merken-grid-3 .merk-card-small:nth-child(2),
    .merken-grid-3 .merk-card-small:nth-child(3),
    .merken-grid-4 .merk-card-small:nth-child(1),
    .merken-grid-4 .merk-card-small:nth-child(2) { grid-column: auto; grid-row: auto; }
    .merken-grid-rest { grid-template-columns: 1fr 1fr; }
    .merk-card-small .merk-card-desc { display: block; -webkit-line-clamp: 2; }
}

/* ================================================
   INDIVIDUELE MERKPAGINA
   ================================================ */
.merk-intro-section { padding: 56px 0; }
.merk-intro-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: start;
}
.merk-intro-logo { max-height: 60px; max-width: 200px; object-fit: contain; }
.merk-intro-name-large { font-size: 36px; font-weight: 900; color: var(--dark-blue); }
.merk-intro-tagline {
    font-size: 15px;
    color: var(--text-light);
    margin-top: 10px;
    font-style: italic;
}
.merk-intro-story {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.merk-products-section {
    padding: 48px 0;
    background: var(--bg);
}
.section-sub {
    font-size: 14px;
    color: var(--text-light);
}

.merk-cta-section { padding: 56px 0; }
.merk-cta-block {
    background: var(--dark-blue-light);
    border-radius: 20px;
    padding: 48px;
    display: flex;
    align-items: center;
    gap: 32px;
}
.merk-cta-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid var(--white);
}
.merk-cta-block h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 8px;
}
.merk-cta-block p {
    font-size: 15px;
    color: var(--dark-blue);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .merk-intro-grid { grid-template-columns: 1fr; gap: 32px; }
    .merk-cta-block { flex-direction: column; text-align: center; }
}

/* LEVERINGSDATUM */
.delivery-estimate {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
    padding: 8px 14px;
    background: var(--green-light);
    border-radius: 50px;
    font-size: 13px;
    color: var(--dark-blue);
}
.delivery-estimate svg { flex-shrink: 0; color: var(--dark-blue); }
.delivery-estimate strong { font-weight: 800; }

/* ================================================
   AUTH PAGINA'S (login / registreren)
   ================================================ */
.auth-section { padding: 60px 0 80px; }

.auth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}
.auth-card {
    background: var(--green-light);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
}
.auth-card-register {
    background: var(--dark-blue-light);
}
.auth-card-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 8px;
}
.auth-card-sub {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}
.auth-error {
    background: #FEE2E2;
    color: #991B1B;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}
.auth-form { display: flex; flex-direction: column; gap: 14px; }
.auth-form-group { display: flex; flex-direction: column; gap: 6px; }
.auth-form-group label { font-size: 13px; font-weight: 600; color: var(--text); }
.auth-form-group input {
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    font-family: var(--font);
    outline: none;
    transition: border-color 0.15s;
}
.auth-form-group input:focus { border-color: var(--dark-blue); }

.btn-auth-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    background: var(--dark-blue);
    color: var(--white);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s;
    margin-top: 4px;
}
.btn-auth-primary:hover { background: #1e3a5f; }

.btn-auth-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    background: var(--dark-blue);
    color: var(--white);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.15s;
    margin-top: auto;
    align-self: flex-start;
}
.btn-auth-secondary:hover { background: #1e3a5f; }

.auth-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 0 auto;
    padding: 0;
    flex-grow: 1;
}
.auth-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--dark-blue);
    font-weight: 500;
}
.auth-benefits svg { color: var(--dark-blue); flex-shrink: 0; }

.auth-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
    gap: 8px;
    color: var(--text-light);
    font-size: 13px;
    font-weight: 600;
    min-height: 200px;
}
.auth-divider::before,
.auth-divider::after {
    content: '';
    width: 1px;
    flex: 1;
    background: var(--border);
}

@media (max-width: 700px) {
    .auth-grid { grid-template-columns: 1fr; }
    .auth-divider { flex-direction: row; min-height: auto; padding: 16px 0; }
    .auth-divider::before, .auth-divider::after { width: auto; height: 1px; flex: 1; }
}

/* Account knop actief (ingelogd) */
.icon-btn-active svg { stroke: var(--dark-blue); }

/* ================================================
   ACCOUNT PAGINA
   ================================================ */
.account-section { padding: 40px 0 80px; }

.account-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: start;
}

/* SIDEBAR */
.account-sidebar {
    background: var(--green-light);
    border-radius: 16px;
    padding: 24px;
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.account-user-block {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.account-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--dark-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}
.account-user-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-blue);
}
.account-user-company {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 2px;
}
.account-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.account-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.account-nav-link:hover { background: rgba(0,0,0,0.04); color: var(--dark-blue); }
.account-nav-link.active { background: var(--white); color: var(--dark-blue); }
.account-nav-link svg { flex-shrink: 0; }

.account-sidebar-footer {
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
}
.account-logout {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    text-decoration: underline;
}
.account-logout:hover { color: var(--dark-blue); }

/* CONTENT */
.account-content { min-width: 0; }

.account-block {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
}
.account-block-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 24px;
}
.account-sub-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin: 24px 0 14px;
}
.account-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.account-flash {
    background: var(--green-light);
    color: var(--dark-blue);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}
.account-flash-error {
    background: #FEE2E2;
    color: #991B1B;
}

/* BESTELLINGEN TABEL */
.account-orders-table { overflow-x: auto; }
.account-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.account-table th {
    text-align: left;
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-light);
    border-bottom: 1.5px solid var(--border);
}
.account-table td {
    padding: 14px 12px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    vertical-align: middle;
}
.account-table tr:last-child td { border-bottom: none; }
.account-table tr:hover td { background: var(--bg); }
.account-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-blue);
    text-decoration: none;
}
.account-link:hover { text-decoration: underline; }

/* STATUS BADGES OP ACCOUNT */
.order-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}
.status-nieuw          { background: #DBEAFE; color: #1D4ED8; }
.status-geaccepteerd   { background: #DCFCE7; color: #166534; }
.status-in_behandeling { background: #FEF9C3; color: #92400E; }
.status-gereed         { background: #F0FDF4; color: #15803D; }
.status-verzonden      { background: #DCFCE7; color: #166534; }
.status-geleverd       { background: #F0FDF4; color: #15803D; }
.status-geannuleerd    { background: #FEE2E2; color: #991B1B; }

/* LEEG STAAT */
.account-empty {
    text-align: center;
    padding: 48px 0;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* RESPONSIVE */
@media (max-width: 860px) {
    .account-layout { grid-template-columns: 1fr; }
    .account-sidebar { position: static; }
    .account-form-grid { grid-template-columns: 1fr; }
}

/* REGISTRATIE SUCCESS BALK */
.registration-success {
    background: var(--green-light);
    padding: 16px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-blue);
}
.registration-success .container {
    display: flex;
    align-items: center;
    gap: 10px;
}
.registration-success svg { flex-shrink: 0; }
