/* Global Styles */
:root {
    --primary-color: #00d1b2;
    --secondary-color: #1a1e25;
    --tertiary-color: #f5f5f7;
    --text-color: #1a1e25;
    --light-text: #ffffff;
    --gray-text: #6c7380;
    --border-radius: 8px;
    --box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 4rem 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: white;
    color: #333;
    border: none;
}

.btn-shop {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
}

.btn-assortiment {
    padding: 12px 30px;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid white;
    color: white;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #00bfa0;
}

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

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

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-secondary {
    background-color: var(--tertiary-color);
    color: var(--text-color);
    border: none;
}

.btn-secondary:hover {
    background-color: #e5e5e7;
}

/* Premium Announcement Bar */
.announcement-bar-wrapper {
    background: linear-gradient(90deg, #009b85 0%, #00d1b2 50%, #009b85 100%);
    color: var(--light-text);
    position: relative;
    overflow: hidden;
    z-index: 110;
}

.announcement-bar-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 20%, rgba(255,255,255,0) 80%, rgba(255,255,255,0.1) 100%);
    pointer-events: none;
}

.announcement-bar {
    text-align: center;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    overflow: hidden;
    position: relative;
}

.announcement-slider {
    display: flex;
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    20% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-100%);
    }
    45% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(-200%);
    }
    70% {
        transform: translateX(-200%);
    }
    75% {
        transform: translateX(-300%);
    }
    95% {
        transform: translateX(-300%);
    }
    100% {
        transform: translateX(-400%);
    }
}

.announcement-slide {
    flex: 0 0 100%;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-slide i {
    margin-right: 8px;
    font-size: 0.95rem;
}

/* Premium Navigation */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Verhoogd van 100 naar 1000 om boven filters te blijven */
    background-color: var(--light-text);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    line-height: 1.2;
}

.header.scrolled {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.9);
}

.navbar {
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
    transition: all 0.3s ease;
    height: auto;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    width: 100%;
}

.logo {
    padding: 0;
    display: flex;
    align-items: center;
    max-height: 70px;
    overflow: visible;
}

.logo img {
    height: 120px;
    transition: all 0.3s ease;
    max-width: none;
    position: relative;
    z-index: 101;
}

.header.scrolled .logo img {
    height: 100px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links ul {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-item a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--secondary-color);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
}

.nav-item.active a {
    color: var(--primary-color);
}

.nav-item.active a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(1);
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-item a:hover::after {
    transform: scaleX(1);
}

.has-dropdown .fa-chevron-down {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.has-dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
}

.nav-icons {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.nav-icon {
    position: relative;
}

.icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

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

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

/* Dropdown Menu Styling */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 400px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    margin-top: 15px;
    pointer-events: none;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 2px;
}

.nav-item.has-dropdown:hover .dropdown-menu,
.nav-icon.dropdown-trigger:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}

.dropdown-content {
    padding: 1.5rem;
    display: flex;
}

.dropdown-column {
    flex: 1;
    padding: 0 1rem;
}

.dropdown-column h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-size: 0.95rem;
    font-weight: 600;
}

.dropdown-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.dropdown-column ul li a {
    font-size: 0.9rem;
    color: var(--gray-text);
    font-weight: normal;
    transition: color 0.2s ease;
    padding: 0.3rem 0;
}

.dropdown-column ul li a:hover {
    color: var(--primary-color);
}

.dropdown-featured {
    background-color: #f8f9fa;
    border-radius: 8px;
}

.featured-promo {
    padding: 1.5rem;
}

