/* Focaccino - Italian Streetfood - Black & White Minimalist Style with Patterns */
:root {
    --color-black: #000000;
    --color-black-soft: #1a1a1a;
    --color-surface: #FFFFFF;
    --color-surface-light: #F5F5F5;
    --color-primary: #000000;
    --color-primary-dark: #000000;
    --color-accent: #2d5016;
    --color-accent-light: #4a7c2a;
    --color-accent-soft: #e8f5e3;
    --color-white: #FFFFFF;
    --color-text: #000000;
    --color-text-muted: #666666;
    --color-text-light: #999999;
    --color-pattern-green: #2d5016;
    --color-pattern-beige: #f5f0e8;

    --gradient-primary: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    --gradient-light: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
    --gradient-warm: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-warm: 0 4px 20px rgba(0, 0, 0, 0.12);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Geen scroll-behavior: smooth op het document — op mobiel vecht dat met touch-momentum
   (omhoog scrollen vast, tegengestelde richting hapert). Ankers/knoppen: desnoods JS. */
html {
    scroll-behavior: auto;
}

body {
    background-color: var(--color-white);
    color: var(--color-text);
    font-family: var(--font-primary);
    line-height: 1.7;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    z-index: 0;
}

/* body::before removed - green pattern icons removed */

.section {
    overflow-x: hidden;
}

/* Mobiel: geen touch-action: pan-x op horizontale strips — dan blokkeert een swipe
   die op een afbeelding begint verticale page-scroll (alleen “wit” scrollt mee). */
@media (max-width: 768px) {
    html {
        scroll-behavior: auto;
    }
    /* Secties geen eigen overflow-x: spec zet overflow-y dan op auto → extra scrollport
       en traagere eerste swipe bij tegenrichting. Horizontaal afkappen doet html. */
    .section {
        overflow-x: visible;
        overflow-y: visible;
    }
    .category-nav-wrapper {
        overscroll-behavior-x: contain;
        overscroll-behavior-y: auto;
    }
    .category-showcase-scroll {
        overscroll-behavior-x: contain;
        overscroll-behavior-y: auto;
        scroll-snap-type: x proximity;
    }
    .reviews-carousel {
        overscroll-behavior-x: contain;
        overscroll-behavior-y: auto;
        scroll-snap-type: x proximity;
    }

    /* Voorkomt dat Safari/Chrome “image drag” de eerste verticale scroll vangt */
    img {
        -webkit-user-drag: none;
    }
}

/* Momenten van vreugde: sectie mag niet horizontaal clippen/containen — anders
   vangen touch-events op de video-strip verticale page-scroll op mobiel. */
.testimonials-video-section.section {
    overflow-x: visible;
    overflow-y: visible;
}

/* Override for menu section to show shadows */
#menu.section {
    overflow-x: visible !important;
    overflow-y: visible !important;
    overflow: visible !important;
}

#menu .container {
    overflow-x: visible !important;
    overflow-y: visible !important;
    overflow: visible !important;
}

#menu.section {
    overflow-x: visible;
    overflow-y: visible;
    overflow: visible;
}

#menu .container {
    overflow: visible;
}

#menu .container.text-center {
    overflow: visible;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.text-primary {
    color: var(--color-primary);
}

.bg-surface {
    background-color: var(--color-surface);
    /* Vloeiende overgang van story section */
    position: relative;
}

/* Vloeiende overgang tussen story en menu */
.story-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, var(--color-white) 0%, var(--color-surface-light) 100%);
    pointer-events: none;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text);
    letter-spacing: -0.5px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-pattern-green) 0%, transparent 100%);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
    font-size: 0.85rem;
    font-family: var(--font-primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 0;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-black);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 80, 22, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--color-black-soft);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-black);
    color: var(--color-black);
}

.btn-outline:hover {
    background: var(--color-black);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

/* Header/Nav Styles (Global) - Modern Brunch Café */
.navbar {
    padding: 20px 0;
    background-color: #ffffff;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    margin-bottom: 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: padding 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    left: 0;
    right: 0;
    will-change: transform;
    transform: translateZ(0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    padding: 15px 0;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Category Navigation Bar - Premium Style */
.category-nav {
    background-color: #ffffff;
    border-top: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: sticky;
    top: var(--desktop-navbar-height, 72px);
    z-index: 998;
    padding: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    line-height: 0 !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}

@media (max-width: 768px) {
    /* Vaste hoogte: .scrolled wijzigt dan niet de stack → geen layout-trip */
    .navbar,
    .navbar.scrolled {
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .navbar {
        transition: background-color 0.2s ease, box-shadow 0.2s ease;
    }
}

.category-nav .container {
    padding: 0 50px 0 20px !important;
    margin: 0 !important;
    line-height: 0 !important;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: visible;
}

/* On mobile, add extra padding for indicator */
@media (max-width: 768px) {
    .category-nav .container {
        padding-right: 50px !important;
    }
}

.category-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 !important;
    margin: 0 !important;
    line-height: normal;
    min-height: 48px;
    scroll-padding: 0 50px;
    scroll-behavior: smooth;
}

/* On mobile, add padding to prevent button from overlapping links */
@media (max-width: 768px) {
    .category-nav-wrapper {
        padding-right: 50px !important;
    }
}

/* On mobile, add padding to prevent indicator from overlapping links */
@media (max-width: 768px) {
    .category-nav-wrapper {
        padding-right: 45px !important;
    }
}

.category-nav-wrapper::-webkit-scrollbar {
    display: none;
}

/* Desktop: Allow scrolling if content overflows */
@media (min-width: 769px) {
    .category-nav .container {
        padding: 0 50px !important;
    }

    .category-nav-wrapper {
        /* Allow scrolling on desktop too, but only if content overflows */
        overflow-x: auto !important;
        justify-content: center;
        padding-right: 0 !important;
        width: 100%;
        flex-wrap: nowrap;
        will-change: auto;
    }
    
    /* Make category links maintain their natural width */
    .category-nav-wrapper .category-link {
        flex: 0 0 auto;
        justify-content: center;
        text-align: center;
        min-width: fit-content;
        white-space: nowrap;
    }
    
    /* Show scroll buttons on desktop if scrollable */
    .category-nav-scroll-btn.hidden {
        display: none;
    }
    
    .category-nav-scroll-btn:not(.hidden) {
        display: flex;
    }
}

.category-nav-wrapper::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 30%, rgba(255, 255, 255, 0.7) 60%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-nav-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100px;
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 30%, rgba(255, 255, 255, 0.7) 60%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Show gradient fade when scrollable */
.category-nav-wrapper.scrollable-right::after {
    opacity: 1;
}

.category-nav-wrapper.scrollable-left::before {
    opacity: 1;
}

/* Webkit scrollbar styling is now above */

.category-link {
    display: inline-flex;
    align-items: center;
    padding: 14px 24px;
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    font-family: var(--font-primary);
    text-transform: none;
    letter-spacing: 0.3px;
    transition: all 0.25s ease;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    position: relative;
    line-height: 1;
    height: 100%;
    z-index: 10;
}

.category-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000000;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.category-link:hover {
    color: #000000;
    background-color: transparent;
}

.category-link:hover::after {
    transform: scaleX(1);
}

.category-link.active {
    color: #000000;
    background-color: transparent;
    font-weight: 500;
}

.category-link.active::after {
    transform: scaleX(1);
    background: #000000;
    height: 2px;
}



/* Category Nav Scroll Buttons - Clean Style */
.category-nav-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #000000;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 15;
    transition: all 0.2s ease;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.category-nav-scroll-btn svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

.category-nav-scroll-btn:hover {
    background: #000000;
    border-color: #000000;
    color: #ffffff;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.category-nav-scroll-btn:active {
    transform: translateY(-50%) scale(0.98);
}

.category-nav-scroll-btn.hidden {
    display: none;
}

.category-nav-scroll-left {
    left: 8px;
}

.category-nav-scroll-right {
    right: 8px;
}

/* Show scroll buttons on mobile for better UX */
@media (max-width: 768px) {
    .category-nav-scroll-btn {
        width: 36px;
        height: 36px;
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    .category-nav-scroll-btn svg {
        width: 18px;
        height: 18px;
        stroke-width: 2;
    }
    
    .category-nav-scroll-btn.hidden {
        display: none !important;
    }
    
    .category-nav-scroll-left {
        left: 5px;
    }
    
    .category-nav-scroll-right {
        right: 5px;
    }
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo img {
    height: 75px;
    max-width: 100%;
    object-fit: contain;
}

.logo {
    padding: 5px 0;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    text-transform: none;
    font-size: 0.95rem;
    color: var(--color-text);
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-black);
    font-weight: 600;
}

/* Assortiment-CTA: zelfde strakke stijl als hero (geen pill) */
.navbar .nav-links a.btn.btn-primary.nav-cta-assortiment {
    border-radius: 2px;
    padding: 11px 22px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: var(--font-primary);
    border: 1px solid var(--color-black);
    background: var(--color-black);
    color: #ffffff;
    box-shadow: none;
    line-height: 1.35;
}

.navbar .nav-links a.nav-cta-assortiment::before {
    display: none;
}

.navbar .nav-links a.nav-cta-assortiment:hover,
.navbar .nav-links a.nav-cta-assortiment.active {
    color: #ffffff;
    background: var(--color-black-soft);
    border-color: var(--color-black-soft);
    transform: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.cart-icon-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--color-text) !important;
    text-decoration: none !important;
    position: relative !important;
}

.cart-icon-link svg {
    width: 24px !important;
    height: 24px !important;
    stroke: currentColor !important;
    fill: none !important;
}

.cart-icon-link:hover {
    color: var(--color-primary) !important;
}

.cart-count {
    position: absolute !important;
    top: -5px !important;
    right: -5px !important;
    background: var(--color-primary) !important;
    color: white !important;
    border-radius: 50% !important;
    min-width: 20px !important;
    height: 20px !important;
    font-size: 0.7rem !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 700 !important;
    padding: 0 5px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

.cart-count:not([style*="display: none"]) {
    display: flex !important;
}

/* Floating Cart Icon */
.floating-cart-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-cart-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
}

.floating-cart-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: white;
    text-decoration: none;
    position: relative;
}

.floating-cart-link svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    fill: none;
}

.floating-cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: white;
    color: var(--color-primary);
    border-radius: 50%;
    min-width: 24px;
    height: 24px;
    font-size: 0.75rem;
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    padding: 0 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--color-primary);
}

