/* --- Algemene Reset en Typografie --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    border-radius: 6px;
}

body {
    background-color: #f4f4f6; 
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- WATERMERK STIJL --- */
.watermark {
    position: fixed; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    opacity: 0.15; 
    z-index: 0; 
    pointer-events: none;
    will-change: transform;
}

.watermark img {
    height: 400px; 
    width: auto;
    /* Performance: don't block rendering */
    content-visibility: auto;
}

.standalone-page .watermark {
    opacity: 0.35;
}

/* --- VASTE HEADER & NAVIGATIE DEFINITIES --- */
.site-header {
    height: 190px;
    background-color: #8CD05C; 
    color: white;
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: height 0.3s;
}

.header-inner {
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    height: 100%; 
    position: relative; 
}

.site-nav {
    height: 40px; 
    background-color: #386641; 
    position: fixed; 
    top: 190px; 
    left: 0;
    width: 100%;
    z-index: 999;
    transition: top 0.3s;
    overflow: visible; /* Zorg dat menu niet wordt afgesneden */
}

.nav-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Op kleinere schermen maar groter dan mobiel (769px - 1365px): space-between zodat utility-icons-nav rechts komt */
@media (min-width: 769px) and (max-width: 1365px) {
    .nav-inner {
        justify-content: space-between !important;
        gap: 15px;
    }
    
    /* ZORG DAT MENU ZICHTBAAR IS OP KLEINE LAPTOPS */
    .nav-inner .menu,
    .site-nav .menu,
    .site-nav .container .nav-inner .menu,
    .menu {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex: 1 !important;
        justify-content: center !important;
        list-style: none !important;
        gap: 4px !important; /* Verkleind van 12px naar 4px */
        margin: 0 !important;
        padding: 0 !important;
        flex-direction: row !important;
        position: static !important;
        background-color: transparent !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        width: auto !important;
        top: auto !important;
        left: auto !important;
        z-index: auto !important;
        flex-wrap: wrap !important; /* Laat items wrappen als nodig */
    }
    
    .menu li {
        display: list-item !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .menu li a {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        color: #FFD700 !important;
        padding: 0 10px !important; /* Verkleind van 20px naar 10px */
        line-height: 50px !important;
        font-size: 12px !important; /* Verkleind van 14px naar 12px */
        font-weight: 600 !important;
        white-space: nowrap !important;
    }
    
    /* Verberg hamburger op kleine laptops */
    .hamburger {
        display: none !important;
    }
    
    /* ZORG ERVOOR DAT UTILITY-ICONS-NAV ZICHTBAAR IS - MET MAXIMALE SPECIFICITEIT */
    .site-nav .container .nav-inner .utility-icons-nav,
    .site-nav .nav-inner .utility-icons-nav,
    .nav-inner .utility-icons-nav,
    .utility-icons-nav {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 100 !important;
        flex-shrink: 0;
    }
}

.menu {
    list-style: none;
    display: flex;
}

.menu.menu-open {
    display: flex;
}

/* STANDARD: utility-icons-nav is standaard zichtbaar op kleinere schermen */
/* Alleen op desktop (> 1366px) wordt het verborgen */
.utility-icons-nav {
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    flex-shrink: 0;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 100;
}

.utility-icons-nav a {
    color: #FFD700 !important;
    text-decoration: none;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    position: relative;
    min-width: 40px;
    height: 40px;
}

.utility-icons-nav a .nav-text {
    display: none;
}

.utility-icons-nav a svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.utility-icons-nav a:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.utility-icons-nav .cart-link {
    background-color: #FFD700 !important;
    color: #386641 !important;
}

.utility-icons-nav .cart-link:hover {
    background-color: #ffe873 !important;
}

.utility-icons-nav .cart-link svg {
    stroke: #386641 !important;
    width: 20px !important;
    height: 20px !important;
}

/* Desktop (> 1366px): Hamburger, mobiele utility icons en mobiele tagline verbergen */
/* Op desktop staan utility-icons in de header */
@media (min-width: 1366px) {
    .hamburger,
    .utility-icons-mobile,
    .header-tagline-mobile {
        display: none;
    }
    
    /* Verberg utility-icons-nav alleen op desktop - maar respecteer inline style */
    .site-nav .utility-icons-nav:not([style*="display"]),
    .nav-inner .utility-icons-nav:not([style*="display"]),
    .utility-icons-nav:not([style*="display"]) {
        display: none !important;
    }
}

.menu {
    list-style: none;
    display: flex;
    gap: 12px;
}

.menu li a {
    color: #FFD700; 
    text-decoration: none;
    padding: 0 32px;
    line-height: 40px; 
    display: block;
    transition: background-color 0.3s;
    font-size: 16px;
    font-weight: 700;
}

.menu li a:hover,
.menu li a.active {
    background-color: rgba(0, 0, 0, 0.2); 
    color: white; 
}

/* Specifieke styling voor de ADMIN link */
#admin-menu-item a {
     color: white;
     background-color: #2E8B57;
     border-left: 2px solid #FFD700;
     padding-left: 23px;
}
#admin-menu-item a:hover {
    background-color: #4CAF50;
}

/* === LOGO GROOTTE DEFINITIE (Desktop) === */
.logo-img {
    width: 170px; 
    height: 180px; 
    object-fit: contain;
    /* Performance optimalisaties */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* === CENTRALE TEKST (H1/H2) STYLING - Desktop === */
.header-text-center {
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%; 
    transform: translate(-50%, -50%); 
}

.header-text-center h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0;
}

.header-text-center .tagline {
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 300;
    margin-top: 6px;
}

/* When header shrinks on scroll, scale down title/tagline so it doesn't overflow into the navbar */
.site-header.scrolled .header-text-center {
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 220px); /* avoid colliding with logo/utility */
    pointer-events: none; /* don't block clicks in header */
}

.site-header.scrolled .header-text-center h1 {
    font-size: 1.15rem;
    line-height: 1.05;
    margin: 0;
}

.site-header.scrolled .header-text-center .tagline {
    font-size: 0.78rem;
    line-height: 1.1;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* === PRODUCT TITLE RECHTS BOVEN === */
.header-products-title {
    position: absolute;
    right: 200px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
}

/* === UTILITY LINKS (Login, Winkelwagen) STYLING - Desktop === */
.utility-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    top: 20px;
    right: 0;
}

.utility-icons a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.2s, color 0.2s;
    font-weight: 600;
}

.utility-icons a:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.cart-link {
    background-color: #FFD700; 
    color: #386641; 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cart-link svg,
.cart-link .cart-icon {
    stroke: #386641;
    width: 20px;
    height: 20px;
}

.cart-link:hover {
    background-color: #ffe873; 
    color: #386641;
}

.cart-link:hover svg {
    stroke: #386641;
}

/* --- HOOFD CONTENT AFHANDELING --- */
main {
    padding-top: 230px; 
    padding-bottom: 40px; 
    transition: padding-top 0.3s; 
    flex-grow: 1; 
}

/* --- Content Styling --- */
.main-content {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.75); 
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    position: relative; 
    z-index: 2; 
}

.main-content h2 {
    color: #386641;
    margin-bottom: 15px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
}

.main-content h2.no-border {
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.placeholder-content {
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    margin-top: 20px;
    position: relative; 
    z-index: 2; 
}

.placeholder-content:not([style*="background-color"]) {
    background-color: rgba(224, 224, 224, 0.9); 
    color: #555;
    font-size: 1.2em;
}

/* Product Kaart Styling */
.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    margin-top: 24px;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    width: 100%; /* Wordt bepaald door grid kolom of parent */
    max-width: 100%;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(47, 79, 61, 0.08);
    box-shadow: 0 10px 26px rgba(47, 79, 61, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 360px;
}

/* Product card binnen shop grid - breedte wordt bepaald door grid kolom (50px) */
.product-item-top-section .product-card,
.product-item-wrapper .product-card {
    width: 50px !important;
    max-width: 50px !important;
    min-width: 50px !important;
    flex-shrink: 0 !important;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(47, 79, 61, 0.14);
}

.product-image {
    position: relative;
    height: 190px;
    background: #f6f8f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.product-info {
    padding: 1rem 1.1rem 1.2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: left;
    gap: 0.6rem;
}

.product-info h3 {
    font-size: 1.1rem;
    color: #2f4f3d;
    margin: 0;
}

.product-description {
    color: #516055;
    font-size: 0.9rem;
    line-height: 1.45;
    margin: 0;
    flex: 1;
}

.product-footer {
    border-top: 1px solid rgba(47, 79, 61, 0.08);
    padding-top: 0.6rem;
    margin-top: 0;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.6rem;
}

.product-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: #4CAF50;
}

.product-quantity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    margin: 0.6rem 0 0.2rem;
}

.product-quantity label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #4a5a50;
}

.product-quantity select {
    flex: 1;
    padding: 0.4rem 0.55rem;
    border-radius: 8px;
    border: 1px solid rgba(47, 79, 61, 0.2);
    font-size: 0.9rem;
    background: #f9fbf8;
    color: #2f4f3d;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-quantity select:focus {
    border-color: #8cd05c;
    box-shadow: 0 0 0 3px rgba(140, 208, 92, 0.18);
    outline: none;
}

.product-add-btn {
    width: 100%;
    padding: 0.65rem;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #4CAF50, #71C158);
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.product-add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.2);
}

.product-add-btn:active {
    transform: translateY(0);
    box-shadow: 0 6px 12px rgba(76, 175, 80, 0.18);
}

/* Form Styling (Login/Register/Admin) */
.form-container {
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
    border: 1px solid #ddd;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.form-container label {
     display: block; 
     margin-bottom: 5px; 
     font-weight: 600;
}

.form-container input, .form-container textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-container textarea {
    min-height: 100px;
    resize: vertical;
}

.form-container button {
    width: 100%;
    background-color: #6DBB3B;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    font-weight: 700;
}

.form-message {
    margin: 20px 0;
    padding: 20px;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: slideDown 0.3s ease-out;
    position: relative;
    z-index: 100;
}

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

.form-message.error {
    background-color: #ffebee;
    color: #c62828;
    border-left: 5px solid #c62828;
}

.form-message.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border-left: 5px solid #4CAF50;
}

.form-message.info {
    background-color: #e3f2fd;
    color: #1565c0;
    border-left: 5px solid #2196F3;
}

/* --- POPUP MODAL VOOR SIGNUP BEVESTIGING --- */
.signup-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.signup-modal {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideUp 0.4s ease-out;
}

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

.signup-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    padding: 0;
    font-weight: 300;
}

.signup-modal-close:hover {
    background: #e0e0e0;
    color: #333;
    transform: rotate(90deg);
}

.signup-modal-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 20px;
}

.signup-modal-icon.success {
    color: #4CAF50;
}

.signup-modal-icon.info {
    color: #2196F3;
}

.signup-modal-icon.error {
    color: #f44336;
}

.signup-modal-title {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    color: #333;
}