.featured-promo p {
    font-size: 0.85rem;
    color: var(--gray-text);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.featured-promo .btn-small {
    background-color: var(--primary-color);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.featured-promo .btn-small:hover {
    background-color: #00b49c;
    transform: translateY(-2px);
}

/* Account Dropdown */
.account-dropdown {
    min-width: 200px;
    right: 0;
    left: auto;
    transform: translateY(10px);
}

.account-dropdown::before {
    left: auto;
    right: 15px;
}

.account-dropdown .dropdown-content {
    padding: 1.2rem;
    flex-direction: column;
}

.nav-icon.dropdown-trigger:hover .account-dropdown {
    transform: translateY(0);
}

.account-dropdown h4 {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.account-dropdown ul li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.account-dropdown ul li a i {
    width: 20px;
    color: var(--primary-color);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Standaard verbergen van de mobiele winkelwagenticoon */
.mobile-cart-icon {
    display: none;
}

@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        gap: 2rem;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-links ul {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
        width: 100%;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        width: 100%;
        min-width: auto;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        margin-top: 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown-menu.active {
        max-height: 500px;
    }
    
    .dropdown-content {
        flex-direction: column;
        padding: 1rem 0;
    }
    
    .dropdown-column {
        padding: 0.5rem 0;
    }
    
    .has-dropdown .fa-chevron-down {
        margin-left: auto;
    }
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    padding: 40px 20px;
    width: 100%;
    margin-bottom: -1px;
    background-image: url('assets/hero-banner.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: inset 0 -10px 30px rgba(0,0,0,0.1);
}

/* Add overlay for better text readability */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    color: white;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-feature i {
    font-size: 1.1rem;
    color: #00d1b2;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}


.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 70%, rgba(255,255,255,1) 100%);
    z-index: 1;
}



/* Products Section */
.products-section {
    background-color: white;
    padding: 2rem 1.5rem 5rem;
    position: relative;
    z-index: 2;
}

/* Price Comparison Section */
.price-comparison-section {
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    padding: 4rem 1.5rem 6rem;
    position: relative;
    z-index: 1;
    border-top: none;
    margin-top: -1rem;
}

.products-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 600;
    color: #333;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin: 1.5rem auto 3.5rem;
    max-width: 1200px;
    position: relative;
    z-index: 3;
}

.product-card {
    background-color: white;
    padding: 2rem 0.5rem;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.03);
    border-radius: 16px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 320px;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.product-card:hover img {
    transform: scale(1.05);
}

.grade-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(0, 209, 178, 0.1);
    color: #00d1b2;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 4px;
    z-index: 2;
}

.product-card img {
    width: 160px;
    height: 200px;
    margin: 0.5rem auto 1.5rem;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card h3 {
    margin: 0.5rem 0 0.25rem;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.product-card .price {
    color: #00d1b2;
    font-weight: 600;
    margin: 0.5rem 0 1rem;
    font-size: 1rem;
}

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

.cart-btn {
    display: inline-block;
    background-color: transparent;
    color: #00d1b2;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #00d1b2;
    transition: all 0.3s ease;
}

.cart-btn:hover {
    background-color: #00d1b2;
    color: white;
}

/* Product Detail Section */
.product-detail-section {
    padding: 4rem 1.5rem;
    background-color: var(--light-text);
    max-width: 1200px;
    margin: 0 auto;
}

.product-detail {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.product-info {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.product-info > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-info .label {
    color: var(--gray-text);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.product-info .value {
    font-weight: 600;
    font-size: 1.1rem;
}

.price-comparison {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    background-color: var(--tertiary-color);
}

.price-item.renewly {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.price-item .provider {
    font-weight: 600;
}

.price-item .price {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Impact Section */
.impact-section {
    padding: 120px 0 100px;
    background-color: var(--tertiary-color);
    position: relative;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0;
    border-radius: 40px 40px 0 0;
}

.impact-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -150px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background-color: rgba(0, 209, 178, 0.15);
    z-index: 0;
}

.impact-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: rgba(0, 209, 178, 0.1);
    z-index: 0;
}

.impact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    gap: 40px;
}

.impact-left {
    flex: 1;
    max-width: 550px;
    padding-right: 40px;
}

.impact-left h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--secondary-color);
    line-height: 1.3;
}

.impact-left p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--gray-text);
}

.impact-left h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.impact-comparison {
    margin-top: 40px;
}

.comparison-circle {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-align: center;
    padding: 5px;
    box-shadow: var(--box-shadow);
}

.circle.normal {
    background-color: #fff;
    border: 1px solid #f0f0f0;
    color: var(--gray-text);
}

.circle.renewly {
    background-color: var(--primary-color);
    color: #fff;
}

.co2-reduction {
    margin-bottom: 35px;
    position: relative;
}

.co2-reduction::before {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(0, 209, 178, 0.1);
    z-index: -1;
}

.big-percentage {
    font-size: 72px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    display: block;
    margin-bottom: 10px;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont;
}

.reduction-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.co2-reduction p {
    font-size: 14px;
    color: var(--gray-text);
    margin-top: 8px;
    max-width: 350px;
}

.read-more-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-outline-green {
    display: inline-block;
    padding: 12px 20px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-align: center;
}

.btn-outline-green:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary-green {
    display: inline-block;
    padding: 14px 28px;
    border: none;
    background: linear-gradient(90deg, #00d1b2, #4db6ac);
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 8px 15px rgba(0,209,178,0.25);
    letter-spacing: 0.5px;
}

.btn-primary-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0,209,178,0.35);
}

.impact-right {
    flex: 1;
    max-width: 450px;
}

/* Features Section */
.features-section {
    background: linear-gradient(180deg, var(--tertiary-color) 0%, #ffffff 15%);
    padding: 8rem 1.5rem 5rem;
    position: relative;
    margin-top: -2rem;
    z-index: 1;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(245,248,250,0.9) 0%, rgba(255,255,255,0) 100%);
    z-index: -1;
}

.impact-stats-card {
    background-color: #005849;
    border-radius: 24px;
    padding: 35px 30px;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 102, 85, 0.2);
    position: relative;
    overflow: hidden;
}