.floating-cart-count:not([style*="display: none"]) {
    display: flex !important;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    }
}

@media (max-width: 768px) {
    .floating-cart-icon {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
    
    .floating-cart-link svg {
        width: 24px;
        height: 24px;
    }
    
    .floating-cart-count {
        min-width: 22px;
        height: 22px;
        font-size: 0.7rem;
    }
}

/* Burger Menu Button (strepen donker: navbar is wit — witte strepen waren onzichtbaar) */
.burger-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    color: var(--color-text, #1a1a1a);
    border-radius: 4px;
}

.burger-menu-btn:focus-visible {
    outline: 2px solid var(--color-pattern-green, #2d5016);
    outline-offset: 3px;
}

.burger-menu-btn span {
    width: 100%;
    height: 3px;
    background-color: currentColor;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Mobiel menu — volschermpaneel, geen harde witte band; kruis rechtsboven */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: 1000;
    -webkit-tap-highlight-color: transparent;
    padding: max(10px, env(safe-area-inset-top, 0px)) max(18px, env(safe-area-inset-right, 0px))
        max(20px, env(safe-area-inset-bottom, 0px)) max(18px, env(safe-area-inset-left, 0px));
    box-sizing: border-box;
    /* Zachte overgang beige → sage zonder harde #fff-stop (geen “witte lijn”) */
    background-color: #e8efe0;
    background-image:
        radial-gradient(ellipse 140% 90% at 0% 0%, rgba(245, 240, 232, 0.95) 0%, transparent 58%),
        radial-gradient(ellipse 100% 70% at 100% 100%, rgba(212, 228, 200, 0.55) 0%, transparent 52%),
        linear-gradient(168deg, #f0ebe3 0%, #e5edd8 42%, #d8e4cc 100%);
    color: var(--color-text);
    transform: translateX(-100%);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex-direction: column;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    flex-shrink: 0;
    margin-bottom: 0;
    padding-bottom: 10px;
    /* Vaste lichte lijn onder titel + sluitknop; alles eronder direct gestapeld */
    border-bottom: 1px solid rgba(255, 255, 255, 0.82);
}

.mobile-menu-eyebrow {
    margin: 0;
    padding: 6px 0 0 2px;
    max-width: min(280px, 70vw);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.3;
    text-transform: none;
    color: rgba(26, 26, 26, 0.72);
}

.mobile-menu-close {
    display: none;
    position: relative;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--color-pattern-green);
    color: #ffffff;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 4px 14px rgba(45, 80, 22, 0.28);
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.mobile-menu-close:focus {
    outline: none;
}

.mobile-menu-close:focus-visible {
    outline: none;
    /* Alleen merkgroen — geen lichte ring die bij sluiten/flitsen lijkt op een witte balk */
    box-shadow:
        0 0 0 2px rgba(232, 245, 227, 0.95),
        0 0 0 4px var(--color-pattern-green),
        0 4px 14px rgba(45, 80, 22, 0.28);
}

.mobile-menu.active .mobile-menu-close {
    display: flex;
}

.mobile-menu-close:hover {
    background: var(--color-accent-light);
    box-shadow: 0 5px 18px rgba(45, 80, 22, 0.32);
}

.mobile-menu-close:active {
    transform: scale(0.94);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    flex: 0 1 auto;
    justify-content: flex-start;
    gap: 0;
    padding: 8px 0 22px;
    align-items: stretch;
    margin: 0;
    max-width: 100%;
    width: 100%;
    list-style: none;
    min-height: 0;
}

.mobile-nav-links li {
    width: 100%;
    text-align: left;
}

.mobile-nav-links li:not(:last-child) {
    border-bottom: 1px solid rgba(45, 80, 22, 0.1);
}

.mobile-nav-links a {
    display: block;
    padding: 20px 6px 20px 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.14em;
    color: var(--color-text);
    border: none;
    border-radius: 0;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-nav-links a:not(.btn-primary):hover,
.mobile-nav-links a:not(.btn-primary).active {
    color: var(--color-pattern-green);
    padding-left: 10px;
}

.mobile-nav-links li:last-child {
    margin-top: 14px;
    padding-top: 0;
    border-bottom: none;
}

.mobile-nav-links a.btn.btn-primary.nav-cta-assortiment {
    color: #ffffff;
    margin-top: 0;
    padding: 16px 22px;
    text-align: center;
    border-radius: 2px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: var(--font-primary);
    border: 1px solid var(--color-black);
    background: var(--color-black);
    box-shadow: none;
}

.mobile-nav-links a.nav-cta-assortiment::before {
    display: none;
}

.mobile-nav-links a.nav-cta-assortiment:hover,
.mobile-nav-links a.nav-cta-assortiment.active {
    color: #ffffff;
    background: var(--color-black-soft);
    border-color: var(--color-black-soft);
    transform: none;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   Migrated Styles from index.php & Features
   ========================================= */

/* Modern Hero Section - Brunch Café Style */
.hero-modern {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 1;
}

/* LCP: echte <img> i.p.v. alleen CSS background — Lighthouse mobiel pakt dit veel eerder op. */
.hero-background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.hero-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    z-index: 1.5;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    padding: 80px 20px;
}

.hero-content-modern {
    max-width: 700px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-tagline {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    font-family: var(--font-primary);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-text);
    margin: 0 0 30px 0;
    letter-spacing: -1px;
    /* Minder layoutverschuiving als webfont laat binnenkomt (fallback ≈ zelfde ruimte) */
    min-height: 3.4em;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 14px 28px;
    flex-wrap: wrap;
    align-items: center;
}

/* Hero CTAs: strak & editoriaal (geen pill / geen “template”-look) */
.hero-modern .hero-actions .btn {
    border-radius: 2px;
    padding: 15px 28px;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: var(--font-primary);
    box-shadow: none;
    line-height: 1.35;
}

.hero-modern .hero-actions .btn-primary {
    border: 1px solid var(--color-black);
    background: var(--color-black);
}

.hero-modern .hero-actions .btn-primary::before {
    display: none;
}

.hero-modern .hero-actions .btn-primary:hover {
    transform: none;
    background: var(--color-black-soft);
    border-color: var(--color-black-soft);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.hero-modern .hero-actions .btn-outline {
    background: transparent;
    border: none;
    border-bottom: 1.5px solid var(--color-black);
    border-radius: 0;
    padding: 12px 2px 10px;
    color: var(--color-black);
}

.hero-modern .hero-actions .btn-outline:hover {
    transform: none;
    background: transparent;
    color: var(--color-black);
    border-bottom-color: var(--color-black-soft);
    box-shadow: none;
    padding-bottom: 9px;
    border-bottom-width: 2.5px;
}

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

@media (max-width: 768px) {
    .hero-modern {
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .hero-modern .hero-actions .btn-outline {
        border: 1px solid rgba(0, 0, 0, 0.55);
        border-radius: 2px;
        padding: 15px 28px;
    }

    .hero-modern .hero-actions .btn-outline:hover {
        padding-bottom: 15px;
        border-bottom-width: 1px;
        background: var(--color-black);
        color: var(--color-white);
        border-color: var(--color-black);
    }
}

/* Hero Section (New Robust) */
/* Hero Section (Split Layout) */
/* Hero Section (Bold Custom) */
.hero-bold {
    height: 95vh;
    width: 100%;
    background-size: cover;
    background-position: right center;
    /* Ancbor ribs to right */
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    background-color: #000;
}

.h-100 {
    height: 100%;
    display: flex;
    align-items: center;
    width: 100%;
    /* Ensure container fills width for alignment */
}

.hero-content-bold {
    max-width: 550px;
    /* Constrain text to left side */
    padding-left: 0;
    /* Remove extra padding if container already has gutter */
    margin-right: auto;
    /* Push to left */
}

.tagline {
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0px;
}

.hero-content-bold h1 {
    font-size: 8rem;
    font-weight: 900;
    color: #fff;
    line-height: 0.9;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -3px;
    /* "Thick" look */
}

.hero-content-bold h2 {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.5);
    /* Ghost text */
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 20px;
}

.hero-content-bold p {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 500px;
    border-left: 5px solid var(--color-primary);
    padding-left: 20px;
}

.btn-bold {
    background: white;
    color: black;
    padding: 20px 50px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 2px;
    display: inline-block;
    transition: 0.3s;
    border: none;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 95% 100%, 0 100%);
    /* Edgy shape */
}

.btn-bold:hover {
    background: var(--color-primary);
    color: white;
    transform: scale(1.05);
}

/* Hide mobile-only elements on desktop */
.site-title-mobile {
    display: none;
}

/* Mobile Hero Overrides (Desktop Style Crop) */
@media (max-width: 768px) {
    .hero-bold {
        height: auto;
        min-height: 85vh;
        /* Tall cinematic feel */
        padding: 20px 0 30px 0;
        /* Use the actual Desktop Image to ensure style match */
        background-image: url('../img/hero_main.png?v=4') !important;
        background-position: 65% center;
        /* Zoom in on the ribs/flying bone */
        background-size: 250%;
        /* Zoom level */
        align-items: flex-start;
        /* Changed to start so content begins at top */
        position: relative;
        overflow: hidden;
    }

    /* Smoke Layer 1 (Subtle Rising) */
    .hero-bold::before {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        background-image: url('../img/smoke_texture.png');
        background-size: cover;
        mix-blend-mode: screen;
        opacity: 0.4;
        /* Subtler */
        animation: smokeRise 10s linear infinite;
        pointer-events: none;
    }

    /* Smoke Layer 2 (Drifting Fog) */
    .hero-bold::after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        background-image: url('../img/smoke_texture.png');
        background-size: 150%;
        background-position: center;
        mix-blend-mode: screen;
        opacity: 0.3;
        animation: smokeWisp 15s ease-in-out infinite alternate;
        pointer-events: none;
    }

    @keyframes smokeRise {
        0% {
            background-position: 0% 50%;
            opacity: 0.2;
        }

        100% {
            background-position: 0% 0%;
            opacity: 0.5;
        }
    }

    @keyframes smokeWisp {
        0% {
            transform: scale(1);
            opacity: 0.2;
        }

        100% {
            transform: scale(1.1);
            opacity: 0.4;
        }
    }

    .hero-content-bold {
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
        margin-right: 0;
        max-width: 100%;
        position: relative;
        z-index: 2;
        /* Text above layers */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        /* Title at top, rest at bottom */
        padding-top: 20px;
        min-height: 80vh;
    }

    /* Mobile Site Title - Now at the top */
    .site-title-mobile {
        font-size: 1.8rem;
        font-weight: 900;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 0;
        margin-top: -20px;
        /* Pull it higher */
        text-shadow: 0 4px 15px rgba(0, 0, 0, 1);
        display: block;
    }

    /* Group all main content together at bottom */
    .hero-main-content {
        display: flex;
        flex-direction: column;
        gap: 0;
        /* No gap between elements */
    }

    .hero-content-bold h1 {
        font-size: 3.8rem;
        line-height: 1;
        margin-bottom: 5px;
        text-shadow: 0 4px 15px rgba(0, 0, 0, 1);
        /* Stronger shadow for contrast */
    }

    .hero-content-bold h2 {
        font-size: 1.8rem;
        -webkit-text-stroke: 0;
        color: rgba(255, 255, 255, 1);
        font-weight: 700;
        margin-bottom: 20px;
        text-shadow: 0 4px 15px rgba(0, 0, 0, 1);
    }

    .hero-content-bold p {
        margin: 0 auto 20px auto;
        border-left: none;
        padding-left: 0;
        border-bottom: none;
        padding-bottom: 0;
        font-size: 1.2rem;
        color: #fff;
        /* Whiter text */
        text-shadow: 0 3px 8px rgba(0, 0, 0, 1);
        font-weight: 500;
    }

    .tagline {
        font-size: 1.1rem;
        margin-bottom: 5px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 1);
    }

    .btn-bold {
        width: 100%;
        text-align: center;
        clip-path: none;
        border-radius: 8px;
        padding: 15px;
        margin-top: 20px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.8);
        position: relative;
        z-index: 3;
    }

    /* Pink accent line above button */
    .btn-bold::before {
        content: '';
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 3px;
        background: var(--color-primary);
        border-radius: 2px;
    }
}

.section {
    padding: 100px 0;
}

/* Story Section */
.story-section {
    background: var(--color-white);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.story-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.03) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.story-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.story-content p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.story-image {
    position: relative;
}

.story-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 0;
    transform: rotate(-2deg);
    transition: transform 0.5s ease;
}

