:root {
    --primary-color: #B06D76; /* Soft medical pink */
    --accent-color: #c47581; /* Soft accent pink */
    --medical-blue: #2C5F7C; /* Medical blue */
    --medical-teal: #0D7377; /* Medical teal */
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-dark: #2c2c2c;
    --text-light: #6c757d;
    --white: #ffffff;
    --border-color: #e9ecef;
}

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

/* Scroll offset zodat fixed navbar doelsectie niet verbergt */
html {
    scroll-padding-top: 130px;
}

@media (max-width: 991.98px) {
    html {
        scroll-padding-top: 170px;
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Se.product-detail-headergoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    padding-top: 0;
    background-color: var(--white);
}

/* Hero Logo Section */
.hero-logo-section {
    background: #c47581 url('assets/images/curve.png') no-repeat bottom center;
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.hero-logo-large {
    width: 500px;
    height: 500px;
    object-fit: contain;
    animation: fadeInScale 0.8s ease-out;
}

@media (max-width: 768px) {
    .hero-logo-large {
        max-width: 100%;
        width: auto;
        height: auto;
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Quiz Section */
.quiz-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Navigation - Medical Style */
.navbar {
    
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    padding: 0;
    height: 160px;
    min-height: 160px;
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 1;
    background: #c47581;
    visibility: visible;
}

.navbar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #c47581 url('assets/images/Curve.png') no-repeat center center;
    opacity: 0.3;
    z-index: 0;
}

.navbar.scrolled {
    padding: 0;
    height: 90px;
    min-height: 90px;
}

.navbar .container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
    height: 100%;
    padding-bottom: 0.5rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.navbar-logo {
    height: 110px;
    width: auto;
    max-width: 300px;
    display: block;
    object-fit: contain;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-logo {
    height: 70px;
    width: auto;
    max-width: 200px;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}



.navbar-nav {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.navbar-nav-left {
    margin-right: auto;
    padding-right: 2rem;
}

.navbar-nav-right {
    margin-left: auto;
    padding-left: 2rem;
}

.navbar-nav .nav-link {
    color: #FFF !important;
    text-transform: uppercase !important;
    margin: 0 0.75rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: 0.5px;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #000000 !important;
    opacity: 0.7;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #000000;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Navbar Toggler Button */
.navbar-toggler {
    border-color: #FFF;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25);
}

/* Quiz Bar - Sticky Top Bar */
.quiz-bar-below {
    position: relative;
    width: 100%;
    background: transparent;
    z-index: 999;
    padding: 3rem 2.5rem;
    margin: 0;
}

.quiz-intro {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 0 2rem;
}

.quiz-intro-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.quiz-intro-title.text-white {
    color: #ffffff !important;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.quiz-intro-text {
    font-size: 1.05rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.quiz-intro-text.text-white {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.quiz-bar-below .container {
    background: transparent;
    padding: 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quiz-bar-below .quiz-form-inline {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 50%;
    max-width: 800px;
    margin: 0 auto;
}

.quiz-bar-sticky {
    position: fixed;
    top: 280px;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 1.25rem 0;
    min-height: 80px;
    transition: top 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled ~ #quiz-bar,
.quiz-bar-sticky.scrolled {
    top: 100px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.quiz-bar-sticky .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.quiz-form-inline {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    width: 100%;
}

.quiz-question-inline {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
    width: 100%;
}

.quiz-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 0 0 40%;
    min-width: 200px;
}

.quiz-label-text {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.quiz-label-description {
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.9rem;
    line-height: 1.5;
}

.quiz-options-inline {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
    flex: 1;
    min-width: 0;
}

.form-check-inline-custom {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0.75rem 1.25rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 0.75rem;
    width: 100%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.form-check-inline-custom:has(input:checked) {
    border-color: var(--primary-color);
    background: rgba(176, 109, 118, 0.08);
    box-shadow: 0 2px 4px rgba(176, 109, 118, 0.15);
}

.form-check-inline-custom:hover {
    border-color: var(--primary-color);
    background: rgba(176, 109, 118, 0.05);
    box-shadow: 0 2px 4px rgba(176, 109, 118, 0.1);
}

.form-check-inline-custom input[type="radio"] {
    margin: 0;
    margin-right: 0;
    flex-shrink: 0;
    order: 1;
}

.form-check-inline-custom input[type="radio"]:checked ~ label {
    color: var(--accent-color);
    font-weight: 500;
}

.form-check-inline-custom input[type="radio"]:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.form-check-inline-custom label {
    margin: 0;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-dark);
    order: 2;
    flex: 1;
    font-weight: 400;
}

.form-check-inline-custom:has(input:checked) label {
    color: var(--primary-color);
    font-weight: 500;
}

.quiz-buttons-inline {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-shrink: 0;
    margin-left: auto;
}

.quiz-bar-below .btn {
    padding: 0.625rem 1.5rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.quiz-bar-below .btn-outline-light {
    border-color: var(--text-dark);
    color: var(--text-dark);
    background-color: transparent;
}

.quiz-bar-below .btn-outline-light:hover {
    background-color: var(--text-dark);
    border-color: var(--text-dark);
    color: #ffffff;
}

.quiz-bar-below .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.quiz-bar-below .btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(176, 109, 118, 0.3);
}

.quiz-bar-sticky .btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    border-radius: 6px;
}

.quiz-bar-sticky .btn-outline-light {
    border-color: var(--border-color);
    color: var(--text-dark);
}

.quiz-bar-sticky .btn-outline-light:hover {
    background-color: var(--light-bg);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.quiz-bar-sticky .btn-light {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.quiz-bar-sticky .btn-light:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.result-inline {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.recommendation-inline {
    display: inline;
}

.recommendation-inline p {
    display: inline;
    margin: 0;
    margin-right: 1rem;
}

.recommendation-inline a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.recommendation-inline a:hover {
    text-decoration: underline;
}

.recommendation-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    margin: 0 0.25rem;
}

.recommendation-link:hover {
    text-decoration: underline;
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .navbar {
        padding: 0;
        height: 200px;
        min-height: 200px;
    }
    
    .navbar .container {
        align-items: flex-start;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    .navbar-brand {
        top: 50%;
        transform: translate(-50%, -50%);
    }
    
    .navbar-logo {
        height: 120px;
        width: auto;
        max-width: 250px;
    }
    
    .navbar.scrolled {
        padding: 0;
        height: 90px;
        min-height: 90px;
    }
    
    .navbar.scrolled .navbar-logo {
        height: 60px;
        width: auto;
        max-width: 150px;
        border-radius: 10px;
        padding: 7px;
    }
    
    .navbar-nav-left,
    .navbar-nav-right {
        padding: 0;
        margin: 0;
        width: 100%;
        justify-content: center;
    }
    
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        margin-top: 0;
    }
    
    .navbar-nav {
        flex-direction: column;
        width: 100%;
    }
    
    .navbar-nav .nav-link {
        margin: 0.25rem 0;
        font-size: 0.85rem;
        text-align: center;
    }
    
    .quiz-bar-below {
        margin-top: 40px;
        padding: 2rem 0;
    }
    
    .quiz-intro {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .quiz-intro-title {
        font-size: 1.5rem;
    }
    
    .quiz-intro-text {
        font-size: 0.95rem;
    }
    
    .quiz-bar-below .quiz-form-inline {
        padding: 1.5rem 1.75rem;
        width: 90%;
        max-width: 100%;
    }
    
    .quiz-question-inline {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .quiz-label {
        width: 100%;
        flex: 1 1 100%;
        min-width: 100%;
    }
    
    .quiz-options-inline {
        width: 100%;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .form-check-inline-custom {
        width: 100%;
    }
    
    .quiz-buttons-inline {
        width: 100%;
        margin-left: 0;
        margin-top: 1rem;
        justify-content: flex-end;
    }
    
    body {
        padding-top: 200px;
    }
    
    body.scrolled {
        padding-top: 90px;
    }
    
    .quiz-form-inline {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .quiz-question-inline {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .quiz-label {
        width: 100%;
    }
    
    .quiz-options-inline {
        width: 100%;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .form-check-inline-custom {
        width: 100%;
    }
    
    .quiz-buttons-inline {
        width: 100%;
        justify-content: flex-end;
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    body {
        padding-top: 200px;
    }
    
    body.scrolled {
        padding-top: 80px;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: auto;
    height: auto;
    display: block;
    overflow: hidden;
    padding-top: 40px;
}

.hero-video-wrap {
    background-color: #c47581;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    height: auto;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: brightness(0.7);
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(170 138 138 / 85%) 0%, rgba(176, 109, 118, 0.4) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    font-weight: 500;
    letter-spacing: -0.3px;
    font-size: 2.5rem;
}

.hero-content .lead {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 300;
    font-size: 1.1rem;
}

.hero-video {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    position: relative;
    display: block;
    z-index: 1;
}

/* Medical Section Titles */
.section-medical {
    background-color: var(--white);
}

.section-title-medical {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
    letter-spacing: -0.3px;
}

#producten {
    padding: 0;
    padding-top: 180px;
}

#producten .section-title-medical {
    font-size: 2rem;
    font-weight: 600;
}

.section-title-medical::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    opacity: 0.6;
}

.section-title-medical.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Catchphrase – centraal, sexier */
.section-catchphrase {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.25;
    max-width: 42ch;
    margin-left: auto;
    margin-right: auto;
}

.section-catchphrase::after {
    left: 50%;
    transform: translateX(-50%);
}

.lead-medical {
    color: var(--text-light);
    font-weight: 400;
    font-size: 1rem;
}

/* Glass Morphism Cards */
.questionnaire-card-glass,
.contact-card-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.questionnaire-card-glass {
    margin-top: 2rem;
}

/* Product Cards - Swedish Nutra Style */
.product-card-swedish {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

/* Hele kaart is klikbare link naar productpagina */
a.product-card-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a.product-card-link:hover {
    color: inherit;
}

.product-card-swedish:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.product-image-container-swedish {
    height: 334px;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image-swedish {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-placeholder {
    width: 120px;
    height: 120px;
    background: rgba(176, 109, 118, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(176, 109, 118, 0.2);
}

.product-placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.6;
}

.product-body-swedish {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title-swedish {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.product-description-swedish {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.product-card-footer-swedish {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    flex-wrap: wrap;
}

.product-price-swedish {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Product More Button */
.btn-product-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    width: fit-content;
}

.btn-product-more:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(176, 109, 118, 0.3);
    text-decoration: none;
}

.btn-product-more i {
    transition: transform 0.3s ease;
}

.btn-product-more:hover i {
    transform: translateX(3px);
}

/* Product Cards - Medical Style (keep for compatibility) */
.product-card-medical {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
}

.product-card-medical:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 32px rgba(176, 109, 118, 0.15);
    border-color: rgba(176, 109, 118, 0.3);
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    opacity: 0.9;
}

.product-badge.badge-accent {
    background: var(--accent-color);
}

.product-image-container {
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.product-card-medical:hover .product-image {
    transform: scale(1.08);
}

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

.product-category {
    font-size: 0.7rem;
    color: var(--accent-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.product-title-medical {
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

.product-subtitle-medical {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.product-description-medical {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-weight: 400;
}

.product-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    color: var(--text-dark);
    font-size: 0.875rem;
    line-height: 1.5;
}

.benefit-item i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 0.75rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.benefit-item span {
    flex: 1;
}

.product-features-medical {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.product-features-medical li {
    padding: 0.4rem 0;
    color: var(--text-dark);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
}

.product-features-medical i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 0.75rem;
}

.product-footer-medical {
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    margin-top: 1rem;
}

.product-origin {
    font-size: 0.7rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    opacity: 0.7;
}

.product-origin i {
    margin-right: 0.5rem;
    color: var(--medical-blue);
}

/* Info Cards - Medical Style */
.info-card-medical {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.info-card-medical:hover {
    box-shadow: 0 4px 20px rgba(176, 109, 118, 0.15);
    transform: translateX(4px);
}

.info-card-medical h4,
.info-card-medical h5,
.info-card-medical h6 {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.info-card-medical h4 i,
.info-card-medical h5 i,
.info-card-medical h6 i {
    color: var(--accent-color);
}

.info-card-medical.bg-accent-light {
    background: linear-gradient(135deg, rgba(176, 109, 118, 0.05) 0%, rgba(214, 18, 125, 0.05) 100%);
    border-left-color: var(--accent-color);
}

.info-card-medical ul {
    padding-left: 0;
}

.info-card-medical li {
    padding: 0.25rem 0;
    color: var(--text-dark);
}

.info-card-medical i.bi-check2 {
    color: var(--primary-color);
}

/* About Image - Square */
.about-image-medical {
    aspect-ratio: 1 / 1;
    width: 100%;
    border-radius: 50%;
    margin: 0 auto;
    max-width: 80%;
    border: 11px solid #FDE5EA;
    background: #C47581;
    overflow: hidden;
}

.about-image-medical img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0px -37px;
    display: block;
}

/* Over-ons-top: image in column, no rounded corners */
#over-ons-top .about-image-over-ons-top {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    margin: 0;
}

/* Form Elements - Medical Style */
.form-check-custom {
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
    background: var(--white);
    position: relative;
    user-select: none;
}

.form-check-custom label {
    cursor: pointer;
    margin: 0;
    width: 100%;
    display: block;
}

.form-check-custom:hover {
    border-color: var(--primary-color);
    background: rgba(176, 109, 118, 0.03);
    transform: translateX(4px);
}

.form-check-input:checked ~ .form-check-label {
    color: var(--text-dark);
    font-weight: 400;
}

.form-check-label strong {
    font-weight: 500;
}

.form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.form-check-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(176, 109, 118, 0.25);
}

.question-step h4 {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.result-card {
    background: linear-gradient(135deg, rgba(176, 109, 118, 0.05) 0%, rgba(214, 18, 125, 0.05) 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.result-card h4 {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.1rem;
}

.result-card ul {
    list-style: none;
    padding: 0;
}

.result-card li {
    padding: 0.5rem 0;
}

.result-card a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.result-card a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Contact Items */
.contact-item-medical {
    padding: 1.5rem;
}

.contact-item-medical i {
    font-size: 1.75rem;
    color: var(--accent-color);
    margin-bottom: 0px;
    display: block;
    opacity: 0.8;
}

.contact-item-medical h4 {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.contact-item-medical h5 {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.contact-item-medical a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item-medical a:hover {
    color: var(--accent-color);
}

/* Nested contact items in 2 columns */
.contact-item-medical .row .col-6 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.contact-item-medical .row .col-6 i {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.contact-item-medical .row .col-6 h5 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Simple Contact Info */
.contact-info-simple {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-line {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.contact-line i {
    font-size: 1rem;
    color: var(--accent-color);
    opacity: 0.8;
    flex-shrink: 0;
}

.contact-line a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-line a:hover {
    color: var(--accent-color);
}

/* Skinmedics Logo & Image */
.skinmedics-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.skinmedics-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 300px;
    display: block;
}

.skinmedics-logo-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
}

.skinmedics-logo-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.skinmedics-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.skinmedics-info-item {
    text-align: center;
    padding: 0.75rem;
}

.skinmedics-info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.skinmedics-info-item p {
    margin-bottom: 0.25rem;
}

.skinmedics-info-item strong {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.skinmedics-info-item .small {
    color: var(--text-light);
    font-size: 0.85rem;
}

.skinmedics-info-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.skinmedics-info-item a:hover {
    color: var(--accent-color);
}

/* CTA Block Styling */
.cta-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(176, 109, 118, 0.25);
}

.cta-icon-wrapper i {
    font-size: 1.75rem;
    color: var(--white);
}

.btn-cta {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(176, 109, 118, 0.3);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(176, 109, 118, 0.4);
}

/* Light Pink CTA Button */
.btn-cta-pink {
    background-color: #f8d7da;
    background: linear-gradient(135deg, #f8d7da 0%, #f5c2c7 100%);
    border: none;
    color: #ffffff;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(248, 215, 218, 0.4);
}

.btn-cta-pink:hover {
    background: linear-gradient(135deg, #f5c2c7 0%, #f1aeb5 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 215, 218, 0.5);
}

/* Clinic Image Styling */
.clinic-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.clinic-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.clinic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .skinmedics-logo-circle {
        width: 100px;
        height: 100px;
        padding: 12px;
    }
    
    .cta-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .cta-icon-wrapper i {
        font-size: 1.5rem;
    }
}

/* Disclaimer boven footer */
.footer-disclaimer {
    padding-top: 2.5rem;
    padding-bottom: 0.5rem;
    background: linear-gradient(180deg, rgba(196, 117, 129, 0.08) 0%, transparent 100%);
    border-top: 1px solid rgba(196, 117, 129, 0.25);
}
.footer-disclaimer p {
    font-size: 0.95rem;
    color: #5a4a4a;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.01em;
}

/* Footer - Modern Glass Morphism */
.footer-glass-modern {
    background: #c47581;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.15);
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.footer-curve-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 200px;
    overflow: hidden;
    z-index: 0;
}

.footer-curve {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    object-position: center bottom;
    opacity: 0.3;
    /* transform: rotate(180deg); */
}

.footer-glass-modern > .container {
    position: relative;
    z-index: 1;
}

.footer-glass-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
}

.footer-branding {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    max-width: 150px;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-style: italic;
}

.footer-tagline .bi-heart-fill {
    color: #ffffff;
    animation: heartbeat 1.5s ease-in-out infinite;
}

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

.footer-copyright {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}

.footer-links {
    text-align: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0.5rem;
    
}

.footer-glass-modern .col-lg-6:last-child {
    text-align: right;
}

.footer-glass-modern .col-lg-6:last-child .footer-title {
    text-align: right;
}

.footer-glass-modern .col-lg-6:last-child .footer-title::after {
    left: auto;
    right: 0;
}

.footer-glass-modern .col-lg-6:last-child .contact-info-simple {
    align-items: flex-end;
}

.footer-glass-modern .col-lg-6:last-child .contact-line {
    justify-content: flex-end;
}

.footer-glass-modern .contact-info-simple {
    gap: .25rem;
}

.footer-glass-modern .contact-line {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
}

.footer-glass-modern .contact-line i {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0.9;
}

.footer-glass-modern .contact-line a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-glass-modern .contact-line a:hover {
    color: #ffffff;
    opacity: 1;
}

/* Legacy footer class for compatibility */
.footer-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.footer-glass .bi-heart-fill {
    color: var(--accent-color);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border: none;
    color: var(--white);
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(176, 109, 118, 0.2);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(176, 109, 118, 0.3);
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
}

/* Products CTA Section */
.products-cta-wrapper {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(176, 109, 118, 0.05), rgba(196, 117, 129, 0.05));
    border-radius: 20px;
    border: 2px solid rgba(176, 109, 118, 0.1);
}

.products-cta-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.products-cta-text {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.btn-products-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border: none;
    color: var(--white);
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(176, 109, 118, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    margin: 0.5rem;
}

.btn-products-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(176, 109, 118, 0.4);
    color: var(--white);
    text-decoration: none;
}

.btn-products-cta-secondary {
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    margin: 0.5rem;
}

.btn-products-cta-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(176, 109, 118, 0.3);
    text-decoration: none;
}

/* Responsive CTA Section */
@media (max-width: 768px) {
    .products-cta-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .products-cta-title {
        font-size: 1.5rem;
    }
    
    .products-cta-text {
        font-size: 0.95rem;
    }
    
    .btn-products-cta,
    .btn-products-cta-secondary {
        width: 100%;
        justify-content: center;
        margin: 0.5rem 0;
        padding: 0.875rem 2rem;
    }
}

.btn-outline-secondary {
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background-color: var(--light-bg);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Ruimte boven "Maak kennis met onze influencers" */
.influencers-heading-row {
    margin-top: 70px;
}

/* Reviews Section */
#reviews {
    padding-bottom: 5rem !important;
}

.reviews-section {
    background: var(--light-bg);
}

/* Video Testimonials */
.video-testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 8px 30px rgba(176, 109, 118, 0.12);
    border: 1px solid rgba(176, 109, 118, 0.15);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.video-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(176, 109, 118, 0.2);
}

.video-testimonial {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    background: #000;
    aspect-ratio: 9 / 16;
    object-fit: cover;
}

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

.review-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 30px rgba(176, 109, 118, 0.12);
    border: 1px solid rgba(176, 109, 118, 0.15);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(176, 109, 118, 0.2);
}

.review-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.review-image-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #FDE5EA;
    background: #C47581;
    box-shadow: 0 4px 20px rgba(176, 109, 118, 0.25);
    position: relative;
}

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

.review-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin: 0;
    position: relative;
    padding: 0 0.5rem;
}

.review-text::before {
    content: '"';
    position: absolute;
    left: -5px;
    top: -8px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.review-text::after {
    content: '"';
    position: absolute;
    right: -5px;
    bottom: -25px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

/* Carousel Controls Styling */
#reviewsCarousel {
    position: relative;
    padding: 0 60px;
}

#reviewsCarousel .carousel-control-prev,
#reviewsCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    transition: all 0.3s ease;
}

#reviewsCarousel .carousel-control-prev {
    left: 0;
}

#reviewsCarousel .carousel-control-next {
    right: 0;
}

#reviewsCarousel .carousel-control-prev:hover,
#reviewsCarousel .carousel-control-next:hover {
    opacity: 1;
    background: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

#reviewsCarousel .carousel-control-prev-icon,
#reviewsCarousel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Carousel Indicators */
#reviewsCarousel .carousel-indicators {
    margin-bottom: 10px;
}

#reviewsCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(176, 109, 118, 0.3);
    border: 2px solid var(--primary-color);
    margin: 0 5px;
    transition: all 0.3s ease;
}

#reviewsCarousel .carousel-indicators button.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Mobiele reviews: 1 review per slide, pijltjes ernaast */
.reviews-carousel-mobile {
    position: relative;
    padding: 0 52px; /* ruimte voor pijltjes links en rechts */
}

.reviews-carousel-mobile .carousel-control-prev,
.reviews-carousel-mobile .carousel-control-next {
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.reviews-carousel-mobile .carousel-control-prev {
    left: 0;
}

.reviews-carousel-mobile .carousel-control-next {
    right: 0;
}

.reviews-carousel-mobile .carousel-control-prev:hover,
.reviews-carousel-mobile .carousel-control-next:hover {
    opacity: 1;
    background: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

.reviews-carousel-mobile .carousel-control-prev-icon,
.reviews-carousel-mobile .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .review-card {
        padding: 2rem 1.5rem;
    }
    
    .review-image-wrapper {
        width: 90px;
        height: 90px;
        border-width: 3px;
    }
    
    .review-name {
        font-size: 1.1rem;
    }
    
    .review-text {
        font-size: 0.9rem;
        padding: 0 0.25rem;
    }
    
    .review-text::before,
    .review-text::after {
        font-size: 2.5rem;
    }
    
    #reviewsCarousel {
        padding: 0 50px;
    }
    
    #reviewsCarousel .carousel-control-prev {
        left: 0;
    }
    
    #reviewsCarousel .carousel-control-next {
        right: 0;
    }
    
    #reviewsCarousel .carousel-control-prev,
    #reviewsCarousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    #reviewsCarousel .carousel-indicators {
        margin-bottom: 15px;
    }
    
    #reviews {
        padding-bottom: 4rem !important;
    }
    
    .video-testimonial-card {
        padding: 0.75rem;
    }
    
    .video-testimonial {
        aspect-ratio: 9 / 16;
        object-fit: cover;
    }
}

/* Statistics Section */
.statistics-section {
    margin: 3rem 0;
}

.statistics-banner {
    position: relative;
    min-height: 300px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(44, 95, 124, 0.9) 100%);
    background-image: url('assets/images/laboratorium.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.statistics-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(170 138 138 / 85%) 0%, rgba(176, 109, 118, 0.4) 100%);
    z-index: 1;
}

.statistics-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2rem 0;
}

.statistics-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

.statistics-title {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.stat-item {
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Glass-effect kaartjes in orthomoleculaire opsomming (statistics-banner) */
.ortho-list-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 2px solid #FFF;
    color: #fff;
    transition: all 0.3s ease;
}

.ortho-list-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 6rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: -2px;
}

.stat-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-top: 1rem;
    color: #ffffff;
}

@media (max-width: 768px) {
    .statistics-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 4rem;
    }
    
    .stat-description {
        font-size: 0.9rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .statistics-banner {
        min-height: 400px;
    }
}

/* Accordion - Medical Style */
.accordion-medical {
    --bs-accordion-border-color: var(--border-color);
    --bs-accordion-border-radius: 12px;
    --bs-accordion-inner-border-radius: 12px;
}

.accordion-medical .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    background: var(--white);
    overflow: hidden;
}

.accordion-medical .accordion-button {
    background-color: var(--white);
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none;
}

.accordion-medical .accordion-button:not(.collapsed) {
    background-color: rgba(176, 109, 118, 0.05);
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.accordion-medical .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(176, 109, 118, 0.15);
    border-color: var(--primary-color);
}

.accordion-medical .accordion-button i {
    color: var(--accent-color);
    margin-right: 0.75rem;
}

.accordion-medical .accordion-body {
    padding: 1.5rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.accordion-medical .accordion-body ul {
    padding-left: 1.25rem;
    margin-bottom: 0;
}

.accordion-medical .accordion-body li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.accordion-medical .accordion-body strong {
    color: var(--text-dark);
    font-weight: 500;
}

.accordion-medical .accordion-body h6 {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.accordion-medical .accordion-body h6 i {
    color: var(--accent-color);
}

/* Knowledge Cards - Modern Style */
.knowledge-card-modern {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(176, 109, 118, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.knowledge-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.knowledge-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(176, 109, 118, 0.15);
}

.knowledge-card-modern:hover::before {
    transform: scaleX(1);
}

.knowledge-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.knowledge-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(176, 109, 118, 0.1), rgba(196, 117, 129, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.knowledge-icon-wrapper i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.knowledge-card-modern:hover .knowledge-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(176, 109, 118, 0.2), rgba(196, 117, 129, 0.25));
}

.knowledge-icon-menopause {
    background: linear-gradient(135deg, rgba(13, 115, 119, 0.1), rgba(44, 95, 124, 0.15));
}

.knowledge-icon-menopause i {
    color: var(--medical-teal);
}

.knowledge-card-modern:hover .knowledge-icon-menopause {
    background: linear-gradient(135deg, rgba(13, 115, 119, 0.2), rgba(44, 95, 124, 0.25));
}

.knowledge-intro {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    padding-left: 0.5rem;
}

/* Ensure equal height columns */
#collageen-menopauze .row {
    display: flex;
    flex-wrap: wrap;
}

#collageen-menopauze .row > [class*='col-'] {
    display: flex;
    flex-direction: column;
}

#collageen-menopauze .row > [class*='col-'] > .knowledge-card-modern {
    flex: 1;
}

.knowledge-card-header .section-title-medical {
    margin-bottom: 0;
    flex: 1;
}

/* Modern Accordion */
.accordion-modern {
    --bs-accordion-border-color: transparent;
    --bs-accordion-border-radius: 12px;
    --bs-accordion-inner-border-radius: 12px;
}

.accordion-modern .accordion-item {
    border: 1px solid rgba(176, 109, 118, 0.15);
    border-radius: 12px;
    margin-bottom: 1rem;
    background: var(--white);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.accordion-modern .accordion-item:hover {
    border-color: rgba(176, 109, 118, 0.3);
    box-shadow: 0 4px 12px rgba(176, 109, 118, 0.1);
}

.accordion-modern .accordion-button {
    background-color: var(--white);
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.05rem;
    padding: 1.5rem 1.75rem;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
}

.accordion-modern .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(176, 109, 118, 0.08), rgba(196, 117, 129, 0.12));
    color: var(--text-dark);
    border-bottom: 1px solid rgba(176, 109, 118, 0.15);
}

.accordion-modern .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(176, 109, 118, 0.15);
    border-color: var(--primary-color);
}

.accordion-modern .accordion-button i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.accordion-modern .accordion-button:not(.collapsed) i {
    transform: scale(1.15);
}

.accordion-modern .accordion-body {
    padding: 1.75rem;
    color: var(--text-dark);
    line-height: 1.8;
    background: rgba(248, 249, 250, 0.5);
}

.accordion-modern .accordion-body ul {
    padding-left: 1.5rem;
    margin-bottom: 0;
}

.accordion-modern .accordion-body li {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    position: relative;
    padding-left: 0.5rem;
}

.accordion-modern .accordion-body li::marker {
    color: var(--primary-color);
}

.accordion-modern .accordion-body strong {
    color: var(--text-dark);
    font-weight: 600;
}

.accordion-modern .accordion-body h6 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.accordion-modern .accordion-body h6 i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Inline Tip Cards - Within Knowledge Cards */
.tip-inline-card {
    background: linear-gradient(135deg, rgba(176, 109, 118, 0.06), rgba(196, 117, 129, 0.1));
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    border: 1px solid rgba(176, 109, 118, 0.15);
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.tip-inline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
}

.tip-inline-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #C47581;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 6px solid #FDE5EA;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(176, 109, 118, 0.25);
}

.tip-veerle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tip-inline-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.tip-inline-icon-menopause {
    background: #C47581;
    box-shadow: 0 3px 12px rgba(176, 109, 118, 0.25);
}

.tip-inline-content {
    flex: 1;
}

.tip-inline-title {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.tip-inline-text {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

/* Tip cards onder de blokken -zelfde grootte, buiten wit kader */
.tip-card-below {
    display: flex;
    flex: 0 0 auto;
}

.tip-card-below .tip-inline-content {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

/* Ingeklapte tekst: max 3 regels */
.tip-inline-text-wrap.collapsed {
    max-height: 4.8em;
    overflow: hidden;
    position: relative;
    transition: max-height 0.35s ease;
}

.tip-inline-text-wrap.collapsed .tip-inline-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tip-inline-text-wrap.expanded {
    max-height: 800px;
}

.tip-inline-text-wrap.expanded .tip-inline-text {
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
}

/* Lees meer-knop */
.tip-lees-meer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
    padding: 0.35rem 0;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s ease;
    position: relative;
    z-index: 2;
}

.tip-lees-meer-btn:hover {
    color: var(--accent-color);
}

.tip-lees-meer-btn i {
    font-size: 1rem;
    transition: transform 0.25s ease;
}

.tip-lees-meer-btn[aria-expanded="true"] i {
    transform: rotate(45deg);
}

/* Ensure accordion takes available space */
.accordion-modern.flex-grow-1 {
    display: flex;
    flex-direction: column;
}

.accordion-modern.flex-grow-1 .accordion-item:last-child {
    margin-bottom: 0;
}

/* Tip Card - Modern Style */
.tip-card-modern {
    background: linear-gradient(135deg, rgba(176, 109, 118, 0.05), rgba(196, 117, 129, 0.08));
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    box-shadow: 0 4px 20px rgba(176, 109, 118, 0.12);
    border: 1px solid rgba(176, 109, 118, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tip-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
}

.tip-card-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(176, 109, 118, 0.2);
}

.tip-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ffc107, #ffb300);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
}

.tip-icon-wrapper i {
    font-size: 2rem;
    color: var(--white);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 193, 7, 0.5);
    }
}

.tip-content {
    flex: 1;
}

.tip-title {
    color: var(--text-dark);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tip-text {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.tip-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

@media (max-width: 768px) {
    .knowledge-card-modern {
        padding: 1.75rem;
    }
    
    .knowledge-card-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .knowledge-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .knowledge-icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .tip-inline-card {
        flex-direction: column;
        padding: 1.25rem;
        gap: 1rem;
    }
    
    
    .tip-inline-icon {
        width: 60px;
        height: 60px;
        border: 5px solid #FDE5EA;
    }
    
    .tip-inline-icon i {
        font-size: 1.25rem;
    }
    
    .tip-inline-title {
        font-size: 1rem;
    }
    
    .tip-inline-text {
        font-size: 0.9rem;
    }
    
    .tip-card-modern {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .tip-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .tip-icon-wrapper i {
        font-size: 1.75rem;
    }
    
    .tip-title {
        font-size: 1.5rem;
    }
    
    .tip-text {
        font-size: 1rem;
        padding-left: 1rem;
    }
    
    #collageen-menopauze .row {
        flex-direction: column;
    }
}

/* Certifications Section - Premium Style */
.certifications-premium {
    background: linear-gradient(135deg, rgba(176, 109, 118, 0.03), rgba(196, 117, 129, 0.06));
    border-radius: 24px;
    padding: 3.5rem 3rem;
    box-shadow: 0 8px 30px rgba(176, 109, 118, 0.12);
    border: 1px solid rgba(176, 109, 118, 0.15);
    position: relative;
    overflow: hidden;
}

.certifications-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--medical-teal));
}

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

.certifications-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(176, 109, 118, 0.15), rgba(196, 117, 129, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(176, 109, 118, 0.2);
}

.certifications-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.certifications-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.certifications-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 400;
}

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

.certification-badge {
    background: var(--white);
    border-radius: 18px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(176, 109, 118, 0.1);
    position: relative;
}

.certification-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(176, 109, 118, 0.15);
    border-color: rgba(176, 109, 118, 0.25);
}

.certification-badge-featured {
    background: linear-gradient(135deg, rgba(176, 109, 118, 0.05), rgba(196, 117, 129, 0.08));
    border-color: rgba(176, 109, 118, 0.2);
}

.badge-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(176, 109, 118, 0.15), rgba(196, 117, 129, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(176, 109, 118, 0.15);
}

.badge-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.badge-icon-halal {
    background: linear-gradient(135deg, rgba(13, 115, 119, 0.15), rgba(44, 95, 124, 0.2));
    box-shadow: 0 3px 10px rgba(13, 115, 119, 0.15);
}

.badge-icon-halal i {
    color: var(--medical-teal);
}

.badge-icon-premium {
    background: linear-gradient(135deg, #ffc107, #ffb300);
    box-shadow: 0 3px 10px rgba(255, 193, 7, 0.3);
}

.badge-icon-premium i {
    color: var(--white);
}

.badge-content {
    flex: 1;
}

.badge-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.badge-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.badge-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    margin-top: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(176, 109, 118, 0.25);
}

.certifications-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(176, 109, 118, 0.15);
}

.certifications-location {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 500;
}

.certifications-location i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .certifications-premium {
        padding: 2.5rem 1.5rem;
    }
    
    .certifications-title {
        font-size: 1.5rem;
    }
    
    .certifications-subtitle {
        font-size: 1rem;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .certification-badge {
        flex-direction: column;
        text-align: center;
        padding: 1.75rem;
    }
    
    .badge-icon {
        margin: 0 auto;
    }
    
    .certifications-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .certifications-icon-wrapper i {
        font-size: 2rem;
    }
}

/* Feature Cards - Swedish Nutra Style */
.feature-card {
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(176, 109, 118, 0.15);
}

.feature-icon {
    opacity: 0.8;
}

.feature-card h4 {
    color: var(--text-dark);
    font-weight: 500;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Stat Cards - Clinically Tested */
.stat-card {
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(176, 109, 118, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
 
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.5;
}

/* Quality Card */
.quality-card-medical {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.quality-card-medical h4 {
    color: var(--text-dark);
    font-weight: 500;
}

.quality-card-medical h4 i {
    color: var(--accent-color);
}

.quality-card-medical ul {
    list-style: none;
    padding-left: 0;
}

.quality-card-medical li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.quality-card-medical li i {
    color: var(--primary-color);
}

.quality-badge {
    padding: 1rem;
}

.quality-badge i {
    opacity: 0.8;
}

/* Alerts */
.alert-success {
    background-color: rgba(176, 109, 118, 0.1);
    border-color: var(--primary-color);
    color: var(--text-dark);
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 0;
        height: 120px;
        min-height: 120px;
    }
    
    .navbar-logo {
        height: 80px;
        width: auto;
        max-width: 200px;
    }
    
    .navbar.scrolled {
        padding: 0;
        height: 80px;
        min-height: 80px;
    }
    
    .navbar.scrolled .navbar-logo {
        height: 50px;
        width: auto;
        max-width: 120px;
        border-radius: 10px;
        padding: 7px;
    }
    
    .navbar-nav-left,
    .navbar-nav-right {
        padding: 0;
        margin: 0;
        width: 100%;
        justify-content: center;
    }
    
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        margin-top: 0;
    }
    
    .navbar-nav {
        flex-direction: column;
        width: 100%;
    }
    
    .navbar-nav .nav-link,
    .navbar-nav-left .nav-link {
        font-size: 0.8rem;
        padding: 0.4rem 0;
        text-align: center;
        color: #000 !important;
    }
    
    .quiz-bar-below {
        padding: 1.5rem 0;
    }
    
    .quiz-intro {
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .quiz-intro-title {
        font-size: 1.35rem;
        margin-bottom: 0.75rem;
    }
    
    .quiz-intro-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .quiz-bar-below .quiz-form-inline {
        padding: 1.25rem 1.5rem;
        width: 95%;
        max-width: 100%;
    }
    
    body {
        padding-top: 130px;
    }
    
    body.scrolled {
        padding-top: 80px;
    }
    
    .section-title-medical {
        font-size: 1.75rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .questionnaire-card-glass,
    .contact-card-glass {
        padding: 1.5rem;
    }
    
    .info-card-medical {
        padding: 1.25rem;
    }
    
    .product-image-container {
        height: 180px;
    }
    
    .product-title-medical {
        font-size: 1.25rem;
    }

    .statistics-banner {
        padding: 10px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* ============================================
   PRODUCT DETAIL PAGE STYLES
   ============================================ */

/* Product Detail Header Section */
.product-detail-header {
    padding-top: 250px !important;
    padding-bottom: 4rem;
    background: var(--white);
}

.product-image-wrapper {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.product-detail-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 12px;
    animation: fadeInUp 0.8s ease-out;
}

.product-badge-detail {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(176, 109, 118, 0.3);
    z-index: 10;
}

.product-badge-detail i {
    font-size: 1rem;
}

.product-detail-content {
    padding: 2rem 0;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--primary-color);
    transform: translateX(-5px);
}

.back-link i {
    margin-right: 0.5rem;
}

.product-detail-title {
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.2;
}

.product-detail-description {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.product-price-section {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(176, 109, 118, 0.05), rgba(196, 117, 129, 0.05));
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.product-price-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.product-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.product-cta-section {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-shop-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border: none;
    color: var(--white);
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(176, 109, 118, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
}

.btn-shop-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(176, 109, 118, 0.4);
    color: var(--white);
}

.btn-shop-secondary {
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
}

.btn-shop-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Product Details Tabs Section */
.product-details-section {
    background: var(--white);
    padding-top: 0;
    padding-bottom: 4rem;
}

.product-detail-tabs {
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 3rem;
}

.product-detail-tabs .nav-link {
    color: var(--text-light);
    font-weight: 500;
    padding: 1rem 2rem;
    border: none;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    background: transparent;
}

.product-detail-tabs .nav-link:hover {
    color: var(--primary-color);
    border-bottom-color: rgba(176, 109, 118, 0.3);
}

.product-detail-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: transparent;
}

.product-detail-tab-content {
    min-height: 400px;
}

.product-tab-content {
    padding: 2rem 0;
}

.tab-content-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.tab-content-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

/* Ingredients Grid */
.ingredients-grid {

}

.ingredient-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.ingredient-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(176, 109, 118, 0.1);
    transform: translateY(-2px);
}

.ingredient-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.ingredient-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
}

.ingredient-amount {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 1rem;
}

.ingredient-benefit {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ingredient-benefit i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.9));
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(176, 109, 118, 0.15);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 20px rgba(176, 109, 118, 0.2);
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--white);
}

.benefit-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Usage Instructions */
.usage-instructions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.usage-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(176, 109, 118, 0.05), rgba(196, 117, 129, 0.05));
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.usage-item i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.usage-item h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.usage-item p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Product Highlight Box */
.product-highlight-box {
    background: linear-gradient(135deg, rgba(176, 109, 118, 0.05), rgba(196, 117, 129, 0.05));
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid rgba(176, 109, 118, 0.1);
    position: sticky;
    top: 120px;
}

.product-highlight-box h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.product-highlight-box h4 i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

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

.highlight-list li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.highlight-list li i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Product Overview Content */
.product-overview-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.product-overview-content p {
    margin-bottom: 1.5rem;
}

.product-overview-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Product CTA Section */
.product-cta-section {
    background: linear-gradient(135deg, rgba(176, 109, 118, 0.03), rgba(196, 117, 129, 0.03));
}

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

/* Product cards are no longer fully clickable - only the button is */

/* Responsive Design */
@media (max-width: 992px) {
    .product-detail-title {
        font-size: 2.25rem;
    }
    
    .product-price {
        font-size: 2rem;
    }
    
    .ingredients-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .product-highlight-box {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    #producten {
        padding: 0 0;
    }
    .product-detail-header {
        padding-top: 20px !important;
    }
    
    .product-detail-title {
        font-size: 1.75rem;
    }
    
    .product-detail-description {
        font-size: 1rem;
    }
    
    .product-price {
        font-size: 1.75rem;
    }
    
    .product-cta-section {
        flex-direction: column;
    }
    
    .btn-shop-primary,
    .btn-shop-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .product-detail-tabs .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .usage-item {
        flex-direction: column;
        text-align: center;
    }
    
    .usage-item i {
        margin: 0 auto;
    }
    
    .volksgezondheid-blok {
        padding: 1.5rem !important;
    }
    
    .volksgezondheid-logo-img {
        height: auto !important;
    }
    
    .volksgezondheid-tekst {
        font-size: 1rem !important;
    }

    .footer-logo {
        margin: 0 auto;
        max-width: 100px;
    }

    .footer-glass-modern .col-lg-6:last-child .footer-title { text-align: center !important; }
    .footer-glass-modern .col-lg-6:last-child .contact-info-simple { align-items: center !important; }
    .footer-glass-modern .col-lg-6:last-child .footer-title::after { display: none !important; }
    
}

/* Desktop styles for volksgezondheid-blok */
@media (min-width: 768px) {
    .volksgezondheid-blok {
        padding: 2rem 2.5rem !important;
    }
    
    .volksgezondheid-tekst {
        font-size: 1.35rem !important;
    }
}

/* Kwaliteit & certificering - informatief blok onderaan (tussen compact en premium) */
.certifications-section-mid {
    background: linear-gradient(180deg, rgba(248, 249, 250, 1), rgba(176, 109, 118, 0.04));
}

.certifications-mid {
    background: var(--white);
    border-radius: 20px;
    padding: 2.25rem 2rem;
    box-shadow: 0 6px 24px rgba(176, 109, 118, 0.1);
    border: 1px solid rgba(176, 109, 118, 0.12);
}

.certifications-mid-header {
    text-align: center;
    margin-bottom: 2rem;
}

.certifications-mid-header-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    display: block;
}

.certifications-mid-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.certifications-mid-intro {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

.certifications-mid-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    align-items: start;
}

.certifications-mid-item {
    text-align: center;
    padding: 1.25rem 1rem;
    border-radius: 14px;
    background: rgba(248, 249, 250, 0.8);
    transition: box-shadow 0.25s ease;
}

.certifications-mid-item:hover {
    box-shadow: 0 4px 16px rgba(176, 109, 118, 0.12);
}

.certifications-mid-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(176, 109, 118, 0.12), rgba(196, 117, 129, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.certifications-mid-icon {
    font-size: 1.6rem;
    color: var(--primary-color);
}

.certifications-mid-logo {
    height: 64px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    margin: 0 auto 1rem;
    display: block;
}

.certifications-mid-item-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.certifications-mid-item-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .certifications-mid-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .certifications-mid {
        padding: 1.75rem 1.25rem;
    }
    .certifications-mid-title {
        font-size: 1.35rem;
    }
    .certifications-mid-logo {
        height: 56px;
    }
}

/* Legal / Algemene voorwaarden page */
.legal-page-section {
    margin-top: 140px;
    padding-top: 2rem;
    background-color: var(--light-bg);
    min-height: 100vh;
}

.legal-page-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.legal-page-subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
}

.legal-content {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    padding: 2.5rem;
}

.legal-block {
    margin-bottom: 2rem;
}

.legal-block:last-child {
    margin-bottom: 0;
}

.legal-block h2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.legal-block p {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.65;
}

.legal-block ul {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
}

.legal-block li {
    margin-bottom: 0.35rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .legal-page-section {
        margin-top: 0;
        padding-top: 2rem;
    }
    .legal-content {
        padding: 1.5rem;
    }
    .legal-page-title {
        font-size: 1.6rem;
    }
}

/* Intro & Over ons: op mobiel alleen eerste paragraaf + Lees meer (openklappen) */
.lees-meer-mobile-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color, #b06d76);
    font-weight: 600;
    cursor: pointer;
    padding: 0.25rem 0;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

@media (max-width: 768px) {
    .lees-meer-mobile-btn {
        display: inline-block;
    }
    .expandable-mobile-block .expandable-more {
        display: none;
    }
    .expandable-mobile-block.is-expanded .expandable-more {
        display: block;
    }
    .expandable-mobile-block.is-expanded .lees-meer-mobile-btn {
        display: none;
    }
}