.impact-stats-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: rgba(0, 209, 178, 0.15);
    z-index: 0;
}

.impact-stats-card h3 {
    font-size: 20px;
    margin-bottom: 18px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.impact-stat-value {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.impact-stat-note {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.impact-stat-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 20px;
    position: relative;
    z-index: 1;
}

.impact-icon {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: 0 5px 15px rgba(0, 209, 178, 0.3);
}

.car-icon::before {
    content: '\1F697';
    font-size: 22px;
}

.phone-icon::before {
    content: '\1F4F1';
    font-size: 22px;
}

.impact-stat-number {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.impact-stat-desc {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.4;
}

.certification-badge {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 10px;
    margin-top: 25px;
    font-size: 13px;
    position: relative;
    z-index: 1;
}

.certification-badge::before {
    content: '\2713';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    margin-right: 12px;
    font-weight: bold;
}

@media (max-width: 992px) {
    .impact-content {
        flex-direction: column;
    }
    
    .impact-left {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .impact-right {
        max-width: 100%;
    }
}

.impact-image {
    margin-top: 3rem;
}

/* Features Section */
.features-section {
    background-color: #f8f9fa;
    padding: 6rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,209,178,0.05) 0%, rgba(255,255,255,0) 70%);
    z-index: 1;
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,209,178,0.05) 0%, rgba(255,255,255,0) 70%);
    z-index: 1;
}

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

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: var(--gray-text);
    font-size: 1.05rem;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature {
    background-color: var(--light-text);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 209, 178, 0.1);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 209, 178, 0.3);
}

.feature::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, #00e5c4 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #00e5c4 100%);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    box-shadow: 0 10px 20px rgba(0, 209, 178, 0.25);
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 1px solid rgba(0, 209, 178, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    70% { transform: scale(1.1); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

.feature-icon i {
    font-size: 1.8rem;
}

.feature h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.feature p {
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 4.8rem;
}

.feature-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: rgba(0, 209, 178, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.features-action {
    text-align: center;
    margin-top: 4rem;
}

.features-action .btn {
    padding: 0.9rem 2rem;
    font-weight: 600;
    font-size: 1.05rem;
    background: linear-gradient(90deg, var(--primary-color) 0%, #00e5c4 100%);
    color: white;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 209, 178, 0.3);
    transition: all 0.3s ease;
}

.features-action .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 209, 178, 0.4);
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .feature {
        padding: 2rem 1.5rem;
    }
    
    .feature p {
        min-height: auto;
    }
}

/* Footer */
.footer {
    background-color: #1c2630;
    color: var(--light-text);
    position: relative;
    overflow: hidden;
    padding-top: 4rem;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #009b85 0%, #00d1b2 50%, #009b85 100%);
    z-index: 2;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding-bottom: 3rem;
}

.brand-column {
    grid-column: span 1;
}

.footer-logo a {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.logo-circle {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00d1b2;
    color: white;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    margin-right: 10px;
}

.logo-text {
    color: white;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.footer-tagline {
    color: #a9b3c1;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.08);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #00d1b2;
    transform: translateY(-3px);
}

.footer-column h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #00d1b2;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a9b3c1;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: #00d1b2;
    padding-left: 5px;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: -10px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -5px;
    color: #00d1b2;
}

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

.footer-contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #a9b3c1;
}

.footer-contact-info i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.08);
    color: #00d1b2;
    border-radius: 50%;
    font-size: 12px;
    margin-right: 12px;
}