.story-image img:hover {
    transform: rotate(0deg) scale(1.02);
    z-index: 2;
}

/* Experience Section - Beverly Café Style */
.experience-section {
    background: var(--color-surface-light);
    padding: 100px 0;
    position: relative;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.experience-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}

.experience-content {
    display: flex;
    flex-direction: column;
    padding: 40px 0;
}

.experience-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-black);
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.experience-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.experience-btn {
    margin-bottom: 50px;
    align-self: flex-start;
    padding: 15px 40px;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}

/* Food Collage */
.food-collage {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.collage-item {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Square aspect ratio */
    overflow: hidden;
    border-radius: 8px;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collage-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.collage-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Experience Section */
@media (max-width: 968px) {
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .experience-image {
        min-height: 400px;
        order: -1;
    }
    
    .experience-title {
        font-size: 2.5rem;
    }
    
    .food-collage {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

@media (max-width: 640px) {
    .experience-section {
        padding: 60px 0;
    }
    
    .experience-title {
        font-size: 2rem;
    }
    
    .experience-description {
        font-size: 1rem;
    }
    
    .food-collage {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .experience-image {
        min-height: 300px;
    }
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.menu-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 20px;
    transition: 0.3s;
    border: 1px solid transparent;
}

.menu-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
}

.menu-card.highlight {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
}

.menu-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Locations - Modern Beverly Café Style */
.locations-section-modern {
    background: var(--color-surface-light);
    padding: 100px 0;
}

.locations-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.location-modern-card {
    background: var(--color-white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-modern-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.location-modern-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.location-modern-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.location-modern-card:hover .location-modern-image img {
    transform: scale(1.05);
}

.location-modern-placeholder {
    background: var(--color-surface-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
}

.location-modern-content {
    padding: 30px;
    background: var(--color-white);
}

.location-modern-name {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.location-modern-address {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}

.location-modern-address a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-modern-address a:hover {
    color: var(--color-black);
    text-decoration: underline;
}

/* Responsive Locations */
@media (max-width: 968px) {
    .locations-modern-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .location-modern-image {
        height: 300px;
    }
    
    .location-modern-name {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .locations-section-modern {
        padding: 60px 0;
    }
    
    .locations-modern-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .location-modern-image {
        height: 250px;
    }
    
    .location-modern-name {
        font-size: 1.8rem;
    }
    
    .location-modern-content {
        padding: 20px;
    }
}

/* Old Locations (keep for backwards compatibility) */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Tablet and up - 2 columns */
@media (min-width: 769px) and (max-width: 1024px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.location-card {
    position: relative;
    overflow: visible;
    padding: 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.location-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.location-name {
    color: var(--color-primary);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
}

.location-details {
    margin-bottom: 15px;
}

.location-details p {
    margin: 8px 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.location-badge {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.location-specialty {
    position: absolute;
    bottom: -20px;
    right: -15px;
    background: #000;
    color: #ffc107;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    transform: rotate(6deg);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.5);
    z-index: 10;
    white-space: nowrap;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}


/* Responsive locations grid - Mobile 2 columns */
@media (max-width: 768px) {
    #locations .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .locations-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .location-card {
        padding: 20px 15px;
        min-width: 0;
    }

    .location-name {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .location-details {
        margin-bottom: 12px;
    }

    .location-details p {
        margin: 5px 0;
        font-size: 0.85rem;
    }

    .location-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
        margin-top: 10px;
    }

    .location-specialty {
        font-size: 0.75rem;
        padding: 10px 16px;
        bottom: -15px;
        right: -12px;
        transform: rotate(5deg);
        letter-spacing: 1.5px;
    }
}

/* Extra small mobile - keep 2 columns but adjust spacing */
@media (max-width: 480px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }

    .location-card {
        padding: 18px 12px;
    }

    .location-name {
        font-size: 1rem;
    }

    .location-details p {
    font-size: 0.8rem;
    }

    .location-badge {
        font-size: 0.7rem;
        padding: 5px 10px;
    }

    .location-specialty {
        font-size: 0.7rem;
        padding: 8px 14px;
        bottom: -12px;
        right: -10px;
        transform: rotate(4deg);
        letter-spacing: 1px;
    }
}

/* Assortiment Section */
/* Category Showcase Section - Beverly Café Style (Black & White) */
.category-showcase-section {
    padding: 100px 0;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.category-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.category-showcase-section .container {
    position: relative;
    z-index: 1;
}

.category-showcase-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 20px;
}

.category-showcase-wrapper::before,
.category-showcase-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.category-showcase-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--color-white), transparent);
}

.category-showcase-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--color-white), transparent);
}

@media (max-width: 768px) {
    .category-showcase-wrapper {
        padding: 0 10px;
    }
    
    .category-showcase-wrapper::before,
    .category-showcase-wrapper::after {
        width: 20px;
    }
}

.category-showcase-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 20px 0 40px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.28) rgba(0, 0, 0, 0.08);
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-left: 0;
    padding-right: 0;
}

.category-showcase-scroll::-webkit-scrollbar {
    height: 8px;
}

.category-showcase-scroll::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.08);
    border-radius: 999px;
}

.category-showcase-scroll::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.28);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.category-showcase-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.42);
}