.signup-modal-message {
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.signup-modal-button {
    width: 100%;
    padding: 15px;
    background: #8CD05C;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}

.signup-modal-button:hover {
    background: #7AB84C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(140, 208, 92, 0.4);
}

/* Product Lijst op Admin Pagina */
.admin-product-list {
    margin-top: 30px;
    border-top: 2px solid #386641;
    padding-top: 20px;
}

.admin-product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.admin-product-item:last-child {
    border-bottom: none;
}

.admin-product-info {
    flex-grow: 1;
}

.admin-product-info strong {
    display: block;
    color: #386641;
    font-size: 1.1em;
}

.admin-actions button {
    background-color: #FFD700;
    width: auto;
    margin-left: 10px;
    padding: 8px 15px;
    font-size: 0.9em;
}

.loading-indicator {
    padding: 40px;
    text-align: center;
    font-size: 1.5em;
    color: #4CAF50;
}

/* === FOOTER STYLING & RESPONSIVITEIT === */
.site-footer {
    background-color: #f4f4f4; 
}

.footer-top {
    background-color: #8CD05C; 
    padding: 20px 0;
}

.footer-links {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap; 
    gap: 30px;
}

.footer-legal-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-other-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a, .footer-links p {
    color: #386641;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 5px 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    background-color: #333; 
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9em;
}

/* KLEINE LAPTOPS EN LAGE RESOLUTIES (< 1366px) */
@media (max-width: 1365px) and (min-width: 769px) {
    /* Compactere header voor meer content ruimte */
    .site-header { 
        height: 110px; 
        padding: 0 15px;
    }
    
    .site-nav { 
        top: 110px;
        height: 50px;
        overflow: visible !important; /* Zorg dat menu niet wordt afgesneden */
    }
    
    main { 
        padding-top: 160px;
    }

    /* Kleinere logo */
    .logo-img { 
        width: 90px; 
        height: 90px; 
    }
    
    /* Verberg of verklein centrale tekst */
    .header-text-center {
        display: none;
    }
    
    /* Verberg utility icons in header */
    .site-header .utility-icons {
        display: none !important;
    }
    
    /* Verberg mobiele utility icons */
    .utility-icons-mobile {
        display: none !important;
    }
    
    /* Toon utility icons in navbar - MET HOGE SPECIFICITEIT */
    .site-nav .utility-icons-nav,
    .nav-inner .utility-icons-nav,
    .utility-icons-nav {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center;
        gap: 8px;
        margin-left: auto;
        flex-shrink: 0;
        position: relative;
        z-index: 10;
    }
    
    .utility-icons-nav a {
        color: #FFD700 !important;
        text-decoration: none;
        display: flex !important;
        align-items: center;
        gap: 5px;
        padding: 6px 12px;
        border-radius: 4px;
        transition: background-color 0.2s;
        font-weight: 600;
        font-size: 14px;
        white-space: nowrap;
    }
    
    .utility-icons-nav a:hover {
        background-color: rgba(255, 255, 255, 0.15);
    }
    
    .utility-icons-nav .cart-link {
        background-color: #FFD700 !important;
        color: #386641 !important;
    }
    
    .utility-icons-nav .cart-link:hover {
        background-color: #ffe873 !important;
    }
    
    .utility-icons-nav .cart-link svg {
        stroke: #386641 !important;
        width: 20px !important;
        height: 20px !important;
    }
    
    /* Navbar layout aanpassen */
    .nav-inner {
        justify-content: space-between !important;
        align-items: center;
        gap: 15px;
    }
    
    .menu {
        margin: 0;
        padding: 0;
        flex: 1;
        justify-content: center;
    }
    
    .menu li a {
        padding: 0 20px;
        font-size: 14px;
    }
}

/* SCROLL GEDRAG - Header wordt nog compacter bij scrollen */
.site-header.scrolled {
    height: 70px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.site-header.scrolled .logo-img {
    width: 60px !important;
    height: 60px !important;
}

.site-header.scrolled ~ .site-nav {
    top: 70px !important;
}

.site-header.scrolled ~ main {
    padding-top: 120px !important;
}

/* Aanpassing voor kleine schermen bij scrollen */
@media (max-width: 1365px) and (min-width: 769px) {
    .site-header.scrolled {
        height: 60px !important;
    }
    
    .site-header.scrolled ~ .site-nav {
        top: 60px !important;
    }
    
    .site-header.scrolled ~ main {
        padding-top: 110px !important;
    }
}

/* RESPONSIVITEIT */
@media (max-width: 768px) {
    /* Compactere header voor meer content ruimte */
    .site-header { 
        height: 80px; 
        padding: 0 10px;
    }
    .site-nav { 
        top: 80px;
        height: 50px; 
    }
    main { 
        padding-top: 130px;
        padding-bottom: 0 !important;
        margin: 0 !important;
    }

    /* Groter logo voor betere zichtbaarheid */
    .logo-img { 
        width: 80px; 
        height: 80px; 
        margin: 0;
    } 
    
    /* Brand link beter positioneren */
    .brand {
        display: flex;
        align-items: center;
        padding: 0;
    }

    /* Verberg desktop header tekst op mobiel */
    .header-text-center {
        display: none;
    }
    
    /* Toon mobiele tagline */
    .header-tagline-mobile {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        margin-left: 10px;
    }
    
    .mobile-tagline-text {
        display: block;
        font-size: 1.5rem;
        font-weight: 800;
        margin: 0;
        line-height: 1;
    }
    
    .header-tagline-mobile p {
        font-size: 0.85rem;
        font-style: italic;
        font-weight: 300;
        margin: 5px 0 0 0;
    }
    
    .header-products-title { 
        display: none; 
    }
    
    /* MOBIEL: Utility icons in header verbergen */
    .site-header .utility-icons {
        display: none !important;
    }
    
    /* MOBIEL: Hamburger links in nav */
    .hamburger { 
        display: flex !important;
        align-items: center;
        justify-content: center;
        position: static;
        transform: none;
        background: rgba(255, 255, 255, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.3);
        color: white;
        font-size: 1.3rem;
        cursor: pointer;
        padding: 8px 12px;
        border-radius: 8px;
        transition: all 0.3s ease;
        min-width: 44px;
        min-height: 44px;
    }
    
    .hamburger svg {
        width: 24px;
        height: 24px;
        stroke: currentColor;
    }
    
    .hamburger:hover,
    .hamburger:active {
        background: rgba(255, 255, 255, 0.25);
        transform: scale(1.05);
    }
    
    /* MOBIEL: Utility icons rechts in nav - gebruik utility-icons-nav ook op mobiel */
    .utility-icons-nav {
        display: flex !important;
        flex-direction: row;
        gap: 8px;
        align-items: center;
        margin-left: auto;
        flex-shrink: 0;
    }
    
    .utility-icons-nav a {
        padding: 6px 10px;
        font-size: 0.75rem;
        border-radius: 6px;
        display: flex !important;
        align-items: center;
        gap: 4px;
        color: white;
        text-decoration: none;
        white-space: nowrap;
    }
    
    /* Login link styling mobiel */
    #login-link-nav {
        background-color: rgba(255, 255, 255, 0.1);
        color: white !important;
    }
    
    .utility-icons-nav svg {
        width: 20px !important;
        height: 20px !important;
    }
    
    /* Cart link extra opvallend mobiel */
    .utility-icons-nav .cart-link {
        background-color: #FFD700 !important;
        color: #386641 !important;
        font-weight: 700;
        padding: 8px !important;
    }
    
    .utility-icons-nav .cart-link svg {
        stroke: #386641 !important;
    }
    
    /* Legacy: utility-icons-mobile (als die bestaat) - verbergen */
    .utility-icons-mobile { 
        display: none !important;
    }
    
    /* Navigatie container */
    .site-nav .container {
        position: relative;
    }
    
    .nav-inner {
        justify-content: space-between;
    }

    /* MOBIEL MENU: Verberg standaard, toon alleen bij .menu-open */
    .nav-inner .menu,
    .site-nav .menu,
    .site-nav .container .nav-inner .menu,
    .menu { 
        display: none !important; /* Standaard verborgen op mobiel */
        flex-direction: column; 
        position: absolute; 
        top: 100%; /* Direct onder de navbar */
        left: 0;
        right: 0;
        width: 100%; 
        background-color: #386641;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
        border-radius: 0 0 12px 12px;
        overflow: hidden;
        z-index: 998;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    /* Toon menu wanneer .menu-open class is toegevoegd */
    .menu.menu-open {
        display: flex !important;
    }
    
    /* Zorg dat hamburger zichtbaar is op mobiel */
    .hamburger {
        display: flex !important;
    }
    
    .menu li {
        width: 100%;
    }
    
    .menu li a { 
        display: block;
        padding: 15px 20px; 
        line-height: normal; 
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1rem;
        transition: all 0.2s ease;
        color: #FFD700 !important;
        text-decoration: none;
        width: 100%;
        box-sizing: border-box;
    }
    
    .menu li a:hover,
    .menu li a:active {
        background-color: rgba(255, 255, 255, 0.1);
        padding-left: 25px;
    }
    
    .menu li:last-child a {
        border-bottom: none;
    }
    
    #admin-menu-item a {
        color: white !important; 
        border-left: none;
        padding-left: 20px;
        background-color: #2E8B57;
    }
    
    #admin-menu-item a:hover {
        padding-left: 25px;
    }
    
    /* Footer responsive */
    .footer-links {
        flex-direction: column; 
        text-align: center;
        gap: 20px;
    }
    
    .footer-legal-links,
    .footer-other-links {
        width: 100%;
        align-items: center;
    }
    
    /* Watermerk kleiner op mobiel */
    .watermark img {
        height: 300px;
    }
    
    .watermark {
        opacity: 0.12;
    }
    
    /* --- MOBIELE FORMULIER OPTIMALISATIES --- */
    
    /* Prelaunch hero compacter op mobiel */
    .prelaunch-hero {
        padding: 30px 15px;
    }
    
    .prelaunch-hero h1, .prelaunch-hero h2 {
        font-size: 1.8rem !important;
        line-height: 1.2;
    }
    
    .prelaunch-hero p {
        font-size: 1rem !important;
    }
    
    /* Signup formulier responsive */
    .prelaunch-form-extended {
        padding: 1.5rem !important;
    }
    
    .prelaunch-form-extended h3 {
        font-size: 1.2rem !important;
    }
    
    /* Inputs: grotere touch targets (min 44px) */
    .signup-form input,
    .prelaunch-form-extended input[type="text"],
    .prelaunch-form-extended input[type="email"] {
        padding: 14px !important;
        font-size: 16px !important; /* Voorkom iOS zoom */
        min-height: 48px;
        border-width: 2px !important;
    }
    
    /* Buttons: grotere touch targets */
    .signup-form button,
    .prelaunch-form-extended button {
        padding: 16px 24px !important;
        font-size: 1rem !important;
        min-height: 52px;
        font-weight: 700;
    }
    
    /* Stap 1: grid naar single column */
    .prelaunch-form-extended #signup-step-1 > div[style*="grid"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    /* Preference options: beter stapelen */
    .prelaunch-form-extended .preference-option {
        min-width: 100% !important;
        padding: 1.2rem !important;
        font-size: 1rem !important;
    }
    
    .prelaunch-form-extended .preference-option strong {
        font-size: 1.1rem !important;
    }
    
    /* Dosering sectie beter stapelen */
    #dosering-section label.preference-option {
        min-width: 100% !important;
    }
    
    /* Terug/Verzend knoppen onder elkaar op klein scherm */
    @media (max-width: 480px) {
        .prelaunch-form-extended div[style*="display: flex; gap: 1rem"] {
            flex-direction: column !important;
        }
        
        .prelaunch-form-extended button {
            width: 100% !important;
            flex: none !important;
        }
    }
    
    /* Modal popup groter op mobiel */
    .signup-modal {
        padding: 30px 20px !important;
        width: 95% !important;
        max-width: 420px;
    }
    
    .signup-modal-icon {
        font-size: 4rem !important;
    }
    
    .signup-modal-title {
        font-size: 1.5rem !important;
    }
    
    .signup-modal-message {
        font-size: 1rem !important;
        line-height: 1.5;
    }
    
    .signup-modal-button {
        padding: 16px 32px !important;
        font-size: 1.1rem !important;
        min-height: 52px;
    }
    
    /* Benefits grid: single column op mobiel */
    .benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .benefit-card {
        padding: 1.5rem !important;
    }
    
    .benefit-card h4 {
        font-size: 1.2rem !important;
    }
    
    /* --- PRODUCT CARDS MOBIEL OPTIMALISATIE --- */
    
    .product-grid {
        gap: 2rem !important;
        padding: 0 1rem;
    }
    
    .product-item-wrapper-full {
        margin-bottom: 2rem !important;
    }
    
    .product-item-container {
        margin-bottom: 2rem !important;
    }
    
    .product-item-top-section {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .product-item-wrapper {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .product-description-full {
        margin: 0 !important;
    }
    
    /* Product card - strakke borders, geen extra ruimte */
    .product-card {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        min-height: auto !important;
        border-radius: 14px !important;
        box-shadow: 0 8px 18px rgba(47, 79, 61, 0.12) !important;
    }
    
    /* Product afbeelding - GROOT en vol */
    .product-image {
        height: 160px !important; /* Groter! */
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .product-image img {
        object-fit: cover !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    .product-badge {
        font-size: 0.7rem !important;
        padding: 0.3rem 0.6rem !important;
        top: 0.5rem !important;
        right: 0.5rem !important;
    }
    
    /* Product info - SUPER compact */
    .product-info {
        padding: 0.55rem 0.55rem 0.45rem 0.55rem !important;
        gap: 0.4rem !important;
    }
    
    .product-info h3 {
        font-size: 0.9rem !important;
        line-height: 1.15;
        margin: 0 0 0.15rem 0 !important;
        padding: 0 !important;
    }
    
    /* Verberg product beschrijving op mobiel (dubbele info) */
    .product-description {
        display: none !important;
    }
    
    /* Verberg "SUPPLEMENT" category label op mobiel */
    .product-category {
        display: none !important;
    }
    
    /* Prijs - compact */
    .product-price {
        font-size: 1rem !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1.2;
    }
    
    /* Product footer - minimale ruimte */
    .product-footer {
        padding: 0.45rem 0 0 0 !important;
        margin: 0 !important;
        border-top: none !important;
    }
    
    /* CTA buttons in products - compact */
    .product-card button,
    .product-card .btn-primary {
        min-height: 44px !important;
        font-size: 0.85rem !important;
        padding: 0.55rem 0.9rem !important;
        font-weight: 700;
        margin: 0 !important;
    }
    
    .product-add-btn {
        font-size: 0.85rem !important;
        padding: 0.55rem !important;
    }
    
    /* Prelaunch tekst onder prijs - minimale ruimte */
    .product-footer > div {
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1.2 !important;
    }
    
    /* Sale price styling - compact */
    .product-footer div[style*="text-align: center"] {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .product-footer div[style*="text-align: center"] > div {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Shop header compacter */
    .shop-header h2 {
        font-size: 1.8rem !important;
    }
    
    .shop-header p {
        font-size: 1rem !important;
    }
    
    /* --- ALGEMENE TYPOGRAFIE & SPACING MOBIEL --- */
    
    .main-content {
        padding: 15px !important;
        margin-bottom: 15px !important;
    }
    
    .main-content h2 {
        font-size: 1.6rem !important;
        line-height: 1.3;
        margin-bottom: 1rem !important;
    }
    
    .main-content h3 {
        font-size: 1.3rem !important;
        line-height: 1.3;
    }
    
    .main-content p {
        font-size: 1rem !important;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    /* Betere leesbaarheid */
    body {
        font-size: 16px;
        line-height: 1.6;
    }
    
    /* Links groter voor touch */
    a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
    
    /* Home products section */
    .home-products-section h2 {
        font-size: 1.8rem !important;
    }
    
    .section-subtitle {
        font-size: 1rem !important;
    }
    
    /* View all button */
    .btn-view-all {
        min-height: 52px !important;
        padding: 14px 28px !important;
        font-size: 1.1rem !important;
    }
    
    /* Home header section - mobiel aanpassingen */
    .home-header-section {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 1rem !important;
    }
    
    /* Verberg "Welkom bij NMN Longivity" tekst op mobiel */
    .home-welcome-text {
        display: none !important;
    }
    
    /* Products tekst groter en groene kleur op mobiel - heel dicht bij navbar */
    .home-products-text {
        font-size: 1.4rem !important;
        color: #386641 !important;
        text-align: center !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1 !important;
        display: block !important;
    }
    
    /* --- FULL WIDTH CONTAINERS OP MOBIEL --- */
    
    /* Main element - direct tegen nav, geen extra ruimte */
    main {
        padding-top: 130px !important;
        padding-bottom: 0 !important;
        margin: 0 !important;
        background-color: transparent !important;
    }
    
    /* Body - geen default margins */
    body {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Main content full width en direct tegen nav */
    .main-content {
        padding: 0 !important;
        margin: 0 !important;
        border-radius: 0 !important;
        background-color: transparent !important;
        box-shadow: none !important;
    }
    
    /* Home content zonder zijkanten ruimte */
    .home-content {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    /* Home header section - EXTREME negatieve margin om tegen navbar te plakken */
    .home-header-section {
        margin: 0 !important;
        margin-top: -45px !important; /* Trek EXTREEM omhoog naar navbar! */
        padding: 0 1rem 0.3rem 1rem !important;
        border: none !important;
        box-shadow: none !important;
        background: transparent !important;
        line-height: 1 !important;
    }
    
    /* Tekst zelf ook geen extra ruimte + tight line-height */
    .home-products-text {
        padding: 0 !important;
        margin: 0 !important;
        line-height: 1 !important;
    }
    
    /* Products section full width - compact, direct na tekst */
    .home-products-section {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    /* Product grid - 1 kolom op mobiel */
    .product-grid {
        padding: 0 0.5rem !important;
        margin: 0 !important;
        gap: 2rem !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .product-item-wrapper-full {
        margin-bottom: 2rem !important;
    }
    
    .product-item-container {
        margin-bottom: 2rem !important;
    }
    
    .product-item-top-section {
        width: 100% !important;
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .product-item-wrapper {
        width: 100% !important;
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .product-description-full {
        margin: 0 !important;
    }
    
    /* Prelaunch hero full width - compact */
    .prelaunch-hero {
        margin: 1.5rem 0 0 0 !important;
        padding: 1.5rem 1rem !important;
        border-radius: 0 !important;
    }
    
    /* Prelaunch formulier full width */
    .prelaunch-form-extended {
        max-width: 100% !important;
        margin: 0 !important;
        padding: 1.5rem 1rem !important;
        border-radius: 8px !important;
    }
    
    /* Benefits grid full width - compact */
    .benefits-grid {
        padding: 0 1rem !important;
        margin: 1.5rem 0 1rem 0 !important;
    }
    
    /* Benefit cards volle breedte */
    .benefit-card {
        margin: 0 !important;
        border-radius: 8px !important;
    }
    
    /* Container zelf ook geen padding op mobiel */
    .container {
        width: 100% !important;
        padding: 0 !important;
    }
}

/* Prelaunch specifieke styling */
.prelaunch-hero {
    background: linear-gradient(135deg, #4CAF50, #6DBB3B);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 12px;
}

.prelaunch-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.prelaunch-hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.signup-form {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.signup-form h3 {
    color: #386641;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.signup-form input {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.signup-form input:focus {
    outline: none;
    border-color: #4CAF50;
}

.signup-form button {
    width: 100%;
    background: linear-gradient(135deg, #4CAF50, #6DBB3B);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s;
}

.signup-form button:hover {
    transform: translateY(-2px);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h4 {
    color: #386641;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

.nmn-hub {
    margin: 4rem auto 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.nmn-hub__intro {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.nmn-hub__intro h3 {
    font-size: clamp(2rem, 2.4vw, 2.6rem);
    color: #2f4f3d;
    margin-bottom: 1rem;
}

.nmn-hub__intro p {
    font-size: 1.05rem;
    color: #37463f;
    line-height: 1.7;
}

.nmn-topic {
    display: flex;
    align-items: center;
    gap: 2.6rem;
    padding: 2.4rem;
    border-radius: 20px;
    border: 1px solid rgba(47, 79, 61, 0.12);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 42px rgba(47, 79, 61, 0.12);
    position: relative;
    overflow: hidden;
}

.nmn-topic::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(140, 208, 92, 0.2), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.nmn-topic:hover::before {
    opacity: 1;
}

.nmn-topic:nth-of-type(even) {
    flex-direction: row-reverse;
}

.nmn-topic__media {
    flex: 0 0 320px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(47, 79, 61, 0.18);
    display: block;
    position: relative;
}

.nmn-topic__media img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.35s ease;
}

.nmn-topic__media:hover img {
    transform: scale(1.05);
}

.nmn-topic__copy {
    flex: 1 1 auto;
    position: relative;
    z-index: 1;
}

.nmn-topic__copy h3 {
    font-size: 1.6rem;
    color: #2f4f3d;
    margin-bottom: 0.9rem;
}

.nmn-topic__copy p {
    color: #425147;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.nmn-topic__list {
    list-style: none;
    margin: 0 0 1.4rem;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}

.nmn-topic__list li {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    color: #37463f;
    line-height: 1.55;
    font-size: 0.98rem;
}

.nmn-topic__list li::before {
    content: "•";
    color: #8cd05c;
    font-size: 1.2rem;
    line-height: 1;
    margin-top: 0.1rem;
}

.nmn-topic__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.nmn-hub__cta {
    text-align: center;
    padding: 2.6rem 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(140, 208, 92, 0.22), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(47, 79, 61, 0.1);
    box-shadow: 0 16px 36px rgba(47, 79, 61, 0.12);
    max-width: 820px;
    margin: 0 auto 1rem;
}

.nmn-hub__cta h4 {
    font-size: 1.7rem;
    color: #2f4f3d;
    margin-bottom: 0.8rem;
}

.nmn-hub__cta p {
    color: #3f5547;
    line-height: 1.7;
    margin-bottom: 1.4rem;
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .nmn-topic {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .nmn-topic:nth-of-type(even) {
        flex-direction: column;
    }

    .nmn-topic__media {
        width: 100%;
        flex: 0 0 auto;
    }

    .nmn-topic__copy h3 {
        font-size: 1.45rem;
    }

    .nmn-topic__actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .nmn-hub {
        gap: 2.4rem;
    }

    .nmn-topic {
        padding: 1.6rem;
        box-shadow: 0 10px 28px rgba(47, 79, 61, 0.12);
    }

    .nmn-topic__copy p {
        font-size: 0.97rem;
    }

    .nmn-topic__list li {
        font-size: 0.95rem;
    }

    .nmn-hub__cta {
        padding: 2.2rem 1.6rem;
    }
}

.nmn-intro {
    margin: 4rem auto 2rem;
    background: linear-gradient(180deg, #f7fbf5 0%, #ffffff 100%);
    border: 1px solid rgba(140, 208, 92, 0.3);
    border-radius: 18px;
    padding: 3rem 3.5rem;
    box-shadow: 0 16px 40px rgba(56, 102, 65, 0.12);
    position: relative;
    overflow: hidden;
}

.nmn-intro::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(140, 208, 92, 0.15), transparent 55%);
    pointer-events: none;
}

.nmn-intro__inner {
    position: relative;
    z-index: 1;
}

.nmn-intro h2 {
    font-size: clamp(2rem, 2.5vw, 2.6rem);
    color: #2f4f3d;
    margin-bottom: 1rem;
}

.nmn-intro p {
    font-size: 1.05rem;
    color: #37463f;
    margin-bottom: 1.5rem;
}

.nmn-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.8rem;
    margin: 2.5rem 0;
}

.nmn-benefits-grid article {
    background: white;
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(56, 102, 65, 0.08);
    border: 1px solid rgba(47, 79, 61, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}

.nmn-benefits-grid article::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(140, 208, 92, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.nmn-benefits-grid article:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(56, 102, 65, 0.12);
}

.nmn-benefits-grid article:hover::before {
    opacity: 1;
}

.nmn-benefits-grid h3 {
    font-size: 1.1rem;
    color: #2f4f3d;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.nmn-benefits-grid p {
    color: #4d5b54;
    font-size: 0.98rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.nmn-why {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 2rem 0 2.5rem;
}

.nmn-why li {
    background: rgba(140, 208, 92, 0.12);
    border-left: 4px solid #8cd05c;
    padding: 1rem 1.2rem;
    border-radius: 10px;
    color: #2f4f3d;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(47, 79, 61, 0.08);
}

.nmn-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.nmn-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.4rem;
    border-radius: 999px;
    background: white;
    color: #2f4f3d;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(47, 79, 61, 0.15);
    box-shadow: 0 8px 20px rgba(47, 79, 61, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nmn-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(47, 79, 61, 0.15);
    color: #386641;
}

.nmn-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.82rem;
    font-weight: 700;
    color: #5c7a66;
    margin-bottom: 0.9rem;
}

.nmn-eyebrow::before {
    content: "✦";
    color: #8cd05c;
    font-size: 0.9rem;
}

.nmn-feature-grid {
    margin: 2.5rem 0;
}

.nmn-feature-card p {
    margin-bottom: 1.15rem;
}

.nmn-feature-list {
    list-style: none;
    margin: 0 0 1.4rem;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}

.nmn-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    color: #37463f;
    font-size: 0.97rem;
    line-height: 1.45;
}

.nmn-feature-list li::before {
    content: "✔";
    color: #8cd05c;
    font-weight: 700;
    font-size: 0.85rem;
    line-height: 1.2;
    margin-top: 0.2rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #386641;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
}

.link-arrow::after {
    content: "→";
    transition: transform 0.2s ease;
    font-size: 1rem;
}

.link-arrow:hover {
    color: #2f4f3d;
}

.link-arrow:hover::after {
    transform: translateX(4px);
}

.nmn-resource-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2.5rem;
    padding: 2.2rem;
    background: linear-gradient(135deg, rgba(140, 208, 92, 0.18), rgba(255, 255, 255, 0.95));
    border-radius: 18px;
    border: 1px solid rgba(47, 79, 61, 0.15);
    box-shadow: 0 18px 36px rgba(47, 79, 61, 0.12);
    margin-top: 2.5rem;
}

.nmn-resource-panel h4 {
    margin: 0 0 0.6rem;
    color: #2f4f3d;
    font-size: 1.35rem;
}

.nmn-resource-panel p {
    margin: 0;
    color: #4d5b54;
    max-width: 460px;
}

.nmn-resource-panel .nmn-links {
    margin: 0;
    justify-content: flex-end;
}

.nmn-cta {
    font-size: 1.1rem;
    color: #2f4f3d;
    font-weight: 600;
}

.nmn-cta a {
    color: #386641;
    text-decoration: underline;
    font-weight: 700;
}

.nmn-cta a:hover {
    text-decoration: none;
}

.journal-hero {
    background: linear-gradient(180deg, rgba(140, 208, 92, 0.1) 0%, rgba(255, 255, 255, 0.98) 100%);
    border: 1px solid rgba(47, 79, 61, 0.12);
    border-radius: 18px;
    padding: 2.8rem 3rem;
    box-shadow: 0 20px 48px rgba(47, 79, 61, 0.15);
    margin: 3rem 0 2.5rem;
}

.journal-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.8rem;
    font-weight: 700;
    color: #5c7a66;
    margin-bottom: 1rem;
    display: inline-block;
}

.journal-hero h3 {
    margin-top: 0;
    font-size: clamp(2rem, 2.6vw, 2.4rem);
    color: #2f4f3d;
    margin-bottom: 1rem;
}

.journal-hero p {
    color: #37463f;
    font-size: 1.05rem;
    max-width: 740px;
    line-height: 1.7;
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.8rem;
}

.journal-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(47, 79, 61, 0.08);
    box-shadow: 0 16px 34px rgba(47, 79, 61, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    min-height: 100%;
    position: relative;
}

.journal-card--highlight {
    background: linear-gradient(135deg, rgba(140, 208, 92, 0.12), #ffffff);
    border: 1px solid rgba(140, 208, 92, 0.35);
    box-shadow: 0 20px 40px rgba(140, 208, 92, 0.18);
}

.journal-card h3 {
    font-size: 1.35rem;
    color: #2f4f3d;
    margin: 0;
}

.journal-card p {
    color: #4d5b54;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    background: rgba(140, 208, 92, 0.18);
    color: #2f4f3d;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 999px;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.92rem;
    color: #5c6f65;
}

.card-footer span {
    font-weight: 600;
}

.journal-cta {
    margin: 3rem 0 4rem;
    background: linear-gradient(180deg, #f7fbf5 0%, #ffffff 100%);
    border-radius: 16px;
    border: 1px solid rgba(140, 208, 92, 0.3);
    padding: 3rem;
    text-align: center;
    box-shadow: 0 18px 42px rgba(47, 79, 61, 0.15);
}

.journal-cta h4 {
    font-size: clamp(1.6rem, 2.2vw, 2rem);
    color: #2f4f3d;
    margin-bottom: 0.75rem;
}

.journal-cta p {
    color: #37463f;
    max-width: 640px;
    margin: 0 auto 1.5rem;
    line-height: 1.68;
}

@media (max-width: 1024px) {
    .nmn-intro {
        padding: 2.5rem 2rem;
    }

    .nmn-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.2rem;
    }

    .nmn-why {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nmn-resource-panel {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 2rem;
    }

    .nmn-resource-panel .nmn-links {
        justify-content: flex-start;
    }

    .journal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .nmn-intro {
        padding: 2rem 1.5rem;
        margin: 3rem auto 1.5rem;
    }

    .nmn-benefits-grid {
        grid-template-columns: 1fr;
    }

    .nmn-why {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .nmn-links {
        flex-direction: column;
    }

    .nmn-links a {
        width: 100%;
        justify-content: center;
    }

    .nmn-resource-panel {
        align-items: stretch;
        padding: 2rem 1.5rem;
    }

    .nmn-resource-panel .nmn-links {
        width: 100%;
        justify-content: center;
    }

    .journal-hero {
        padding: 2rem 1.5rem;
        margin: 2.5rem 0 2rem;
    }

    .journal-grid {
        grid-template-columns: 1fr;
    }

    .journal-card {
        padding: 1.75rem;
    }

    .card-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .journal-cta {
        padding: 2.5rem 1.5rem;
    }
}

.standalone-page {
    background: #f4f4f6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.standalone-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14rem 0 6rem;
}

/* Breadcrumbs */
.breadcrumbs {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0 0.5rem 0;
    font-size: 0.9rem;
    color: #666;
    position: relative;
    z-index: 1;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: #999;
    font-weight: bold;
}

.breadcrumbs a {
    color: #386641;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: #8CD05C;
    text-decoration: underline;
}

.breadcrumbs [aria-current="page"] {
    color: #333;
    font-weight: 600;
}

@media (max-width: 768px) {
    .breadcrumbs {
        padding: 0.8rem 1rem 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .breadcrumbs li:not(:last-child)::after {
        margin-left: 0.3rem;
    }
}

.standalone-wrapper {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.35);
    padding: 2rem;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(47, 79, 61, 0.12);
    max-width: 1200px;
    width: 90%;
    text-align: left;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid rgba(47, 79, 61, 0.12);
}

.standalone-back {
    display: inline-block;
    margin-bottom: 1.5rem;
    color: #386641;
    text-decoration: none;
    font-weight: 600;
}

.standalone-back:hover {
    text-decoration: underline;
}

.standalone-wrapper h1 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    color: #2f4f3d;
    margin-bottom: 0.75rem;
}

.standalone-lead {
    font-size: 1.15rem;
    color: #37463f;
    margin-bottom: 1rem;
}

.standalone-wrapper p {
    color: #4d5b54;
    margin-bottom: 0.75rem;
}

.nmn-production-overview {
    margin-top: 2.5rem;
    margin-bottom: 3rem;
    display: grid;
    gap: 2.5rem;
}

.nmn-production-intro h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
    color: #2f4f3d;
    margin-bottom: 1rem;
}

.nmn-production-intro p {
    font-size: 1.05rem;
}

.nmn-production-diagram {
    margin: 0 auto;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 16px;
    padding: 1.4rem 1.4rem 1.1rem;
    border: 1px solid rgba(47, 79, 61, 0.15);
    box-shadow: 0 12px 28px rgba(47, 79, 61, 0.1);
    text-align: center;
}

.nmn-production-diagram img {
    width: 92%;
    height: auto;
    border-radius: 12px;
    display: block;
    margin: 0 auto 0.8rem;
}

.nmn-production-diagram figcaption {
    font-size: 0.95rem;
    color: #425147;
}

.nmn-production-methods {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.nmn-production-methods article {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(47, 79, 61, 0.14);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 18px 40px rgba(47, 79, 61, 0.14);
}

.nmn-production-methods h2 {
    font-size: clamp(1.6rem, 2.2vw, 2rem);
    color: #2f4f3d;
    margin-bottom: 1rem;
}

.nmn-production-methods p {
    margin-bottom: 1rem;
    color: #45544d;
}

.nmn-production-methods ul {
    padding-left: 1.2rem;
    color: #3f4c45;
}

.nmn-production-methods li {
    margin-bottom: 0.4rem;
}

.nmn-production-table {
    margin: 3rem 0;
}

.nmn-production-table table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 14px 34px rgba(47, 79, 61, 0.14);
}

.nmn-production-table th,
.nmn-production-table td {
    padding: 1rem 1.4rem;
    text-align: left;
    border-bottom: 1px solid rgba(47, 79, 61, 0.1);
}

.nmn-production-table thead {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.85), rgba(56, 102, 65, 0.85));
    color: white;
}

.nmn-production-table tbody tr:nth-child(even) {
    background: rgba(56, 102, 65, 0.05);
}

.nmn-production-quality {
    margin: 3rem 0;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 18px;
    padding: 2.5rem;
    border: 1px solid rgba(47, 79, 61, 0.12);
    box-shadow: 0 18px 42px rgba(47, 79, 61, 0.15);
}

.nmn-production-quality h2 {
    font-size: clamp(1.7rem, 2.4vw, 2.1rem);
    color: #2f4f3d;
    margin-bottom: 1.2rem;
}

.nmn-production-quality p {
    color: #3f4c45;
    margin-bottom: 1.6rem;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.6rem;
}

.quality-grid > div {
    background: white;
    border-radius: 16px;
    padding: 1.6rem;
    border: 1px solid rgba(47, 79, 61, 0.12);
    box-shadow: 0 14px 34px rgba(47, 79, 61, 0.12);
}

.quality-grid h3 {
    color: #2f4f3d;
    margin-bottom: 0.6rem;
}

.quality-grid p {
    margin: 0;
    color: #4a584f;
}

.nmn-production-cta {
    margin-top: 3.5rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.12), rgba(56, 102, 65, 0.15));
    border-radius: 18px;
    padding: 2.4rem;
    border: 1px solid rgba(47, 79, 61, 0.12);
    text-align: center;
    box-shadow: 0 16px 38px rgba(47, 79, 61, 0.1);
}

.nmn-production-cta h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
    color: #2f4f3d;
    margin-bottom: 0.8rem;
}

.nmn-production-cta p {
    color: #3f4c45;
    margin-bottom: 1.6rem;
}

.nmn-production-cta .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Nieuws artikel styling */
.news-article {
    max-width: 900px;
    margin: 0 auto;
}

.article-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #8cd05c;
}

.article-date {
    display: inline-block;
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.article-category {
    display: inline-block;
    background-color: #8cd05c;
    color: #2f4f3d;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-header h1 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

/* Blog sectie styling */
.blog-section {
    margin: 2rem 0;
}

.blog-section h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
    color: #2f4f3d;
    margin-bottom: 1.5rem;
    padding-bottom: 0.6rem;
    border-bottom: 3px solid #8cd05c;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.news-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.news-date {
    display: inline-block;
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.news-category {
    display: inline-block;
    background-color: #8cd05c;
    color: #2f4f3d;
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-card h3 {
    margin: 1rem 0 0.75rem;
    font-size: 1.3rem;
    line-height: 1.4;
}

.news-card h3 a {
    color: #2f4f3d;
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-card h3 a:hover {
    color: #386641;
    text-decoration: underline;
}

.news-card p {
    color: #4d5b54;
    line-height: 1.7;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.read-more {
    display: inline-block;
    color: #386641;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    transition: color 0.2s ease;
}

.read-more:hover {
    color: #2f4f3d;
    text-decoration: underline;
}

.standalone-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.8rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-button {
    background: linear-gradient(135deg, #4CAF50, #6DBB3B);
    color: white;
    box-shadow: 0 12px 30px rgba(76, 175, 80, 0.25);
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(76, 175, 80, 0.3);
}

.secondary-button {
    background: white;
    color: #386641;
    border: 1px solid rgba(47, 79, 61, 0.2);
    box-shadow: 0 8px 24px rgba(47, 79, 61, 0.12);
}

.secondary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(47, 79, 61, 0.18);
}

@media (max-width: 600px) {
    .standalone-wrapper {
        padding: 1.5rem;
        width: 92%;
    }

    .standalone-main {
        padding: 12rem 1.5rem 4rem;
        align-items: flex-start;
    }

    .standalone-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .article-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .article-date {
        display: block;
        margin-bottom: 0.5rem;
    }

    .article-category {
        display: inline-block;
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .news-card {
        padding: 1.2rem;
    }

    .news-card h3 {
        font-size: 1.2rem;
    }

    .news-date {
        display: block;
        margin-bottom: 0.5rem;
    }

    .news-category {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

@media (max-width: 768px) {
    .nmn-production-diagram {
        padding: 1.2rem 1.1rem 1rem;
        max-width: 340px;
    }
}

/* Styling voor voordelen pagina's */
.benefits-overview {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 2rem 0;
}

.benefit-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(47, 79, 61, 0.1);
    box-shadow: 0 8px 24px rgba(47, 79, 61, 0.08);
}

/* Benefit item variant: image on the right (responsive) */
.benefit-item--media-right {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 1.5rem !important;
    flex-wrap: nowrap !important;
}

.benefit-item--media-right .benefit-item__content {
    flex: 1 1 auto;
    min-width: 0;
    order: 1;
}

.benefit-item--media-right .benefit-item__media {
    flex: 0 0 120px !important;
    margin-left: auto !important;
    flex-shrink: 0 !important;
    order: 2;
}

.benefit-item--media-right .benefit-item__media img {
    width: 120px !important;
    height: 120px !important;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(47, 79, 61, 0.12);
    box-shadow: 0 4px 12px rgba(47, 79, 61, 0.10);
    display: block;
}

@media (max-width: 720px) {
    .benefit-item--media-right {
        flex-direction: row !important;
        gap: 1rem !important;
    }

    .benefit-item--media-right .benefit-item__media {
        flex: 0 0 100px !important;
        width: 100px !important;
    }

    .benefit-item--media-right .benefit-item__media img {
        width: 100px !important;
        height: 100px !important;
    }
}

.benefit-item h2 {
    font-size: 1.6rem;
    color: #2f4f3d;
    margin-bottom: 0.75rem;
}

.benefit-item h2 a {
    color: #2f4f3d;
    text-decoration: none;
    transition: color 0.2s ease;
}

.benefit-item h2 a:hover {
    color: #386641;
}

.benefit-item p {
    color: #4d5b54;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.benefit-mechanism {
    background: rgba(140, 208, 92, 0.1);
    padding: 1.2rem;
    border-radius: 10px;
    border-left: 4px solid #8cd05c;
    margin-top: 1rem;
}

.benefit-mechanism strong {
    color: #2f4f3d;
}

.benefit-mechanism a {
    color: #386641;
    text-decoration: none;
    font-weight: 600;
}

.benefit-mechanism a:hover {
    text-decoration: underline;
}

/* Styling voor ervaringen sectie */
.experience-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0;
}

.experience-item {
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 14px;
    border: 1px solid rgba(47, 79, 61, 0.1);
    box-shadow: 0 4px 16px rgba(47, 79, 61, 0.06);
}

/* Experience item variant: image on the right (responsive) */
.experience-item--media-right {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.experience-item--media-right .experience-item__content {
    flex: 1 1 auto;
    min-width: 0;
}

.experience-item--media-right .experience-item__media {
    flex: 0 0 180px;
    margin-left: auto;
}

.experience-item--media-right .experience-item__media img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(47, 79, 61, 0.12);
    box-shadow: 0 6px 18px rgba(47, 79, 61, 0.10);
    display: block;
}

/* Experience item variant: image on the left (responsive) */
.experience-item--media-left {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.experience-item--media-left .experience-item__content {
    flex: 1 1 auto;
    min-width: 0;
}

.experience-item--media-left .experience-item__media {
    flex: 0 0 180px;
    margin-right: auto;
}

.experience-item--media-left .experience-item__media img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(47, 79, 61, 0.12);
    box-shadow: 0 6px 18px rgba(47, 79, 61, 0.10);
    display: block;
}

/* Mechanism item variant: image on the right (responsive) */
.mechanism-item--media-right {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin: 1.5rem 0;
}

.mechanism-item--media-right .mechanism-item__content {
    flex: 1 1 auto;
    min-width: 0;
}

.mechanism-item--media-right .mechanism-item__media {
    flex: 0 0 180px;
    margin-left: auto;
}

.mechanism-item--media-right .mechanism-item__media img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(47, 79, 61, 0.12);
    box-shadow: 0 6px 18px rgba(47, 79, 61, 0.10);
    display: block;
}

@media (max-width: 720px) {
    .experience-item--media-right,
    .experience-item--media-left,
    .mechanism-item--media-right {
        flex-direction: column;
    }

    .experience-item--media-right .experience-item__media,
    .experience-item--media-left .experience-item__media,
    .mechanism-item--media-right .mechanism-item__media {
        flex-basis: auto;
        width: min(320px, 100%);
    }
}

.experience-item h3 {
    font-size: 1.3rem;
    color: #2f4f3d;
    margin-bottom: 0.6rem;
}

.experience-item p {
    color: #4d5b54;
    line-height: 1.7;
    margin-bottom: 0.4rem;
}

.experience-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(47, 79, 61, 0.1);
}

.disclaimer-box {
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    padding: 1rem;
    margin: 1rem 0;
}

.disclaimer-box p {
    margin: 0;
    color: #856404;
    font-size: 0.95rem;
    line-height: 1.6;
}

.related-links {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.6rem;
    margin: 1rem 0;
}

.related-links li {
    padding: 0.5rem 0;
}

.related-links a {
    color: #386641;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.related-links a:hover {
    color: #2f4f3d;
    text-decoration: underline;
}

.related-links a::before {
    content: "→";
    color: #8cd05c;
}

/* Styling voor geschiedenis/timeline pagina */
.history-section {
    margin: 3rem 0;
}

.history-section h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
    color: #2f4f3d;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #8cd05c;
}

.history-timeline {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 2.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #8cd05c, #386641);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-left: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background: #8cd05c;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #8cd05c;
}

.timeline-year {
    font-size: 1.1rem;
    font-weight: 700;
    color: #386641;
    background: rgba(140, 208, 92, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 1rem;
    border-left: 4px solid #8cd05c;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.7);
    padding: 1.8rem;
    border-radius: 14px;
    border: 1px solid rgba(47, 79, 61, 0.1);
    box-shadow: 0 4px 16px rgba(47, 79, 61, 0.06);
}

.timeline-content h3 {
    font-size: 1.4rem;
    color: #2f4f3d;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #4d5b54;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.timeline-content ul {
    color: #4d5b54;
    line-height: 1.8;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.timeline-content ul li {
    margin-bottom: 0.5rem;
}

.insight-box {
    background: rgba(140, 208, 92, 0.1);
    padding: 1.2rem;
    border-radius: 10px;
    border-left: 4px solid #8cd05c;
    margin-top: 1.5rem;
}

.insight-box p {
    margin: 0;
    color: #2f4f3d;
}

.insight-box strong {
    color: #2f4f3d;
}

.discovery-summary {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.summary-item {
    background: rgba(255, 255, 255, 0.7);
    padding: 1.8rem;
    border-radius: 14px;
    border: 1px solid rgba(47, 79, 61, 0.1);
    box-shadow: 0 4px 16px rgba(47, 79, 61, 0.06);
}

.summary-item h3 {
    font-size: 1.3rem;
    color: #2f4f3d;
    margin-bottom: 0.8rem;
}

.summary-item p {
    color: #4d5b54;
    line-height: 1.7;
    margin: 0;
}

.conclusion-box {
    background: rgba(56, 102, 65, 0.1);
    padding: 2rem;
    border-radius: 14px;
    border: 2px solid rgba(56, 102, 65, 0.2);
    margin: 2.5rem 0;
}

.conclusion-box p {
    margin: 0;
    color: #2f4f3d;
    font-size: 1.05rem;
    line-height: 1.7;
}

.conclusion-box strong {
    color: #2f4f3d;
}

@media (max-width: 768px) {
    .benefit-item {
        padding: 1.2rem;
    }

    .benefit-item h2 {
        font-size: 1.4rem;
    }

    .experience-item {
        padding: 1rem;
    }

    .experience-item h3 {
        font-size: 1.2rem;
    }

    .nmn-production-methods article {
        padding: 1.6rem;
    }

    .nmn-production-quality {
        padding: 2rem 1.6rem;
    }

    .nmn-production-cta {
        padding: 2.2rem 1.6rem;
    }

    .nmn-production-cta .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .history-timeline {
        padding-left: 1.5rem;
    }

    .timeline-item {
        padding-left: 2rem;
    }

    .timeline-item::before {
        left: -1.25rem;
        width: 0.8rem;
        height: 0.8rem;
    }

    .timeline-content {
        padding: 1.4rem;
    }

    .timeline-content h3 {
        font-size: 1.2rem;
    }

    .summary-item {
        padding: 1.4rem;
    }

    .summary-item h3 {
        font-size: 1.1rem;
    }
}

/* Styling voor nmn-basics pagina */
.content-section {
    margin: 1.5rem 0;
}

.content-section h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
    color: #2f4f3d;
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 3px solid #8cd05c;
}

.content-section h3 {
    font-size: 1.4rem;
    color: #2f4f3d;
    margin: 1rem 0 0.5rem;
}

.content-section h4 {
    font-size: 1.2rem;
    color: #386641;
    margin: 0.75rem 0 0.4rem;
}

.content-section p {
    color: #4d5b54;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.content-section ul, .content-section ol {
    color: #4d5b54;
    line-height: 1.8;
    margin: 0.75rem 0;
    padding-left: 1.5rem;
}

.content-section li {
    margin-bottom: 0.4rem;
}

.benefits-grid-basic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit-card-basic {
    background: rgba(255, 255, 255, 0.7);
    padding: 1.8rem;
    border-radius: 14px;
    border: 1px solid rgba(47, 79, 61, 0.1);
    box-shadow: 0 4px 16px rgba(47, 79, 61, 0.06);
}

.benefit-card-basic h3 {
    font-size: 1.2rem;
    color: #2f4f3d;
    margin: 0 0 1rem 0;
}

.benefit-card-basic p {
    margin: 0;
    font-size: 0.95rem;
}

.decline-reasons {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.reason-item {
    background: rgba(255, 255, 255, 0.7);
    padding: 1.8rem;
    border-radius: 14px;
    border: 1px solid rgba(47, 79, 61, 0.1);
    box-shadow: 0 4px 16px rgba(47, 79, 61, 0.06);
}

.reason-item h4 {
    font-size: 1.2rem;
    color: #2f4f3d;
    margin: 0 0 0.8rem 0;
}

.reason-item p {
    margin-bottom: 0.8rem;
}

.reason-item ul {
    margin-top: 0.5rem;
}

.comparison-table {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.comparison-item {
    background: rgba(255, 255, 255, 0.7);
    padding: 1.8rem;
    border-radius: 14px;
    border: 1px solid rgba(47, 79, 61, 0.1);
    box-shadow: 0 4px 16px rgba(47, 79, 61, 0.06);
}

.comparison-item h3 {
    font-size: 1.3rem;
    color: #2f4f3d;
    margin: 0 0 1rem 0;
}

.comparison-pros, .comparison-cons {
    margin: 1rem 0;
}

.comparison-pros strong {
    color: #386641;
}

.comparison-cons strong {
    color: #d32f2f;
}

.comparison-pros ul, .comparison-cons ul {
    margin-top: 0.5rem;
}

.timeline-absorption {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
    position: relative;
    padding-left: 2rem;
}

.timeline-absorption::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #8cd05c, #386641);
    border-radius: 2px;
}

.timeline-step {
    position: relative;
    padding-left: 3rem;
}

.timeline-step::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background: #8cd05c;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #8cd05c;
}

.step-time {
    font-size: 1rem;
    font-weight: 700;
    color: #386641;
    background: rgba(140, 208, 92, 0.15);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 0.8rem;
    border-left: 4px solid #8cd05c;
}

.step-content h4 {
    font-size: 1.2rem;
    color: #2f4f3d;
    margin: 0 0 0.5rem 0;
}

.step-content p {
    margin: 0;
    font-size: 0.95rem;
}

.example-cards {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.example-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 1.8rem;
    border-radius: 14px;
    border: 1px solid rgba(47, 79, 61, 0.1);
    box-shadow: 0 4px 16px rgba(47, 79, 61, 0.06);
    border-left: 4px solid #8cd05c;
}

.example-card h3 {
    font-size: 1.3rem;
    color: #2f4f3d;
    margin: 0 0 1rem 0;
}

.example-card p {
    margin-bottom: 0.8rem;
}

.example-card p:last-child {
    margin-bottom: 0;
}

.faq-list {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.7);
    padding: 1.8rem;
    border-radius: 14px;
    border: 1px solid rgba(47, 79, 61, 0.1);
    box-shadow: 0 4px 16px rgba(47, 79, 61, 0.06);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #2f4f3d;
    margin: 0 0 0.8rem 0;
}

.faq-item p {
    margin: 0;
    font-size: 0.95rem;
}

.analogy-box {
    background: rgba(140, 208, 92, 0.1);
    padding: 1.8rem;
    border-radius: 14px;
    border-left: 4px solid #8cd05c;
    margin: 2rem 0;
}

.analogy-box h3 {
    font-size: 1.3rem;
    color: #2f4f3d;
    margin: 0 0 1rem 0;
}

.analogy-box p {
    margin-bottom: 1rem;
}

.analogy-box ul {
    margin-top: 0.5rem;
}

.no-effect-reasons {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.timeline-effects {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
    position: relative;
    padding-left: 2rem;
}

.timeline-effects::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #8cd05c, #386641);
    border-radius: 2px;
}

.timeline-effects .timeline-step {
    position: relative;
    padding-left: 3rem;
}

.timeline-effects .timeline-step::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background: #8cd05c;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #8cd05c;
}

@media (max-width: 768px) {
    .benefits-grid-basic {
        grid-template-columns: 1fr;
    }

    .timeline-absorption {
        padding-left: 1.5rem;
    }

    .timeline-step {
        padding-left: 2rem;
    }

    .timeline-step::before {
        left: -1.25rem;
        width: 0.8rem;
        height: 0.8rem;
    }

    .timeline-effects {
        padding-left: 1.5rem;
    }

    .timeline-effects .timeline-step {
        padding-left: 2rem;
    }

    .timeline-effects .timeline-step::before {
        left: -1.25rem;
        width: 0.8rem;
        height: 0.8rem;
    }
}

/* --- PRELAUNCH SHOP STYLING --- */
.prelaunch-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.prelaunch-hero {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(76, 175, 80, 0.3);
}

.prelaunch-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.prelaunch-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.prelaunch-benefits {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.prelaunch-benefits h3 {
    color: #4CAF50;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.prelaunch-benefits ul {
    list-style: none;
    padding: 0;
}

.prelaunch-benefits li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
}

.prelaunch-benefits li:last-child {
    border-bottom: none;
}

.prelaunch-benefits li strong {
    color: #4CAF50;
}

.prelaunch-signup-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.prelaunch-signup-form h3 {
    color: #4CAF50;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.prelaunch-signup-form .form-group {
    margin-bottom: 1rem;
}

.prelaunch-signup-form input {
    width: 100%;
    max-width: 400px;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.prelaunch-signup-form input:focus {
    outline: none;
    border-color: #4CAF50;
}

.prelaunch-btn {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.prelaunch-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.4);
}

.form-note {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

.prelaunch-countdown {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.prelaunch-countdown h3 {
    color: #4CAF50;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    min-width: 100px;
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.3);
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

/* Responsive design voor prelaunch */
@media (max-width: 768px) {
    .prelaunch-content {
        padding: 1rem;
    }
    
    .prelaunch-hero h2 {
        font-size: 2rem;
    }
    
    .prelaunch-hero p {
        font-size: 1rem;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 1rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
}

/* --- SHOP PAGINA MET PRODUCTTEGELS --- */
.shop-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.shop-header {
    text-align: center;
    margin-bottom: 3rem;
}

.shop-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.shop-header p {
    font-size: 1.2rem;
    color: #666;
}

.product-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

/* Product item wrapper full - bevat alles voor één product */
.product-item-wrapper-full {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
    clear: both;
}

/* CSS Variable voor product foto kolom breedte - PAS HIER DE BREEDTE AAN */
:root {
    --product-photo-column-width: 450px;
}

/* Product item top section - grid met foto en winkelwagen */
/* Alleen voor product detail pagina */
#product-detail-container .product-item-top-section {
    width: 100%;
    max-width: 100%;
    display: grid !important;
    grid-template-columns: var(--product-photo-column-width, 50px) 1fr !important;
    gap: 2rem !important;
    align-items: start !important;
    margin-bottom: 1.5rem !important;
}

/* Product item container - wrapper voor hele product item (backwards compatibility) */
.product-item-container {
    width: 100%;
    margin-bottom: 3rem;
    display: block;
    clear: both;
    position: relative;
}

/* Product item wrapper - backwards compatibility */
.product-item-wrapper {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: 50px 1fr !important;
    gap: 2rem;
    align-items: start;
    margin-bottom: 1.5rem;
}

.product-card {
    width: 100%;
    max-width: 100%;
    margin: 0;
    background: white;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(47, 79, 61, 0.08);
    box-shadow: 0 12px 30px rgba(47, 79, 61, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

/* Product card binnen product detail pagina - breedte wordt bepaald door grid kolom */
#product-detail-container .product-item-top-section .product-card {
    width: var(--product-photo-column-width, 50px) !important;
    max-width: var(--product-photo-column-width, 50px) !important;
    min-width: var(--product-photo-column-width, 50px) !important;
    flex-shrink: 0 !important;
}

/* Product image kleiner - alleen voor shop, niet voor product detail */
.product-card .product-image img:not(#product-detail-container .product-image img) {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    max-height: 50px !important;
    max-width: 50px !important;
}

/* Product detail layout: desktop = grid (foto links, tekst rechts); mobiel = kolom (foto boven, tekst onder) */
#product-detail-container .product-detail-layout {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 1.5rem;
}
#product-detail-container .product-detail-photo {
    width: 450px;
    max-width: 450px;
    min-width: 0;
    margin: 0;
}
#product-detail-container .product-detail-image {
    width: 100%;
    height: auto;
    min-height: 450px;
}

/* Knop Toevoegen aan Winkelwagen:zelfde donkergroen als navbar */
#product-detail-container .product-detail-add-cart-btn,
.product-detail-add-cart-btn {
    background: #386641 !important;
    color: white !important;
}
#product-detail-container .product-detail-add-cart-btn:hover:not(:disabled),
.product-detail-add-cart-btn:hover:not(:disabled) {
    background: #2d4f33 !important;
}

/* Product detail pagina - foto gebruikt volledige container breedte */
#product-detail-container .product-card .product-image {
    width: 100% !important;
    height: auto !important;
    min-height: 450px !important;
}

#product-detail-container .product-card .product-image img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: none !important;
    object-fit: contain !important;
}

/* Mobiel: productpagina – foto boven, daaronder tekst en Toevoegen aan Winkelwagen */
@media (max-width: 768px) {
    #product-detail-container {
        max-width: 100% !important;
        padding: 1rem !important;
    }
    /* Eén kolom: eerst foto, dan titel/prijs/aantal/knop */
    #product-detail-container .product-detail-layout {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: unset !important;
        gap: 1.5rem !important;
    }
    /* Container foto: smallere breedte, gecentreerd */
    #product-detail-container .product-detail-photo {
        width: 80% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
    }
    #product-detail-container .product-detail-image {
        width: 100% !important;
        min-height: 0 !important;
    }
    #product-detail-container .product-detail-image img {
        width: 100% !important;
        max-width: 100% !important;
    }
    /* Fallback voor oude HTML zonder product-detail-* classes */
    #product-detail-container .product-item-top-section {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: unset !important;
    }
    #product-detail-container .product-item-top-section > .product-card {
        width: 80% !important;
        max-width: 280px !important;
        min-width: 0 !important;
        margin: 0 auto !important;
    }
    #product-detail-container .product-item-top-section .product-image {
        min-height: 0 !important;
    }
    /* Tekstblok en knop volle breedte onder de foto */
    #product-detail-container .product-detail-info {
        width: 100% !important;
        min-width: 0 !important;
    }
    /* Volgorde op mobiel: prijs → aantal → knop → 2/3 stuks → specificaties */
    #product-detail-container .product-detail-specs {
        margin-top: 1.5rem !important;
    }
    #product-detail-container .product-detail-add-cart-btn {
        display: block !important;
        width: 100% !important;
    }
}

/* Product beschrijving - volledige breedte binnen flex container, begint links */
.product-item-wrapper-full > .product-description-full {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 1.5rem !important;
    clear: both !important;
    display: block !important;
    float: none !important;
    position: relative !important;
    left: 0 !important;
    right: auto !important;
    grid-column: unset !important;
    grid-row: unset !important;
    box-sizing: border-box !important;
    align-self: flex-start !important;
    flex: 0 0 100% !important;
}

/* Algemene product beschrijving styling */
.product-description-full {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 1.5rem !important;
    clear: both !important;
    display: block !important;
    float: none !important;
    position: relative !important;
    left: 0 !important;
    right: auto !important;
    grid-column: unset !important;
    grid-row: unset !important;
    box-sizing: border-box !important;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(47, 79, 61, 0.14);
}

.product-image {
    position: relative;
    width: 100%;
    height: 210px;
    overflow: hidden;
    background: #f6f8f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.4);
}

.product-info {
    padding: 1.2rem 1.3rem 1.4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}

.product-info h3 {
    font-size: 1.2rem;
    color: #2f4f3d;
    margin: 0;
}

.product-description {
    color: #516055;
    font-size: 0.92rem;
    line-height: 1.5;
    flex: 1;
    margin: 0;
}

.product-footer {
    border-top: 1px solid rgba(47, 79, 61, 0.08);
    padding-top: 0.75rem;
    margin-top: 0;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #4CAF50;
}

.product-quantity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin: 0.75rem 0 0.25rem;
}