.footer-contact-info span {
    font-size: 0.95rem;
}

.footer-bottom {
    background-color: #141b24;
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
    color: #8592a6;
    font-size: 0.9rem;
}

.copyright a {
    color: #a9b3c1;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: #00d1b2;
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
    
    .brand-column {
        grid-column: 1/-1;
    }
    
    .footer-tagline {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Responsive Design */
@media screen and (min-width: 768px) {
    .hero-section {
        min-height: 600px;
    }

    .hero-content {
        margin-bottom: 0;
    }

    .product-detail {
        flex-direction: row;
        align-items: flex-start;
    }

    .product-info {
        flex: 1;
    }

    .price-comparison {
        flex: 2;
    }

    .impact-section {
        flex-direction: row;
        gap: 3rem;
    }

    .impact-content {
        flex: 1;
        text-align: left;
    }

    .impact-stats {
        justify-content: flex-start;
    }

    .impact-image {
        flex: 1;
        margin-top: 0;
    }

    .footer-content {
        flex-direction: row;
    }

    .footer-logo {
        flex: 1;
    }

    .footer-links {
        flex: 3;
    }
}

@media screen and (max-width: 767px) {
    .navbar {
        flex-wrap: wrap;
    }

    .nav-links {
        order: 3;
        margin-top: 1rem;
        width: 100%;
    }

    .nav-links ul {
        justify-content: space-around;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    /* Verbergen van de cart-icon in de reguliere navigatie op mobiel */
    .nav-icons .cart-icon {
        display: none;
    }
    
    /* Aanpassen van de menu-toggle sectie om ruimte te maken voor cart-icon */
    .navbar-container {
        position: relative;
    }
    
    .menu-toggle {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    /* Mobiele cart-icon naast hamburgermenu */
    .menu-toggle .mobile-cart-icon {
        position: relative;
        display: block;
    }
    
    .menu-toggle .mobile-cart-icon .cart-count {
        position: absolute;
        top: -5px;
        right: -5px;
        background-color: var(--primary-color);
        color: white;
        border-radius: 50%;
        width: 18px;
        height: 18px;
        font-size: 0.7rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .product-card {
        padding: 1rem;
    }

    .product-card img {
        height: 100px;
    }

    .product-info {
        flex-direction: column;
        gap: 1.5rem;
    }

    .price-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Special adjustments for very small screens */
@media screen and (max-width: 400px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .nav-links ul {
        flex-direction: column;
        align-items: center;
    }

    .impact-stats {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Prijsvergelijker Styling */
.price-comparison-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    position: relative;
    overflow: hidden;
}

.price-comparison-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,209,178,0.1) 0%, rgba(0,209,178,0) 70%);
    z-index: 1;
}

.price-comparison-section .container {
    position: relative;
    z-index: 2;
}

.comparison-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #666;
}

.model-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    background-color: #fff;
    border-radius: 50px;
    padding: 0.5rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,209,178,0.1);
    position: relative;
    z-index: 3;
}

.model-tab {
    background: none;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 30px;
    margin: 0 0.2rem;
    cursor: pointer;
    font-weight: 500;
    color: #444;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.model-tab:hover {
    color: #00d1b2;
    background-color: rgba(0,209,178,0.05);
}

.model-tab.active {
    background: linear-gradient(90deg, #00d1b2, #4db6ac);
    color: white;
    box-shadow: 0 4px 10px rgba(0,209,178,0.2);
    font-weight: 600;
}

.comparison-card {
    background-color: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.premium-card {
    position: relative;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #00d1b2, #4db6ac);
    z-index: 2;
}

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

.phone-preview {
    padding: 3rem 2rem 2.5rem;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    background-color: #ffffff;
    position: relative;
}

.premium-preview {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    box-shadow: 0 8px 16px -8px rgba(0,0,0,0.05);
}

.premium-badge {
    background: linear-gradient(90deg, #00d1b2, #4db6ac);
    color: white;
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0.5rem 0 1.2rem;
    box-shadow: 0 6px 15px rgba(0,209,178,0.25);
    letter-spacing: 0.5px;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.premium-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,209,178,0.35);
}

.phone-image {
    height: 200px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.phone-title {
    color: #00d1b2;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.comparison-subtitle {
    color: #777;
    max-width: 600px;
    margin: 0 auto;
}

.price-comparison-table {
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 1.2rem;
    background-color: #f9f9f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
}

.price-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.07);
}

.premium-standard-row {
    border: 1px solid #eee;
}

.renewly-row {
    background-color: #e6fff9;
    border: 3px solid #00d1b2;
    position: relative;
    overflow: hidden;
    padding: 2rem 1.5rem;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,209,178,0.15);
}

.premium-row {
    background: linear-gradient(135deg, #e6fff9 0%, #f0fffc 100%);
    box-shadow: 0 8px 25px rgba(0,209,178,0.12);
    border-radius: 14px;
}

.provider-info {
    display: flex;
    align-items: center;
    min-width: 200px;
}

.provider-logo {
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
}

.provider-logo-img {
    height: 75px;
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
    max-width: 180px;
    object-fit: contain;
}

.provider-logo.renewly {
    color: #00d1b2;
}

.best-deal-badge {
    background: linear-gradient(90deg, #00d1b2, #4db6ac);
    color: white;
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-left: 1rem;
    font-weight: 600;
    box-shadow: 0 3px 8px rgba(0,209,178,0.2);
    letter-spacing: 0.3px;
}

.price-info {
    text-align: right;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    letter-spacing: -0.5px;
    margin-bottom: 3px;
}

.renewly-row .price-amount {
    color: #00d1b2;
}

.price-difference {
    color: #ff4d4d;
    font-size: 0.9rem;
}

.price-updated {
    text-align: center;
    color: #888;
    font-size: 0.85rem;
    margin: 2rem 0 1.5rem;
    font-style: italic;
}

.compare-action {
    text-align: center;
    padding: 1.5rem 0;
}

.compare-action .btn {
    padding: 0.8rem 2rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.compare-action .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,209,178,0.15);
}

/* Responsive styling for price comparison */
@media screen and (max-width: 767px) {
    .model-tabs {
        flex-direction: column;
        border-radius: 12px;
        padding: 0.5rem;
    }
    
    .model-tab {
        margin: 0.2rem 0;
    }
    
    .price-row {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .provider-info {
        justify-content: center;
    }
    
    .price-info {
        text-align: center;
    }
}

/* Mobile Responsive Styles for Hero Banner */
@media screen and (max-width: 768px) {
    /* Hero Section Mobile */
    .hero-section {
        min-height: 400px;
        padding: 30px 15px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-feature {
        justify-content: center;
        font-size: 0.85rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 24px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    /* Hero Section Small Mobile */
    .hero-section {
        min-height: 350px;
        padding: 20px 10px;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .hero-feature {
        font-size: 0.8rem;
    }
    
    .hero-feature i {
        font-size: 1rem;
    }
}

/* Homepage Product Cards */
.products-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.products-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-card.clickable-card {
    cursor: pointer;
}

.product-card.clickable-card:hover {
    border: 2px solid var(--primary-color);
}

.grade-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.product-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 1rem 0;
}

.product-card h3 {
    font-size: 1.25rem;
    margin: 1rem 0 0.5rem;
    color: var(--text-color);
}

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

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

.view-all .btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all .btn:hover {
    background: #00b89e;
    transform: translateY(-2px);
}

/* Responsive Design for Product Cards */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .product-card {
        padding: 1rem;
    }
    
    .product-card img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .product-card {
        padding: 0.75rem;
    }
    
    .product-card img {
        width: 80px;
        height: 80px;
    }
    
    .product-card h3 {
        font-size: 1rem;
    }
    
    .product-card .price {
        font-size: 0.9rem;
    }
}