.category-showcase-card {
    flex: 0 0 auto;
    width: 280px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    scroll-snap-align: start;
    box-shadow: var(--shadow-sm);
}

.category-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 0, 0, 0.2);
}

.category-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--color-surface-light);
    position: relative;
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-showcase-card:hover .category-card-image img {
    transform: scale(1.05);
}

.category-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    background: var(--color-surface-light);
}

.category-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    padding: 20px;
    margin: 0;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    transition: color 0.3s ease;
}

.category-showcase-card:hover .category-card-title {
    color: var(--color-black);
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .category-showcase-section {
        padding: 60px 0;
    }
    
    .category-showcase-scroll {
        gap: 16px;
        padding: 15px 0 30px 0;
    }
    
    .category-showcase-card {
        width: 240px;
    }
    
    .category-card-image {
        height: 180px;
    }
    
    .category-card-title {
        font-size: 1.1rem;
        padding: 16px;
    }
}

/* Desktop - larger cards */
@media (min-width: 1024px) {
    .category-showcase-card {
        width: 300px;
    }
    
    .category-card-image {
        height: 220px;
    }
}

/* Testimonials Video Section */
.testimonials-video-section {
    padding: 100px 0;
    background: var(--color-white);
    overflow: hidden;
    position: relative;
}

.testimonials-video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.testimonials-video-section .container {
    position: relative;
    z-index: 1;
}

.testimonials-video-wrapper {
    position: relative;
    width: 100%;
    padding: 0 20px;
}

.testimonials-video-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
}

.testimonials-video-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.testimonial-video-card {
    flex: 0 0 auto;
    width: 300px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    scroll-snap-align: start;
    position: relative;
    background: var(--color-black);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Video vangt op mobiel anders touch → pagina scrollt niet meer; kaart blijft swipebaar */
@media (max-width: 768px) {
    .testimonial-video-card .testimonial-video {
        pointer-events: none;
    }
}

.testimonial-video-placeholder {
    width: 300px;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--color-surface-light);
    border-radius: 20px;
    border: 2px dashed var(--color-text-muted);
    color: var(--color-text-muted);
    font-size: 0.9rem;
    text-align: center;
    padding: 40px;
}

/* Testimonials Dots */
.testimonials-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
    padding: 0 20px;
}

.testimonial-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.testimonial-dot.active {
    background: #000000;
    width: 8px;
    height: 8px;
}

.testimonial-dot:hover {
    background: rgba(0, 0, 0, 0.4);
}

/* Responsive Testimonials */
@media (max-width: 968px) {
    .testimonials-video-section {
        padding: 60px 0;
    }
    
    .testimonial-video-card {
        width: 280px;
        height: 480px;
    }
    
    .testimonials-video-scroll {
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .testimonials-video-section {
        padding: 40px 0;
    }
    
    .testimonial-video-card {
        width: 260px;
        height: 450px;
    }
    
    .testimonials-video-scroll {
        gap: 12px;
        padding: 15px 0;
        /* Minder agressief dan mandatory: minder conflict met verticale scroll */
        scroll-snap-type: x proximity;
    }
}

.assortiment-section {
    padding: 80px 0;
}

.assortiment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.assortiment-card {
    text-decoration: none;
    color: inherit;
    display: block;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.assortiment-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.assortiment-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
}

.assortiment-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(26, 26, 26, 0.95) 100%);
}

.assortiment-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.assortiment-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.assortiment-title {
    padding: 20px;
    text-align: center;
    color: var(--color-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.assortiment-title-underline {
    text-decoration: underline;
    text-decoration-color: var(--color-primary);
    text-underline-offset: 5px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-arrow {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.btn-large:hover .btn-arrow {
    transform: translateX(5px);
}

/* Tablet - Assortiment */
@media (min-width: 769px) {
    .assortiment-grid {
        gap: 30px;
    }
    
    .assortiment-title {
        font-size: 1.5rem;
        padding: 25px;
    }
}

/* Desktop - Assortiment */
@media (min-width: 1025px) {
    .assortiment-grid {
        gap: 40px;
    }
    
    .assortiment-image-wrapper {
        padding-top: 70%;
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* 3D Flipbook - Sheet Logic */
.flipbook-stage {
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 2000px;
    margin: 50px 0;
}

.flipbook {
    width: 900px;
    /* Full spread width (2x450) */
    height: 600px;
    position: relative;
    transform-style: preserve-3d;
}

/* Sheets act as the "Paper" containing Front and Back */
.fb-sheet {
    position: absolute;
    top: 0;
    left: 50%;
    /* Spine of the book */
    width: 450px;
    /* Half width */
    height: 100%;
    transform-origin: left center;
    /* Hinge on spine */
    transform-style: preserve-3d;
    transition: transform 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    cursor: pointer;
}

/* The actual page faces */
.fb-page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    /* Hide purely for 1-sided logic */
    display: flex;
    justify-content: center;
    overflow: hidden;
    background: #fff;
    /* Shadows for depth */
}

/* Front Face (Right Side) */
.fb-page.front {
    z-index: 2;
    transform: rotateY(0deg);
    border-radius: 0 5px 5px 0;
    box-shadow: inset 15px 0 20px -10px rgba(0, 0, 0, 0.1), 5px 0 5px rgba(0, 0, 0, 0.1);
}

/* Back Face (Left Side - visible when sheet is flipped) */
.fb-page.back {
    z-index: 1;
    transform: rotateY(180deg);
    border-radius: 5px 0 0 5px;
    box-shadow: inset -15px 0 20px -10px rgba(0, 0, 0, 0.1), -5px 0 5px rgba(0, 0, 0, 0.1);
}

.fb-page img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

/* Flipped State for Sheet */
.fb-sheet.flipped {
    transform: rotateY(-180deg);
}

/* Control Buttons */
.fb-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    position: relative;
    z-index: 10;
}

.fb-btn {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.fb-btn:hover {
    background: #b0005a;
    transform: translateY(-2px);
}

.fb-btn:disabled {
    background: #333;
    opacity: 0.5;
    cursor: default;
    transform: none;
    box-shadow: none;
}

/* Mobile Specific Overrides */
@media (max-width: 768px) {

    /* Layout Adjustments */
    .story-grid {
        grid-template-columns: 1fr;
    }

    .story-image {
        order: -1;
        margin-bottom: 30px;
    }

    .hero h1 {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 16px 20px;
    }

    .section {
        padding: 60px 0;
    }

    .navbar-content {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        font-size: 0.8rem;
        gap: 15px;
    }

    .section-title {
        font-size: 2rem;
    }
    
    .assortiment-section {
        padding: 60px 0;
    }
    
    .assortiment-grid {
        gap: 15px;
    }
    
    .assortiment-title {
        font-size: 1.1rem;
        padding: 15px;
    }
    
    .assortiment-badge {
        font-size: 0.65rem;
        padding: 6px 12px;
        top: 10px;
        left: 10px;
    }
    
    .btn-large {
        padding: 15px 30px;
        font-size: 1rem;
    }

    /* Flipbook Mobile: KEEP 3D, just smaller */
    .flipbook-stage {
        height: 500px;
        /* Reduced height */
        margin: 20px auto;
        perspective: 1500px;
    }

    .flipbook {
        transform: scale(0.65);
        /* Scale down significantly to fit */
        transform-origin: center top;
        transform-style: preserve-3d;
    }

    .fb-page {
        position: absolute;
        /* Keep absolute! */
        /* box-shadow already inherited */
    }

    .fb-controls {
        display: flex;
        /* Ensure buttons show */
        margin-top: -50px;
        gap: 10px;
    }

    .fb-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Icon Adjustments */
    .menu-card .icon {
        margin-bottom: 20px;
        color: white;
        transition: color 0.3s;
    }

    .menu-card:hover .icon {
        color: var(--color-primary);
    }

    .menu-card.highlight .icon {
        color: var(--color-primary);
    }

    .menu-card.highlight:hover .icon {
        filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.4));
    }
}

/* ========================================
   ELEGANT CAROUSEL - EXACT SHOWCASE CSS
   ======================================== */
.showcase-book-section {
    width: 100%;
    overflow: visible;
    padding: 0;
    margin: 50px 0 0 0;
}

/* Dots onder het carousel, buiten de brede book-container → gecentreerd op de pagina */
#menu > .nav-controls {
    margin-top: 24px;
    margin-bottom: 0;
}

/* Text spacing in menu section */
#menu .container.text-center {
    padding-bottom: 30px;
}

#menu .fb-hint {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
    display: block;
}