.product-quantity label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4a5a50;
}

.product-quantity select {
    flex: 1;
    padding: 0.45rem 0.6rem;
    border-radius: 8px;
    border: 1px solid rgba(47, 79, 61, 0.2);
    font-size: 0.95rem;
    background: #f9fbf8;
    color: #2f4f3d;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-quantity select:focus {
    border-color: #8cd05c;
    box-shadow: 0 0 0 3px rgba(140, 208, 92, 0.2);
    outline: none;
}

.product-card button,
.product-card .btn-primary,
.product-add-btn {
    width: 100%;
    padding: 0.75rem;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #4CAF50, #71C158);
    color: white;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card button:hover,
.product-card .btn-primary:hover,
.product-add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(76, 175, 80, 0.25);
}

/* Prelaunch CTA Sectie */
.prelaunch-cta {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    padding: 4rem 2rem;
    border-radius: 16px;
    margin-top: 3rem;
    box-shadow: 0 8px 32px rgba(76, 175, 80, 0.3);
}

.prelaunch-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.prelaunch-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.prelaunch-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.prelaunch-benefits-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.benefit-icon {
    font-size: 2.5rem;
}

.benefit-item span:last-child {
    font-weight: 600;
    font-size: 1rem;
}

.prelaunch-signup-form-inline {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.inline-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.inline-form input {
    flex: 1;
    min-width: 200px;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.inline-form input:focus {
    outline: none;
    border-color: #4CAF50;
}

.prelaunch-btn-cta {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.prelaunch-btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.4);
}

.form-note-inline {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

/* Responsive design voor shop */
@media (max-width: 768px) {
    .shop-header h2 {
        font-size: 2rem;
    }
    
    .shop-header p {
        font-size: 1rem;
    }
    
    .product-grid {
        gap: 1.5rem;
        justify-content: center;
    }
    
    .product-item-container {
        margin-bottom: 2rem;
    }
    
    .product-item-wrapper {
        width: 100%;
        margin-bottom: 1rem;
        grid-template-columns: 1fr !important;
    }
    
    .product-card {
        width: 100%;
        max-width: 100%;
    }
    
    .product-description-full {
        margin-top: 1rem;
        padding: 1rem !important;
    }
    
    .prelaunch-cta {
        padding: 3rem 1.5rem;
    }
    
    .prelaunch-cta h2 {
        font-size: 2rem;
    }
    
    .prelaunch-subtitle {
        font-size: 1.1rem;
    }
    
    .prelaunch-benefits-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .inline-form {
        flex-direction: column;
    }
    
    .inline-form input {
        min-width: 100%;
    }
}

/* --- HOME PAGINA STYLING --- */
.home-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem 2rem 1rem;
}

.home-products-section {
    margin: 3rem 0;
    text-align: center;
}

.home-products-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.view-all-products {
    text-align: center;
    margin-top: 2rem;
}

.btn-view-all {
    display: inline-block;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.3);
}