.book-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    touch-action: pan-y;
    overflow: visible;
    position: relative;
}

.elegant-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-perspective: 1200px;
    perspective: 1200px;
    /* Forceert eigen compositing-laag: zonder dit blijft 3D op iOS/Safari soms “plat” tot eerste interactie */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    overflow: visible;
}

.elegant-carousel-page {
    position: absolute;
    width: 350px;
    aspect-ratio: 210 / 297;
    background: #fff;
    box-shadow: 0 15px 50px rgba(0,0,0,0.8), 0 0 0 1px rgba(0,0,0,0.1);
    /* Niet `transition: all` — combineert soms verkeerd met eerste 3D-paint */
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform, opacity;
}

/* Vergroot — alleen op voorste kaart zichtbaar (JS: .is-menu-front) */
.menu-page-zoom-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 25;
    width: 44px;
    height: 44px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.62);
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.15s ease;
}

.elegant-carousel-page.is-menu-front .menu-page-zoom-btn {
    opacity: 1;
    pointer-events: auto;
}

.menu-page-zoom-btn:active {
    transform: scale(0.94);
}

.elegant-carousel-page img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}

.nav-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 30px auto 0;
    padding: 0 16px;
    box-sizing: border-box;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0 auto;
    flex: 0 0 auto;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #000000;
    font-size: 18px;
    cursor: pointer;
    box-shadow: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    touch-action: manipulation;
    opacity: 0.7;
}

.nav-btn:hover:not(:disabled) {
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.4);
    transform: scale(1.05);
}

.nav-btn:active {
    transform: scale(0.95);
}

.nav-btn:disabled {
    opacity: 0.2;
    cursor: not-allowed;
}

.page-dots {
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.carousel-dot.active {
    background: #000000;
    transform: scale(1.5);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

/* Menu vergroten (mobiel) — lightbox */
.menu-zoom-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Volledig scherm boven alle secties (niet in #menu stacking context) */
html.menu-zoom-open,
html.menu-zoom-open body {
    overflow: hidden !important;
}

.menu-zoom-modal {
    position: fixed;
    inset: 0;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    z-index: 2147483000;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    box-sizing: border-box;
    background: #000000;
    isolation: isolate;
}

.menu-zoom-modal[hidden] {
    display: none !important;
}

.menu-zoom-backdrop {
    position: absolute;
    inset: 0;
    background: #000000;
    z-index: 0;
}

.menu-zoom-topbar {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: calc(10px + env(safe-area-inset-top, 0px)) max(16px, env(safe-area-inset-right, 0px)) 12px max(16px, env(safe-area-inset-left, 0px));
    background: #0d0d0d;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.menu-zoom-topbar-title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.02em;
}

.menu-zoom-close {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    background: #ffffff;
    color: #111111;
    cursor: pointer;
    touch-action: manipulation;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    transition: transform 0.15s ease, background 0.15s ease;
}

.menu-zoom-close svg {
    display: block;
}

.menu-zoom-close:active {
    transform: scale(0.94);
    background: #f0f0f0;
}

.menu-zoom-panel {
    position: relative;
    z-index: 1;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 12px;
    padding: 12px max(12px, env(safe-area-inset-right, 0px)) max(12px, env(safe-area-inset-bottom, 0px)) max(12px, env(safe-area-inset-left, 0px));
    box-sizing: border-box;
    background: transparent;
}

.menu-zoom-img-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: min(100vw - 24px, 920px);
    max-height: calc(100dvh - 200px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.65);
    background: #ffffff;
    touch-action: pan-y pinch-zoom;
}

.menu-zoom-img-wrap img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 120px;
    background: #fff;
}

.menu-zoom-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-shrink: 0;
}

.menu-zoom-pagebtn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    touch-action: manipulation;
}

.menu-zoom-pagebtn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
}

.menu-zoom-pageinfo {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 4.5rem;
    text-align: center;
    font-family: var(--font-primary);
}

/* Desktop carousel (from showcase) */
@media (min-width: 1024px) {
    .elegant-carousel-wrapper {
        height: 700px;
        -webkit-perspective: 2000px;
        perspective: 2000px;
        max-width: 1400px;
        margin: 0 auto;
    }

    .elegant-carousel-page {
        width: 450px;
    }
}

/* Mobile carousel (from showcase) - CRITICAL FOR SHADOWS */
/* Mobiel + tablet: vaste header + hamburger (tot 1024px; daarboven volledige nav-links) */
@media (max-width: 1024px) {
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1000;
        margin: 0;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        border-bottom: none;
    }

    /* Geen dikke witte strook: die flitste zichtbaar bij het sluiten van het mobiele menu
       (menu-z-index daalde even onder de navbar). Subpixel-gaten: navbar houdt eigen border/shadow. */

    .navbar.scrolled {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .navbar[style*="position: fixed"] {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
    }

    .category-nav {
        position: fixed;
        left: 0;
        right: 0;
        top: calc(var(--navbar-fixed-h, 80px) - 2px);
        width: 100%;
        z-index: 998;
        margin-top: -2px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        padding-top: 0;
    }
    
    .category-link {
        padding: 14px 18px;
        font-size: 0.85rem;
        letter-spacing: 0.8px;
    }
    
    /* Logo staat later in de DOM met dezelfde z-index → lag over de burger; X leek “in de achtergrond” */
    .burger-menu-btn {
        display: flex;
        position: absolute;
        right: 20px;
        z-index: 1010;
    }

    .nav-links {
        display: none !important;
    }

    .mobile-menu {
        display: flex;
        position: fixed;
        /* Altijd boven vaste navbar tijdens sluit-animatie — voorkomt flits van witte navbar/strook */
        z-index: 1105;
    }

    .mobile-menu:not(.active) {
        pointer-events: none;
    }

    .mobile-menu.active {
        pointer-events: auto;
    }

    /* Paneel boven vaste header; z-index gelijk open/dicht zodat animatie geen witte flits toont */
    .navbar-content {
        position: relative;
        z-index: 1003;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        min-height: 70px;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        padding: 0;
        z-index: 1;
        pointer-events: none;
    }

    .logo a {
        pointer-events: auto;
    }

    .logo img {
        height: 75px;
        max-width: 250px;
    }
    
    /* Sticky navbar: geen height:100% op html (iOS scroll-jank) */
    html {
        position: relative;
    }

    body {
        position: relative;
        min-height: 100%;
    }
}

@media (max-width: 768px) {
    /* Geen height:100% op html hier — combineert slecht met iOS scroll */
    /* Horizontaal: html hidden + body clip — clip i.p.v. hidden minder “tweede scrollport” op sommige engines.
       3D-menu + schaduwen maken anders scrollWidth > viewport → hele pagina swipebaar. */
    html {
        overflow-x: hidden;
        overscroll-behavior-x: none;
        max-width: 100%;
        position: relative;
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    body {
        overflow-x: clip;
        overscroll-behavior-x: none;
        max-width: 100%;
        position: relative;
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }

    #menu.section {
        overflow-x: clip !important;
        overflow-y: visible !important;
        position: relative;
        padding: 60px 0 !important;
    }

    /* Text container - normal padding for text */
    #menu .container.text-center {
        padding-left: 20px !important;
        padding-right: 20px !important;
        padding-bottom: 20px !important;
        overflow-x: visible !important;
        overflow: visible !important;
        max-width: 100% !important;
        width: 100%;
    }

    /* Text styling adjustments for mobile */
    #menu .section-subtitle {
        margin-bottom: 10px;
    }

    #menu .section-title {
        margin-bottom: 15px;
        padding: 0 10px;
    }

    #menu .fb-hint {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 0;
        padding: 0 10px;
    }

    /* Carousel: geen `* { overflow:visible }` — dat forceert horizontale bleed tot document.
       Alleen wrapper expliciet visible voor 3D/schaduwen binnen geclipte #menu. */
    #menu .showcase-book-section {
        overflow-x: clip;
        overflow-y: visible;
        padding: 0 !important;
        margin: 30px 0;
        width: 100%;
        position: relative;
    }

    #menu .showcase-book-section .elegant-carousel-wrapper {
        overflow-x: visible;
        overflow-y: visible;
    }

    .book-container {
        max-width: 100%;
        padding: 0 40px;
        overflow: visible !important;
        position: relative;
    }

    /* Geen breedte > 100% + negatieve marge: dat maakt document scrollWidth > viewport
       → hele pagina links/rechts swipebaar. Schaduwen blijven op de kaarten zelf. */
    .elegant-carousel-wrapper {
        height: 400px;
        width: 100% !important;
        max-width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        overflow: visible !important;
        position: relative;
    }

    .elegant-carousel-page {
        width: 280px;
        box-shadow: 0 15px 50px rgba(0,0,0,0.8), 0 0 0 1px rgba(0,0,0,0.1) !important;
    }

    /* Dots: volle sectiebreedte, gecentreerd (niet meer in negatief gemargeerde book-container) */
    #menu > .nav-controls {
        padding: 0 20px;
        margin-top: 20px;
    }

    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Footer — merk-gradient, groene accentlijn, duidelijke scheiding van pagina */
.footer-modern {
    position: relative;
    width: 100%;
    margin-top: 0;
    padding: 3.25rem 0 2.5rem;
    z-index: 20;
    isolation: isolate;
    overflow: hidden;
    background: linear-gradient(
        180deg,
        var(--color-pattern-beige) 0%,
        #fafaf8 40%,
        var(--color-accent-soft) 100%
    );
    border-top: 1px solid rgba(45, 80, 22, 0.1);
    box-shadow: 0 -12px 40px rgba(45, 80, 22, 0.07);
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--color-pattern-green) 0%,
        var(--color-accent-light) 50%,
        var(--color-pattern-green) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.footer-modern::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 8% 95%, rgba(45, 80, 22, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 55% 45% at 92% 12%, rgba(74, 124, 42, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.footer:empty,
.footer .footer-container:empty {
    display: none;
}

.footer-modern .footer-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    margin-bottom: 1.75rem;
}

.footer-brand-col {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.footer-brand-lockup {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--color-black);
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-align: center;
}

.footer-tagline {
    font-family: var(--font-primary);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-pattern-green);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin: 0.5rem 0 0;
    padding-left: 0.45em;
    padding-right: 0.35em;
    width: fit-content;
    max-width: 100%;
    text-align: center;
    line-height: 1.35;
    align-self: center;
}

/* Mobiel: nav + openingstijden in één gecentreerde kolom */
.footer-panel-stack {
    width: 100%;
    max-width: 22rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.footer-links-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 3.25rem;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 1.25rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    min-width: 0;
}

.footer-heading {
    font-family: var(--font-primary);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-pattern-green);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0 0 0.85rem;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 0.55rem;
}

.footer-list li:last-child {
    margin-bottom: 0;
}

.footer-list a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 400;
    transition: color 0.2s ease;
}

.footer-list a:hover {
    color: var(--color-black);
}

.footer-hours-col {
    width: 100%;
}

.footer-hours-panel {
    background: var(--color-white);
    border-radius: 12px;
    padding: 1.1rem 1.15rem 0.35rem;
    border: 1px solid rgba(45, 80, 22, 0.12);
    border-top: 4px solid var(--color-pattern-green);
    box-shadow: var(--shadow-sm);
}

.footer-hours-heading {
    font-family: var(--font-primary);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-pattern-green);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0 0 0.85rem;
}

.footer-hours-rows {
    display: flex;
    flex-direction: column;
}

.footer-hours-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(45, 80, 22, 0.1);
}

.footer-hours-row--last {
    border-bottom: none;
    padding-bottom: 0.5rem;
}

.footer-hours-label {
    font-family: var(--font-primary);
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--color-text-muted);
    flex: 1;
    min-width: 0;
}

.footer-hours-time {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-black);
    text-align: right;
    white-space: nowrap;
    flex-shrink: 0;
}

.footer-phone {
    display: block;
    margin-top: 1rem;
    font-family: var(--font-primary);
    font-size: 0.92rem;
    font-weight: 400;
    color: var(--color-black);
    text-decoration: none;
    text-align: center;
    letter-spacing: 0.01em;
}

.footer-phone:hover {
    opacity: 0.75;
}

.footer-bottom {
    padding-top: 0;
    border-top: 1px solid rgba(45, 80, 22, 0.14);
    text-align: left;
}

.footer-copyright {
    font-family: var(--font-primary);
    font-size: 0.78rem;
    color: var(--color-text-muted);
    margin: 1rem 0 0;
    line-height: 1.4;
}

/* Desktop: merk | menu | info | openingstijden — vaste kolommen, ruim uitgelijnd */
@media (min-width: 901px) {
    .footer-main {
        display: grid;
        grid-template-columns: minmax(12rem, 28%) minmax(5rem, 11%) minmax(5rem, 11%) minmax(13rem, 22%);
        column-gap: clamp(2rem, 3.5vw, 3.5rem);
        row-gap: 0;
        align-items: start;
        justify-content: space-between;
        width: 100%;
        max-width: 100%;
    }

    .footer-brand-col {
        grid-column: 1;
        grid-row: 1;
        display: block;
        text-align: left;
        width: auto;
        max-width: 20rem;
    }

    .footer-brand-lockup {
        display: inline-flex;
        align-items: flex-start;
    }

    .footer-logo-text {
        text-align: left;
    }

    .footer-tagline {
        align-self: center;
        margin-top: 0.45rem;
        padding-left: 0.3em;
        padding-right: 0.2em;
        letter-spacing: 0.18em;
    }

    .footer-panel-stack {
        display: contents;
    }

    .footer-links-row {
        display: contents;
    }

    .footer-col-menu {
        grid-column: 2;
        grid-row: 1;
    }

    .footer-col-info {
        grid-column: 3;
        grid-row: 1;
    }

    .footer-hours-col {
        grid-column: 4;
        grid-row: 1;
        width: auto;
        max-width: 15rem;
        justify-self: end;
    }

    .footer-logo-text {
        font-size: 2.35rem;
        margin-bottom: 0.4rem;
    }

    .footer-tagline {
        font-size: 0.68rem;
        letter-spacing: 0.2em;
    }

    .footer-heading {
        margin-bottom: 0.75rem;
    }

    .footer-list li {
        margin-bottom: 0.45rem;
    }

    .footer-list a {
        font-size: 0.88rem;
    }

    .footer-hours-panel {
        background: transparent;
        border: none;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
    }

    .footer-hours-heading {
        font-family: var(--font-primary);
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        margin-bottom: 0.75rem;
    }

    .footer-hours-row {
        display: block;
        padding: 0.35rem 0;
        border-bottom: none;
    }

    .footer-hours-row--last {
        padding-bottom: 0;
    }

    .footer-hours-label {
        display: block;
        color: var(--color-text-muted);
        font-size: 0.85rem;
        line-height: 1.35;
        margin-bottom: 0.1rem;
    }

    .footer-hours-time {
        display: block;
        text-align: left;
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .footer-phone {
        margin-top: 1rem;
        text-align: left;
        font-size: 0.88rem;
    }
}

@media (min-width: 1100px) {
    .footer-main {
        grid-template-columns: minmax(14rem, 30%) 6.5rem 6.5rem minmax(14rem, 24%);
        column-gap: 4rem;
    }
}

/* Story Section Modern */
.story-section-modern {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}


.story-section-modern .container {
    position: relative;
    z-index: 1;
}

.story-modern-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-modern-image {
    position: relative;
    z-index: 0;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/3;
    isolation: isolate;
}

.story-modern-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.story-modern-image:hover img {
    transform: scale(1.05);
}

.story-modern-content {
    padding: 0 20px;
}

.story-modern-content .section-title {
    margin-bottom: 30px;
    text-align: left;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 20px;
}

.story-text:last-child {
    margin-bottom: 0;
}

/* Ambiance Section */
.ambiance-section {
    padding: 80px 0 40px 0;
    background: #fafafa;
    position: relative;
    overflow: hidden;
}

.ambiance-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.ambiance-section .container {
    position: relative;
    z-index: 1;
}

.ambiance-scroll-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 20px;
    touch-action: pan-y;
}

.ambiance-scroll-track {
    display: flex;
    gap: 0;
    width: max-content;
    padding: 10px 0 20px 0;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    animation: ambianceMarquee 42s linear infinite;
    animation-play-state: running;
}