.btn-view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.4);
}

.signup-form-home {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.signup-form-home h3 {
    color: #4CAF50;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.signup-form-home p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Responsive design voor home */
@media (max-width: 768px) {
    .home-products-section h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .signup-form-home {
        padding: 1.5rem;
    }
    
    .signup-form-home h3 {
        font-size: 1.5rem;
    }
}

/* --- ADMIN DASHBOARD STYLING --- */
.admin-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.admin-welcome {
    text-align: center;
    margin-bottom: 3rem;
}

.admin-welcome h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.admin-welcome p {
    font-size: 1.2rem;
    color: #666;
}

.admin-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.admin-menu-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.admin-menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.admin-menu-card:hover::before {
    transform: scaleX(1);
}

.admin-menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.admin-menu-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.admin-menu-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.admin-menu-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    flex: 1;
}

.admin-menu-arrow {
    align-self: flex-end;
    font-size: 1.5rem;
    color: #4CAF50;
    margin-top: 1rem;
    transition: transform 0.3s ease;
}

.admin-menu-card:hover .admin-menu-arrow {
    transform: translateX(5px);
}

.admin-quick-stats {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.admin-quick-stats h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #4CAF50;
}

.stat-label {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.stat-value {
    display: block;
    color: #333;
    font-size: 2rem;
    font-weight: 700;
}

/* Responsive design voor admin dashboard */
@media (max-width: 768px) {
    .admin-welcome h2 {
        font-size: 2rem;
    }
    
    .admin-welcome p {
        font-size: 1rem;
    }
    
    .admin-menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
}

/* === CHECKOUT & CART STYLING === */
.checkout-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    margin-top: 2rem;
}

.checkout-form {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(47, 79, 61, 0.1);
}

.checkout-form form {
    line-height: 1.5;
    width: 100%;
}

.checkout-form form > * {
    display: block;
    width: 100%;
}

.checkout-form h2 {
    color: #386641;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e8f5e9;
}

.checkout-summary {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(47, 79, 61, 0.1);
    height: fit-content;
    position: sticky;
    top: 250px;
}

.checkout-summary h2 {
    color: #386641;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e8f5e9;
}

.form-group {
    margin-bottom: 1.5rem;
    display: block !important;
    width: 100% !important;
    clear: both;
}

.form-group label {
    display: block !important;
    margin-bottom: 0.75rem;
    color: #2f4f3d;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.5;
    width: 100%;
    text-align: left;
}

.form-group input,
.form-group select {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0.85rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    line-height: 1.5;
    transition: all 0.2s ease;
    background: #fafafa;
    color: #2f4f3d;
    margin-top: 0.25rem;
    display: block;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #8CD05C;
    background: white;
    box-shadow: 0 0 0 4px rgba(140, 208, 92, 0.15);
}

.form-row {
    display: block !important;
    width: 100% !important;
    gap: 0;
}

.form-row .form-group {
    width: 100% !important;
    margin-bottom: 1.5rem;
    display: block !important;
    float: none !important;
    clear: both !important;
}

.error-message {
    background: #fee;
    border: 2px solid #fcc;
    color: #c33;
    padding: 1.25rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.error-message ul {
    margin: 0;
    padding-left: 1.5rem;
}

.error-message li {
    margin-bottom: 0.5rem;
}

/* Disclaimer checkbox container op checkout pagina */
.disclaimer-checkbox-container {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #fff9e6;
    border: 2px solid #ffc107;
    border-radius: 12px;
}

.disclaimer-checkbox-container .disclaimer-box {
    background: #fff9e6;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.disclaimer-checkbox-container .disclaimer-box strong {
    color: #856404;
    display: block;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.disclaimer-checkbox-container .disclaimer-box p {
    color: #856404;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0.75rem 0;
}

.disclaimer-checkbox-container .disclaimer-box ul {
    color: #856404;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0.75rem 0;
    padding-left: 1.5rem;
}

.disclaimer-checkbox-container .disclaimer-box a {
    color: #856404;
    text-decoration: underline;
    font-weight: 600;
}

.disclaimer-checkbox-container .disclaimer-box a:hover {
    color: #664d03;
}

.disclaimer-checkbox-container .checkbox-group {
    margin-top: 1rem;
    margin-bottom: 0;
}

.disclaimer-checkbox-container .checkbox-label {
    display: flex !important;
    align-items: flex-start;
    cursor: pointer;
    padding: 1rem;
    background: white;
    border: 2px solid #ffc107;
    border-radius: 8px;
    transition: all 0.2s ease;
    gap: 0.75rem;
}

.disclaimer-checkbox-container .checkbox-label:hover {
    background: #fffef7;
    border-color: #ffb300;
}

.disclaimer-checkbox-container .checkbox-label input[type="checkbox"] {
    margin: 0 !important;
    margin-top: 0.25rem !important;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px;
    cursor: pointer;
    flex-shrink: 0;
    border: 2px solid #856404;
    border-radius: 4px;
    accent-color: #ffc107;
}

.disclaimer-checkbox-container .checkbox-label input[type="checkbox"]:checked {
    background-color: #ffc107;
    border-color: #ffc107;
}

.disclaimer-checkbox-container .checkbox-text {
    flex: 1;
    color: #2f4f3d;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: normal;
}

.disclaimer-checkbox-container .checkbox-text strong {
    color: #c33;
}

/* Terms and newsletter checkboxes container */
.terms-newsletter-checkboxes {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
}

.terms-newsletter-checkboxes .checkbox-group {
    margin-bottom: 1rem;
}

.terms-newsletter-checkboxes .checkbox-group:last-child {
    margin-bottom: 0;
}

.terms-newsletter-checkboxes .checkbox-label {
    display: flex !important;
    align-items: flex-start;
    cursor: pointer;
    padding: 0.75rem;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    transition: all 0.2s ease;
    gap: 0.75rem;
}

.terms-newsletter-checkboxes .checkbox-label:hover {
    background: #f8f9fa;
    border-color: #8CD05C;
}

.terms-newsletter-checkboxes .checkbox-label input[type="checkbox"] {
    margin: 0 !important;
    margin-top: 0.25rem !important;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    cursor: pointer;
    flex-shrink: 0;
    border: 2px solid #495057;
    border-radius: 4px;
    accent-color: #8CD05C;
}

.terms-newsletter-checkboxes .checkbox-label input[type="checkbox"]:checked {
    background-color: #8CD05C;
    border-color: #8CD05C;
}

.terms-newsletter-checkboxes .checkbox-text {
    flex: 1;
    color: #2f4f3d;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: normal;
}

.terms-newsletter-checkboxes .checkbox-text strong {
    color: #c33;
}

.terms-newsletter-checkboxes .checkbox-text a {
    color: #386641;
    text-decoration: underline;
}

.terms-newsletter-checkboxes .checkbox-text a:hover {
    color: #2f4f3d;
}

/* Groepering voor terms en disclaimer checkboxes */
.terms-disclaimer-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem 1rem;
    background: #ffffff;
    border: 2px solid #e8f5e9;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.terms-disclaimer-group .checkbox-group {
    margin-bottom: 0;
}

.terms-newsletter-checkboxes .terms-disclaimer-group .checkbox-label {
    background: transparent !important;
    border: none !important;
    padding: 0.125rem 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
}

.terms-newsletter-checkboxes .terms-disclaimer-group .checkbox-label:hover {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.order-items {
    margin-bottom: 1.5rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e8f5e9;
}

.order-item:last-child {
    border-bottom: none;
}

.item-name {
    flex: 1;
    color: #2f4f3d;
    font-weight: 500;
}

.item-quantity {
    color: #666;
    margin: 0 1rem;
    font-size: 0.9rem;
}

.item-price {
    color: #386641;
    font-weight: 600;
    min-width: 80px;
    text-align: right;
}

/* Shipping method selector (in formulier) */
.shipping-method-selector {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
}

.shipping-method-selector h3 {
    color: #386641;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 0;
}

.shipping-method-selector h3 {
    color: #386641;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.shipping-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.shipping-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    transition: all 0.2s ease;
    gap: 1rem;
}

.shipping-option:hover {
    border-color: #8CD05C;
    background: #f8fff8;
}

.shipping-option input[type="radio"] {
    margin: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #8CD05C;
    flex-shrink: 0;
}

.shipping-option input[type="radio"]:checked + .shipping-option-content {
    color: #386641;
}

.shipping-option:has(input[type="radio"]:checked) {
    border-color: #8CD05C;
    background: #f0f8f0;
    box-shadow: 0 0 0 3px rgba(140, 208, 92, 0.1);
}

.shipping-option-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.shipping-option-content strong {
    color: #2f4f3d;
    font-size: 1rem;
    font-weight: 600;
}

.shipping-description {
    color: #666;
    font-size: 0.85rem;
}

.shipping-price {
    color: #386641;
    font-weight: 600;
    font-size: 0.95rem;
    margin-left: auto;
    margin-top: 0.25rem;
}

/* Payment method selector */
.payment-method-selector {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
}

.payment-method-selector h3 {
    color: #386641;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 0;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.payment-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    transition: all 0.2s ease;
    gap: 1rem;
}

.payment-option:hover {
    border-color: #8CD05C;
    background: #f8fff8;
}

.payment-option input[type="radio"] {
    margin: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #8CD05C;
    flex-shrink: 0;
}

.payment-option input[type="radio"]:checked + .payment-option-content {
    color: #386641;
}

.payment-option:has(input[type="radio"]:checked) {
    border-color: #8CD05C;
    background: #f0f8f0;
    box-shadow: 0 0 0 3px rgba(140, 208, 92, 0.1);
}

.payment-option-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.payment-option-content strong {
    color: #2f4f3d;
    font-size: 1rem;
    font-weight: 600;
}

.payment-description {
    color: #666;
    font-size: 0.85rem;
}

.payment-benefit {
    color: #386641;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

/* Order summary totals */
.order-summary-totals {
    padding-top: 1.5rem;
    border-top: 2px solid #e8f5e9;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    color: #2f4f3d;
}

.summary-row.total-row {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e8f5e9;
    font-size: 1.25rem;
}

.summary-row.total-row strong {
    font-size: 1.5rem;
    color: #386641;
}

.summary-vat {
    display: block;
    text-align: right;
    color: #666;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.order-total {
    padding-top: 1.5rem;
    border-top: 2px solid #e8f5e9;
    text-align: center;
}

.order-total strong {
    display: block;
    font-size: 1.75rem;
    color: #386641;
    margin-bottom: 0.25rem;
}

.order-total small {
    color: #666;
    font-size: 0.9rem;
}

.btn-primary {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #4CAF50, #6DBB3B);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 1.5rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(76, 175, 80, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Cart Styling */
.cart-container {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(47, 79, 61, 0.1);
    margin-top: 2rem;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.cart-table thead {
    background: #f8f9fa;
}

.cart-table th {
    text-align: left;
    padding: 1.25rem 1rem;
    color: #386641;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e8f5e9;
}

.cart-table th:last-child {
    text-align: center;
}

.cart-table td {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid #e8f5e9;
    vertical-align: middle;
}

.cart-table tbody tr:hover {
    background: #fafafa;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 1rem;
}

.cart-item-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-item-name {
    font-weight: 600;
    color: #2f4f3d;
    margin-bottom: 0.25rem;
}

.cart-item-sku {
    font-size: 0.85rem;
    color: #666;
}

.cart-quantity-input {
    width: 70px;
    padding: 0.6rem;
    text-align: center;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.cart-quantity-input:focus {
    outline: none;
    border-color: #8CD05C;
}

.cart-update-btn {
    padding: 0.6rem 1.2rem;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-left: 0.5rem;
    transition: background 0.2s ease;
}

.cart-update-btn:hover {
    background: #45a049;
}

.cart-remove-btn {
    padding: 0.6rem 1.2rem;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.cart-remove-btn:hover {
    background: #c82333;
}

.cart-summary {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.cart-summary h2 {
    color: #386641;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e8f5e9;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #386641;
    padding-top: 1rem;
    border-top: 2px solid #e8f5e9;
    margin-top: 1rem;
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(47, 79, 61, 0.1);
}

.empty-cart p {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Responsive Checkout & Cart */
@media (max-width: 968px) {
    .checkout-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .checkout-summary {
        position: static;
        order: -1;
    }
    
    .form-row {
        display: block;
    }
    
    .cart-table {
        font-size: 0.9rem;
    }
    
    .cart-table th,
    .cart-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .cart-item-image {
        width: 60px;
        height: 60px;
    }
    
    .cart-quantity-input {
        width: 60px;
        padding: 0.5rem;
    }
}

/* Email Protection - Maakt email adressen moeilijker te scrapen voor bots */
.protected-email-display {
    unicode-bidi: bidi-override;
    direction: ltr;
}

.protected-email-display span {
    display: inline;
    unicode-bidi: normal;
    direction: ltr;
}

/* Reverse obfuscation - sommige bots zoeken naar @ in tekst, dit maakt het moeilijker */
.protected-email-display span:nth-child(2)::before {
    content: '';
}

/* SPA Winkelwagen (index.php?page=cart) - basis + mobiel verticaal */
#cart-content {
    max-width: 100%;
    overflow-x: hidden;
}
.spa-cart-items {
    margin-bottom: 2rem;
}
.spa-cart-item-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(47, 79, 61, 0.08);
    margin-bottom: 1rem;
    overflow: hidden;
}
.spa-cart-item-inner {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.25rem;
}
/* Mobiel/tablet: direct verticaal (ook voor viewports > 768px) */
@media (max-width: 992px) {
    #cart-content .spa-cart-item-inner,
    .spa-cart-item-inner {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    #cart-content .spa-cart-item-product,
    .spa-cart-item-product {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
    }
    #cart-content .spa-cart-item-product .spa-cart-item-image,
    .spa-cart-item-product .spa-cart-item-image {
        width: 100% !important;
        max-width: 220px !important;
        height: auto !important;
        aspect-ratio: 1;
        object-fit: cover;
        border-radius: 12px;
    }
    #cart-content .spa-cart-item-actions,
    .spa-cart-item-actions {
        align-items: stretch !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: space-between !important;
        padding-top: 1rem;
        border-top: 1px solid #e8f5e9;
    }
    #cart-content .spa-cart-remove-btn,
    .spa-cart-remove-btn {
        width: 100%;
        order: 3;
    }
}
.spa-cart-item-product {
    display: flex;
    gap: 1rem;
    flex: 1;
    min-width: 0;
}
.spa-cart-item-product .spa-cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}
.spa-cart-item-details {
    min-width: 0;
}
.spa-cart-item-name {
    margin: 0 0 0.35rem 0;
    color: #2f4f3d;
    font-size: 1.05rem;
}
.spa-cart-item-sku, .cart-item-original-price {
    margin: 0 0 0.25rem 0;
    color: #666;
    font-size: 0.9rem;
}
.cart-item-original-price { text-decoration: line-through; }
.spa-cart-item-volume, .spa-cart-item-volume-label, .spa-cart-item-price {
    margin: 0.2rem 0 0 0;
    font-size: 0.95rem;
}
.spa-cart-item-price { color: #386641; font-weight: 600; }
.spa-cart-item-volume-label { color: #2e7d32; }
.spa-cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    flex-shrink: 0;
}
.spa-cart-qty-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.spa-cart-qty-label { color: #666; font-size: 0.9rem; }
.spa-cart-qty-controls {
    display: flex;
    align-items: center;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}
.spa-cart-qty-btn {
    padding: 0.5rem 0.75rem;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: #333;
}
.spa-cart-qty-input {
    width: 56px;
    padding: 0.5rem;
    border: none;
    text-align: center;
    font-weight: 600;
}
.spa-cart-subtotal-row { text-align: right; }
.spa-cart-subtotal-label { display: block; color: #666; font-size: 0.9rem; }
.spa-cart-subtotal-value { font-weight: 600; font-size: 1.1rem; color: #333; }
.spa-cart-remove-btn {
    padding: 0.5rem 1rem;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Mobiel: checkout en winkelwagen verticale opbouw (geen horizontaal vegen) */
@media (max-width: 992px) {
    .checkout-container {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    .checkout-summary {
        order: -1;
    }
    .checkout-form .form-row {
        flex-direction: column !important;
    }
    .checkout-form .form-row .form-group {
        min-width: 100% !important;
    }
    /* cart.php: kaart per product verticaal */
    .cart-table {
        display: block;
        overflow-x: visible;
        width: 100%;
    }
    .cart-table thead {
        display: none;
    }
    .cart-table tbody tr {
        display: flex;
        flex-direction: column;
        margin-bottom: 1.5rem;
        border: 1px solid #e8f5e9;
        border-radius: 12px;
        padding: 1rem;
        background: white;
        box-shadow: 0 2px 8px rgba(47, 79, 61, 0.08);
    }
    .cart-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 0;
        border-bottom: 1px solid #f0f0f0;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .cart-table td:last-child {
        border-bottom: none;
    }
    .cart-table td:before {
        content: attr(data-label);
        font-weight: 600;
        color: #386641;
        margin-right: 0.5rem;
        flex-shrink: 0;
    }
    .cart-table td[data-label=""]:before {
        content: none;
    }
    .cart-table td[data-label="Product"] {
        flex-direction: column;
        align-items: stretch;
        padding-top: 0;
    }
    .cart-table td[data-label="Product"]:before {
        display: none;
    }
    .cart-item-info {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    .cart-item-info .cart-item-image {
        width: 100%;
        max-width: 200px;
        height: auto;
        aspect-ratio: 1;
        object-fit: cover;
        border-radius: 10px;
        margin: 0 auto;
    }
    .cart-item-details {
        min-width: 0;
    }
    .cart-qty-form {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }
    .cart-quantity-input {
        width: 64px;
        padding: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .checkout-form,
    .checkout-summary,
    .cart-container {
        padding: 1rem;
    }
    
    .checkout-container {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .checkout-summary {
        order: -1;
    }
    
    .checkout-form .form-row {
        flex-direction: column !important;
    }
    
    .checkout-form .form-row .form-group {
        min-width: 100% !important;
    }
    
    /* Winkelwagen: kaart per product, alles onder elkaar */
    .cart-table {
        display: block;
        overflow-x: visible;
        width: 100%;
    }
    
    .cart-table thead {
        display: none;
    }
    
    .cart-table tbody tr {
        display: flex;
        flex-direction: column;
        margin-bottom: 1.5rem;
        border: 1px solid #e8f5e9;
        border-radius: 12px;
        padding: 1rem;
        background: white;
        box-shadow: 0 2px 8px rgba(47, 79, 61, 0.08);
    }
    
    .cart-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 0;
        border-bottom: 1px solid #f0f0f0;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .cart-table td:last-child {
        border-bottom: none;
    }
    
    .cart-table td:before {
        content: attr(data-label);
        font-weight: 600;
        color: #386641;
        margin-right: 0.5rem;
        flex-shrink: 0;
    }
    
    .cart-table td[data-label=""]:before {
        content: none;
    }
    
    /* Eerste cel: productplaatje + naam volle breedte, verticaal */
    .cart-table td[data-label="Product"] {
        flex-direction: column;
        align-items: stretch;
        padding-top: 0;
    }
    
    .cart-table td[data-label="Product"]:before {
        display: none;
    }
    
    .cart-item-info {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    
    .cart-item-info .cart-item-image {
        width: 100%;
        max-width: 200px;
        height: auto;
        aspect-ratio: 1;
        object-fit: cover;
        border-radius: 10px;
        margin: 0 auto;
    }
    
    .cart-item-details {
        min-width: 0;
    }
    
    .cart-qty-form {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .cart-quantity-input {
        width: 64px;
        padding: 0.5rem;
        text-align: center;
    }
    
    /* SPA winkelwagen: verticale kaart op mobiel (geen vegen) */
    .spa-cart-item-inner {
        flex-direction: column;
        align-items: stretch;
    }
    .spa-cart-item-product {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .spa-cart-item-product .spa-cart-item-image {
        width: 100%;
        max-width: 200px;
        height: auto;
        aspect-ratio: 1;
        object-fit: cover;
        border-radius: 12px;
    }
    .spa-cart-item-actions {
        align-items: stretch;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 1rem;
        padding-top: 0.75rem;
        border-top: 1px solid #e8f5e9;
    }
    .spa-cart-qty-row {
        order: 1;
    }
    .spa-cart-subtotal-row {
        order: 2;
        text-align: right;
    }
    .spa-cart-remove-btn {
        order: 3;
        width: 100%;
    }
}

/* ------------------------------------------------------------
   Cookie banner (minimal)
------------------------------------------------------------ */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(17, 24, 39, 0.92);
    color: #fff;
    padding: 14px 16px;
    backdrop-filter: blur(6px);
}

.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
}

.cookie-banner__title {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.02em;
    margin-bottom: 4px;
}

.cookie-banner__desc {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    line-height: 1.4;
}

.cookie-banner__link {
    color: #fff;
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-btn {
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.08);
    color: #fff;
    padding: 10px 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: transform 0.08s ease, background 0.15s ease, border-color 0.15s ease;
}

.cookie-btn:hover {
    transform: translateY(-1px);
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.35);
}

.cookie-btn--primary {
    background: var(--primary-color, #4CAF50);
    border-color: rgba(255,255,255,0.15);
}

.cookie-btn--primary:hover {
    background: rgba(76, 175, 80, 0.92);
}

.cookie-btn--danger {
    background: rgba(239, 68, 68, 0.18);
    border-color: rgba(239, 68, 68, 0.35);
}

.cookie-btn--danger:hover {
    background: rgba(239, 68, 68, 0.28);
}

@media (max-width: 768px) {
    .cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
    }
    .cookie-banner__actions {
        justify-content: stretch;
    }
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}