.ambiance-scroll-group {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
    padding-right: 20px;
}

@keyframes ambianceMarquee {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ambiance-scroll-track {
        animation: none;
        transform: translate3d(0, 0, 0);
    }
}

.ambiance-slide {
    flex: 0 0 auto;
    width: 320px;
    height: 420px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: #ebebeb;
    opacity: 1;
    transform: none;
}

.ambiance-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    -webkit-user-drag: none;
    user-drag: none;
    user-select: none;
    -webkit-touch-callout: none;
}

/* Reviews Section - Enhanced */
.reviews-section {
    padding: 40px 0 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.reviews-section .container {
    position: relative;
    z-index: 1;
}

.reviews-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 20px;
}

.reviews-carousel {
    display: flex;
    flex-direction: row;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.reviews-carousel::-webkit-scrollbar {
    display: none;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
    padding: 0 20px;
}

.review-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.review-dot.active {
    background: #000000;
    width: 8px;
    height: 8px;
}

.review-dot:hover {
    background: rgba(0, 0, 0, 0.4);
}

.review-card {
    flex: 0 0 auto;
    width: calc(33.333% - 20px);
    min-width: 300px;
    padding: 40px 30px;
    background: #fafafa;
    border-radius: 4px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align: start;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.review-card-enhanced {
    padding: 50px 30px;
    position: relative;
}

.review-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-stars {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 25px;
    font-style: italic;
}

.review-author {
    font-size: 0.9rem;
    color: var(--color-text);
    font-weight: 600;
    margin: 0 0 5px 0;
}

.review-location {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* Photo Story Section (2-in-1) */
.photo-story-section {
    padding: 80px 0;
    background: #fafafa;
    position: relative;
    overflow: hidden;
    margin-top: 28px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.photo-story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.photo-story-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(45, 80, 22, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.photo-story-section .container {
    position: relative;
    z-index: 1;
}

.photo-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    opacity: 1 !important;
    visibility: visible !important;
}

.photo-story-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/3;
    opacity: 1 !important;
    visibility: visible !important;
}

.photo-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.photo-story-image--onsverhaal img {
    /* Dashboard upload has a white matte border; zoom in to crop it out */
    transform: scale(1.34);
    /* Anchor left edge so we crop mostly on the right (keeps left gutter perfect) */
    transform-origin: left center;
    /* Disable hover zoom effect for this specific image */
    transition: none;
}

/* No hover transform changes for Ons Verhaal */
.photo-story-image.photo-story-image--onsverhaal:hover img {
    transform: scale(1.34);
}

/* Ons Verhaal: tighter spacing between text and image */
.photo-story-section--onsverhaal .photo-story-grid {
    gap: 48px;
}

@media (max-width: 992px) {
    .photo-story-section--onsverhaal .photo-story-grid {
        gap: 28px;
    }

    /* Ons Verhaal: keep heading + underline left-aligned */
    .photo-story-section--onsverhaal .photo-story-content .section-title {
        text-align: left;
    }
}

.photo-story-image:hover img {
    transform: scale(1.05);
}

.photo-story-caption {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #000000 !important;
    color: #ffffff !important;
    padding: 10px 18px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
}

.photo-story-content {
    padding: 0 20px;
}

.photo-story-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    margin-bottom: 15px;
}

.photo-story-content .section-title {
    margin-bottom: 30px;
    text-align: left;
    display: block;
}

.photo-story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 20px;
}

.photo-story-text:last-of-type {
    margin-bottom: 40px;
}

.photo-story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
    background-color: rgba(97, 132, 98, 0.15);
    padding: 20px 15px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.stat-item:hover {
    background-color: rgba(97, 132, 98, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 1.1rem;
    color: #000000 !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    opacity: 1 !important;
}

/* Influencer Section */
.influencer-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.influencer-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.influencer-section .container {
    position: relative;
    z-index: 1;
}

.influencer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.influencer-card {
    background: #fafafa;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.influencer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.influencer-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.influencer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.influencer-card:hover .influencer-image img {
    transform: scale(1.1);
}

.influencer-badge {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.influencer-content {
    padding: 30px;
    text-align: center;
}

.influencer-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.influencer-bio {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.influencer-quote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    font-style: italic;
    margin: 0;
}

/* Behind the Scenes Section */
.behind-scenes-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.behind-scenes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.behind-scenes-section .container {
    position: relative;
    z-index: 1;
}

.behind-scenes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    opacity: 1 !important;
    visibility: visible !important;
}

.behind-scenes-content {
    padding: 0 20px;
}

.behind-scenes-label {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    margin-bottom: 15px;
}

.behind-scenes-content .section-title {
    margin-bottom: 30px;
    text-align: left;
}

.behind-scenes-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 20px;
}

.behind-scenes-text:last-of-type {
    margin-bottom: 40px;
}

.behind-scenes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.behind-scenes-list li {
    font-size: 1rem;
    line-height: 2;
    color: var(--color-text);
    padding-left: 30px;
    position: relative;
}

.behind-scenes-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-black);
    font-weight: 700;
    font-size: 1.2rem;
}

.behind-scenes-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.behind-scenes-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 1/1;
    opacity: 1 !important;
    visibility: visible !important;
}

.behind-scenes-image-main {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.behind-scenes-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.behind-scenes-image:hover img {
    transform: scale(1.05);
}

/* Featured Section */
.featured-section {
    padding: 80px 0;
    background: #fafafa;
    position: relative;
    overflow: hidden;
}

.featured-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.featured-section .container {
    position: relative;
    z-index: 1;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-card {
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.featured-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-card:hover .featured-image img {
    transform: scale(1.1);
}

.featured-content {
    padding: 30px;
}

.featured-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.featured-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure caption and stat labels are always visible */
.photo-story-caption,
.stat-label {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Force images to be visible even if parent has animate-on-scroll */
.photo-story-image,
.photo-story-image img,
.behind-scenes-image,
.behind-scenes-image img,
.behind-scenes-images {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.behind-scenes-images {
    display: grid !important;
}

/* Scroll Animations - Different animations for different sections */

/* Base animation class */
.animate-on-scroll,
.animate-fade-scale,
.animate-slide-bottom,
.animate-fade-in,
.animate-slide-up,
.animate-rotate-fade,
.animate-scale-fade {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Default fade up */
.animate-on-scroll {
    transform: translateY(30px);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Slide left/right for story section */
.animate-on-scroll.slide-left {
    transform: translateX(-30px);
}

.animate-on-scroll.slide-left.animated {
    transform: translateX(0);
}

.animate-on-scroll.slide-right {
    transform: translateX(30px);
}

.animate-on-scroll.slide-right.animated {
    transform: translateX(0);
}

/* Fade + Scale for reviews */
.animate-fade-scale {
    transform: translateY(20px) scale(0.95);
}

.animate-fade-scale.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Slide from bottom for influencers */
.animate-slide-bottom {
    transform: translateY(50px);
}

.animate-slide-bottom.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Simple fade in for photo story */
.animate-fade-in {
    opacity: 0;
}

.animate-fade-in.animated {
    opacity: 1;
}

/* Slide up for behind scenes */
.animate-slide-up {
    transform: translateY(40px);
}

.animate-slide-up.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Rotate + fade for featured */
.animate-rotate-fade {
    transform: translateY(20px) rotate(-2deg);
}

.animate-rotate-fade.animated {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}

/* Scale + fade (niet op De Sfeer-slides — die blijven zichtbaar tijdens marquee) */
.animate-scale-fade {
    transform: scale(0.9);
}

.animate-scale-fade.animated {
    opacity: 1;
    transform: scale(1);
}

.ambiance-section .ambiance-slide {
    opacity: 1 !important;
    transform: none !important;
    transition: none;
}

.animate-on-scroll.slide-left {
    transform: translateX(-30px);
}

.animate-on-scroll.slide-left.animated {
    transform: translateX(0);
}

.animate-on-scroll.slide-right {
    transform: translateX(30px);
}

.animate-on-scroll.slide-right.animated {
    transform: translateX(0);
}

/* Responsive Design for New Sections */
@media (max-width: 992px) {
    .story-modern-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .story-modern-content {
        padding: 0;
    }
    
    .story-modern-content .section-title {
        text-align: center;
    }
    
    .ambiance-slide {
        width: 300px;
        height: 400px;
    }
    
    .reviews-carousel-wrapper {
        padding: 0 10px;
    }
    
    .review-card {
        flex: 0 0 calc(100% - 20px);
        min-width: 280px;
    }
    
    .photo-story-grid,
    .behind-scenes-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .photo-story-content,
    .behind-scenes-content {
        padding: 0;
    }
    
    .photo-story-content .section-title,
    .behind-scenes-content .section-title {
        text-align: center;
    }

    /* Photo story sections: keep heading + underline left-aligned */
    .photo-story-section .photo-story-content .section-title {
        text-align: left;
    }
    
    .photo-story-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .influencer-grid,
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .behind-scenes-images {
        grid-template-columns: 1fr;
    }
    
    .behind-scenes-image-main {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .story-section-modern,
    .ambiance-section,
    .reviews-section,
    .photo-story-section,
    .influencer-section,
    .behind-scenes-section,
    .featured-section {
        padding: 60px 0;
    }

    /* Story section: make "Ons Verhaal" image fill mobile width */
    .story-modern-image {
        /* Fill the full column width */
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        border-radius: 4px 0 0 4px;
        aspect-ratio: 4 / 3;
        justify-self: stretch;
    }

    .story-modern-grid {
        grid-template-areas:
            "story-content"
            "story-image";
    }

    .story-modern-content .section-title {
        text-align: left;
        margin-bottom: 18px;
    }

    .story-text {
        font-size: 1rem;
        line-height: 1.75;
        margin-bottom: 14px;
    }
    
    .ambiance-scroll-wrapper {
        padding: 0 10px;
    }

    .ambiance-scroll-track {
        padding: 8px 0 16px 0;
    }

    .ambiance-scroll-track {
        animation-duration: 36s;
    }

    .ambiance-scroll-group {
        gap: 14px;
        padding-right: 14px;
    }

    .ambiance-slide {
        width: 250px;
        height: 320px;
    }
    
    .review-card {
        padding: 30px 20px;
    }
    
    /* Photo Story Section Mobile */
    .photo-story-grid {
        gap: 40px;
    }
    
    .photo-story-image {
        order: 0;
        margin-top: 8px;
    }
    
    .photo-story-content {
        padding: 0;
    }

    .photo-story-section {
        margin-top: 18px;
        padding-top: 42px;
    }
    
    .photo-story-label {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }
    
    .photo-story-content .section-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .photo-story-text {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 15px;
    }
    
    .photo-story-text:last-of-type {
        margin-bottom: 30px;
    }
    
    .photo-story-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        padding-top: 25px;
    }
    
    .stat-item {
        text-align: center;
        padding: 15px 10px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        margin-top: 5px;
        letter-spacing: 0.5px;
    }
    
    /* Behind Scenes Section Mobile */
    .behind-scenes-grid {
        gap: 40px;
    }
    
    .behind-scenes-content {
        padding: 0;
        order: -1;
    }
    
    .behind-scenes-label {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }
    
    .behind-scenes-content .section-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .behind-scenes-text {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 15px;
    }
    
    .behind-scenes-text:last-of-type {
        margin-bottom: 25px;
    }
    
    .behind-scenes-list {
        margin-top: 20px;
    }
    
    .behind-scenes-list li {
        font-size: 0.95rem;
        line-height: 1.8;
        margin-bottom: 12px;
    }
    
    .behind-scenes-images {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .behind-scenes-image-main {
        grid-column: span 1;
        aspect-ratio: 16/10;
    }
    
    .behind-scenes-image {
        aspect-ratio: 1/1;
    }
    
    /* Influencer Section Mobile */
    .influencer-card {
        margin-bottom: 0;
    }
    
    .influencer-content {
        padding: 25px 20px;
    }
    
    .influencer-name {
        font-size: 1.2rem;
    }
    
    .influencer-quote {
        font-size: 0.95rem;
    }
    
    /* Featured Section Mobile */
    .featured-content {
        padding: 25px 20px;
    }
    
    .featured-title {
        font-size: 1.2rem;
    }
    
    .featured-description {
        font-size: 0.95rem;
    }
}


@media (max-width: 900px) {
    .footer-modern {
        padding: 2.5rem 0 2rem;
    }

    .footer-panel-stack {
        max-width: min(22rem, 100%);
    }

    .footer-brand-col {
        display: flex;
        justify-content: center;
        padding: 0 0.5rem;
    }

    .footer-brand-lockup {
        align-items: center;
    }

    .footer-logo-text {
        font-size: 2.35rem;
    }

    .footer-tagline {
        margin-top: 0.55rem;
        padding-left: 0.55em;
        padding-right: 0.45em;
        letter-spacing: 0.13em;
        font-size: 0.68rem;
    }

    .footer-links-row {
        gap: 3rem;
    }

    .footer-hours-time {
        font-size: 0.88rem;
    }
}


/* Animations */
.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

/* Floating Icon Pattern Background */
.floating-icon-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: visible;
}

.floating-icon {
    position: absolute;
    opacity: 0.4;
    pointer-events: none;
    /* Onder .section (z-index 10); zonder dit schilderen late body-kinderen soms over foto’s. */
    z-index: 0;
}

/* Ensure hero section and all content is above the pattern */
body {
    position: relative;
}

.hero-modern {
    position: relative;
    z-index: 100 !important;
    background: rgba(255, 255, 255, 0.5);
}

/* Geen hero-afbeelding: rustige achtergrond, kop is het visuele anker (geen foto-LCP). */
.hero-modern.hero-modern--text {
    background: linear-gradient(
        165deg,
        var(--color-pattern-beige) 0%,
        var(--color-white) 48%,
        var(--color-surface-light) 100%
    );
}

.hero-background-video,
.hero-video-overlay {
    position: absolute;
    z-index: 1;
}

/* Video-element vangt anders verticale touch → eerste swipe “verdwijnt” */
.hero-background-video {
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.section {
    position: relative;
    z-index: 10;
    background-color: transparent;
}

/* Vacatures (statische pagina): merk — crème/beige, zwarte tekst, groene accenten */
.section-static-brand {
    position: relative;
    padding: 100px 0 120px;
    background: linear-gradient(
        180deg,
        var(--color-pattern-beige) 0%,
        #ffffff 42%,
        var(--color-accent-soft) 100%
    );
    color: var(--color-text);
}

.section-static-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-pattern-green) 0%, var(--color-accent-light) 50%, var(--color-pattern-green) 100%);
}

.section-static-brand .section-title {
    color: var(--color-text);
}

.section-static-brand .section-title::after {
    background: linear-gradient(90deg, var(--color-pattern-green) 0%, var(--color-accent-light) 60%, transparent 100%);
}

.section-static-brand .section-subtitle {
    color: var(--color-pattern-green);
    letter-spacing: 0.12em;
}

.section-static-brand h2:not(.section-title) {
    color: var(--color-pattern-green);
    font-family: var(--font-heading);
}

.section-static-brand h3 {
    color: var(--color-pattern-green);
}

.section-static-brand .static-prose p,
.section-static-brand .static-prose li {
    color: var(--color-text);
    font-size: 1.1rem;
    line-height: 1.8;
}

.section-static-brand .static-prose li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(45, 80, 22, 0.12);
}

.section-static-brand .static-prose strong {
    color: var(--color-pattern-green);
}

.section-static-brand .static-prose .static-icon {
    color: var(--color-pattern-green);
    margin-right: 10px;
}

.section-static-brand .static-card {
    background: var(--color-white);
    padding: 28px 32px;
    border-radius: 16px;
    border: 1px solid rgba(45, 80, 22, 0.15);
    border-left: 4px solid var(--color-pattern-green);
    box-shadow: var(--shadow-sm);
}

.section-static-brand .static-form-panel {
    background: var(--color-white);
    padding: 40px 36px;
    border-radius: 20px;
    border: 1px solid rgba(45, 80, 22, 0.18);
    box-shadow: var(--shadow-md);
}

.section-static-brand .static-form-panel label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-text);
}

.section-static-brand .static-form-panel input[type="text"],
.section-static-brand .static-form-panel input[type="email"],
.section-static-brand .static-form-panel input[type="tel"],
.section-static-brand .static-form-panel input[type="file"],
.section-static-brand .static-form-panel textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--color-text);
    background: var(--color-white);
    border: 2px solid rgba(45, 80, 22, 0.22);
    border-radius: 10px;
    resize: vertical;
}

.section-static-brand .static-form-panel input::placeholder,
.section-static-brand .static-form-panel textarea::placeholder {
    color: var(--color-text-muted);
    opacity: 1;
}

.section-static-brand .static-form-panel input:focus,
.section-static-brand .static-form-panel textarea:focus {
    outline: none;
    border-color: var(--color-pattern-green);
    box-shadow: 0 0 0 3px var(--color-accent-soft);
}

.section-static-brand .static-form-panel .static-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    color: var(--color-text);
}

.section-static-brand .static-form-panel .static-checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 4px;
    accent-color: var(--color-pattern-green);
}

.section-static-brand .static-alert {
    margin-top: 28px;
    padding: 18px 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
}

.section-static-brand .static-alert--success {
    background: var(--color-accent-soft);
    border: 2px solid var(--color-pattern-green);
    color: var(--color-pattern-green);
}

.section-static-brand .static-alert--error {
    background: #fff5f5;
    border: 2px solid #c62828;
    color: #b71c1c;
}

.container {
    position: relative;
    z-index: 1;
}