/* Adjustable.nl - Main Stylesheet */

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

:root {
    --primary: #2d5a47;
    --primary-dark: #1e3d30;
    --accent: #c9a962;
    --dark: #1a1a1a;
    --dark-light: #2a2a2a;
    --gray-100: #f7f6f3;
    --gray-200: #e8e6e1;
    --gray-400: #9a9a9a;
    --gray-600: #5a5a5a;
    --gray-800: #2a2a2a;
    --white: #ffffff;
    --cream: #faf9f6;
    --error: #dc3545;
    --success: #28a745;
}

/* Dark mode */
[data-theme="dark"] {
    --primary: #4a9b7f;
    --primary-dark: #3d8269;
    --accent: #d4b86a;
    --dark: #f5f5f5;
    --dark-light: #e0e0e0;
    --gray-100: #1e1e1e;
    --gray-200: #2a2a2a;
    --gray-400: #888;
    --gray-600: #aaa;
    --gray-800: #e0e0e0;
    --white: #1e1e1e;
    --cream: #141414;
}

[data-theme="dark"] nav { background: rgba(20, 20, 20, 0.95); border-color: #2a2a2a; }
[data-theme="dark"] .mobile-nav { background: #1e1e1e; border-color: #2a2a2a; }
[data-theme="dark"] .mobile-nav li { border-color: #2a2a2a; }
[data-theme="dark"] footer { background: #0a0a0a; }
[data-theme="dark"] .usps { background: #0a0a0a; }
[data-theme="dark"] .cookie-banner { background: #0a0a0a; }
[data-theme="dark"] .product-card { background: #1e1e1e; border-color: #2a2a2a; }
[data-theme="dark"] .product-image { background: #2a2a2a; }
[data-theme="dark"] .feature-card { background: #1e1e1e; }
[data-theme="dark"] .contact-form { background: #1e1e1e; border-color: #2a2a2a; }
[data-theme="dark"] .contact-method .icon { background: #2a2a2a; }
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea { background: #2a2a2a; border-color: #3a3a3a; color: #e0e0e0; }
[data-theme="dark"] .hero-badge { background: #1e1e1e; }
[data-theme="dark"] .stat-card { background: rgba(255,255,255,0.1); }
[data-theme="dark"] .product-gallery { background: #1e1e1e; border-color: #2a2a2a; }
[data-theme="dark"] .faq-item { background: #1e1e1e; border-color: #2a2a2a; }
[data-theme="dark"] .cta-box { background: #1a3d30; }

/* Theme Toggle */
.theme-toggle {
    position: fixed; bottom: 2rem; right: 2rem; width: 48px; height: 48px;
    background: var(--white); border: 2px solid var(--gray-200); border-radius: 50%;
    cursor: pointer; z-index: 999; display: flex; align-items: center; justify-content: center;
    transition: all 0.3s; box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.theme-toggle:hover { transform: scale(1.1); }
.theme-toggle svg { width: 22px; height: 22px; stroke: var(--gray-600); fill: none; stroke-width: 2; }
.theme-toggle .sun { display: none; }
.theme-toggle .moon { display: block; }
[data-theme="dark"] .theme-toggle .sun { display: block; }
[data-theme="dark"] .theme-toggle .moon { display: none; }

/* Base */
html { scroll-behavior: smooth; }
body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--cream);
    transition: background 0.3s, color 0.3s;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* Animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* Cookie Banner */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--dark); color: #fff; padding: 1.25rem; z-index: 9999;
    transform: translateY(100%); transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cookie-banner p { font-size: 0.9rem; color: #aaa; flex: 1; }
.cookie-banner a { color: #fff; }
.cookie-buttons { display: flex; gap: 0.75rem; }
.cookie-btn { padding: 0.625rem 1.25rem; border-radius: 6px; font-weight: 500; cursor: pointer; border: none; font-size: 0.875rem; transition: all 0.2s; }
.cookie-accept { background: var(--primary); color: #fff; }
.cookie-accept:hover { background: var(--primary-dark); }
.cookie-decline { background: transparent; color: #fff; border: 1px solid #555; }
.cookie-decline:hover { border-color: #fff; }

/* Navigation */
nav {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(250, 249, 246, 0.95); backdrop-filter: blur(10px);
    z-index: 1000; border-bottom: 1px solid var(--gray-200); transition: all 0.3s ease;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06); }
nav .container { display: flex; justify-content: space-between; align-items: center; height: 72px; }
.logo { font-size: 1.5rem; font-weight: 700; color: var(--dark); text-decoration: none; }
.logo span { color: var(--primary); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--gray-600); text-decoration: none; font-weight: 500; transition: color 0.3s ease; position: relative; }
.nav-links a::after { content: ""; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--primary); transition: width 0.3s ease; }
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--primary); }
.nav-cta { background: var(--primary); color: var(--white) !important; padding: 0.625rem 1.25rem; border-radius: 8px; transition: background 0.3s ease, transform 0.2s ease !important; }
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--primary-dark) !important; transform: translateY(-1px); }
.mobile-menu { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.back-link { color: var(--primary); text-decoration: none; font-weight: 500; display: flex; align-items: center; gap: 0.5rem; }

/* Mobile Nav */
.mobile-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 1rem 0; z-index: 999; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav li { border-bottom: 1px solid var(--gray-100); }
.mobile-nav li:last-child { border-bottom: none; }
.mobile-nav a { display: block; padding: 1rem 1.5rem; color: var(--gray-800); text-decoration: none; font-weight: 500; transition: background 0.2s; }
.mobile-nav a:hover { background: var(--gray-100); color: var(--primary); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 1rem 2rem; border-radius: 8px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; border: none; cursor: pointer; font-size: 1rem; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(45, 90, 71, 0.3); }
.btn-primary:disabled { background: var(--gray-400); cursor: not-allowed; transform: none; box-shadow: none; }
.btn-primary svg { transition: transform 0.3s ease; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-secondary { background: var(--white); color: var(--gray-800); border: 2px solid var(--gray-200); }
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }
.btn-small { padding: 0.625rem 1.25rem; font-size: 0.875rem; }

/* Hero */
.hero { padding: 10rem 0 6rem; background: var(--cream); overflow: hidden; }
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-content { animation: fadeUp 0.8s ease forwards; }
.hero-content h1 { font-size: 3.5rem; font-weight: 700; line-height: 1.1; color: var(--dark); margin-bottom: 1.5rem; }
.hero-content h1 span { color: var(--primary); }
.hero-content p { font-size: 1.25rem; color: var(--gray-600); margin-bottom: 2rem; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image { position: relative; }
.hero-image svg { width: 100%; height: auto; background: var(--gray-100); border-radius: 16px; }
.hero-badge { position: absolute; bottom: -20px; left: -20px; background: var(--white); padding: 1rem 1.5rem; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); display: flex; align-items: center; gap: 0.75rem; }
.hero-badge svg { width: 32px; height: 32px; stroke: var(--primary); }
.hero-badge span { font-weight: 600; color: var(--dark); }

/* Sections */
.section-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.section-header h2 { font-size: 2.5rem; font-weight: 700; color: var(--dark); margin-bottom: 1rem; }
.section-header p { color: var(--gray-600); font-size: 1.125rem; }

/* Features */
.features { padding: 6rem 0; background: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.feature-card { background: var(--cream); padding: 2rem; border-radius: 16px; transition: all 0.4s ease; }
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.feature-icon { width: 56px; height: 56px; background: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; transition: transform 0.3s ease; }
.feature-card:hover .feature-icon { transform: scale(1.1); }
.feature-icon svg { width: 28px; height: 28px; stroke: #fff; stroke-width: 2; fill: none; }
.feature-card h3 { font-size: 1.25rem; font-weight: 600; color: var(--dark); margin-bottom: 0.75rem; }
.feature-card p { color: var(--gray-600); }

/* Products */
.products { padding: 6rem 0; background: var(--cream); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.product-card { background: var(--white); border-radius: 16px; overflow: hidden; transition: all 0.4s ease; border: 1px solid var(--gray-200); text-decoration: none; color: inherit; display: block; position: relative; }
.product-card:hover { transform: translateY(-8px); box-shadow: 0 25px 50px rgba(0,0,0,0.1); border-color: transparent; }
.product-image { height: 240px; background: var(--gray-100); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.product-image svg { width: 160px; height: 100px; transition: transform 0.4s ease; }
.product-card:hover .product-image svg { transform: scale(1.1); }
.product-badge { position: absolute; top: 1rem; left: 1rem; background: var(--primary); color: #fff; padding: 0.375rem 0.875rem; border-radius: 50px; font-size: 0.75rem; font-weight: 600; }
.product-info { padding: 1.5rem; }
.product-info h3 { font-size: 1.25rem; font-weight: 600; color: var(--dark); margin-bottom: 0.5rem; }
.product-info .specs { color: var(--gray-600); font-size: 0.875rem; margin-bottom: 1rem; }
.product-price { display: flex; align-items: center; justify-content: space-between; }
.price { font-size: 1.5rem; font-weight: 700; color: var(--dark); }
.price span { font-size: 0.875rem; font-weight: 400; color: var(--gray-600); }

/* Sold out products */
.product-card.sold-out.fade-in.visible { opacity: 0.7; }
.product-card.sold-out .product-image { filter: grayscale(50%); }
.product-card.sold-out::after { content: "Uitverkocht"; position: absolute; top: 1rem; right: 1rem; background: #666; color: white; padding: 0.25rem 0.75rem; border-radius: 50px; font-size: 0.75rem; font-weight: 600; }

/* Benefits */
.benefits { padding: 6rem 0; background: var(--white); }
.benefits .container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.benefits-image { background: var(--primary); border-radius: 16px; padding: 3rem; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.stat-card { background: rgba(255,255,255,0.15); padding: 1.5rem; border-radius: 12px; text-align: center; color: #fff; transition: transform 0.3s ease, background 0.3s ease; }
.stat-card:hover { transform: scale(1.05); background: rgba(255,255,255,0.2); }
.stat-card .number { font-size: 2.5rem; font-weight: 700; margin-bottom: 0.25rem; }
.stat-card .label { font-size: 0.875rem; opacity: 0.9; }
.benefits-content h2 { font-size: 2.5rem; font-weight: 700; color: var(--dark); margin-bottom: 1.5rem; }
.benefits-content > p { color: var(--gray-600); font-size: 1.125rem; margin-bottom: 2rem; }
.benefits-list { list-style: none; }
.benefits-list li { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.benefits-list svg { width: 24px; height: 24px; stroke: var(--primary); stroke-width: 2; fill: none; flex-shrink: 0; margin-top: 2px; }
.benefits-list strong { color: var(--dark); }

/* USPs */
.usps { padding: 4rem 0; background: var(--dark); }
.usps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.usp { text-align: center; color: #fff; transition: transform 0.3s ease; }
.usp:hover { transform: translateY(-4px); }
.usp svg { width: 48px; height: 48px; stroke: var(--accent); stroke-width: 2; fill: none; margin-bottom: 1rem; transition: transform 0.3s ease; }
.usp:hover svg { transform: scale(1.15); }
.usp h4 { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }
.usp p { color: #888; font-size: 0.875rem; }

/* Contact */
.contact { padding: 6rem 0; background: var(--cream); }
.contact .container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info h2 { font-size: 2.5rem; font-weight: 700; color: var(--dark); margin-bottom: 1rem; }
.contact-info > p { color: var(--gray-600); font-size: 1.125rem; margin-bottom: 2rem; }
.contact-methods { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-method { display: flex; align-items: center; gap: 1rem; transition: transform 0.3s ease; }
.contact-method:hover { transform: translateX(8px); }
.contact-method .icon { width: 56px; height: 56px; background: var(--white); border-radius: 12px; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.contact-method:hover .icon { background: var(--primary); box-shadow: 0 4px 15px rgba(45, 90, 71, 0.3); }
.contact-method svg { width: 24px; height: 24px; stroke: var(--primary); stroke-width: 2; fill: none; transition: stroke 0.3s ease; }
.contact-method:hover svg { stroke: #fff; }
.contact-method span { font-weight: 500; color: var(--gray-600); font-size: 0.875rem; }
.contact-method strong { display: block; color: var(--dark); font-size: 1.125rem; }

/* Forms */
.contact-form { background: var(--white); padding: 2.5rem; border-radius: 16px; border: 1px solid var(--gray-200); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: 500; color: var(--dark); margin-bottom: 0.5rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 1rem; border: 2px solid var(--gray-200); border-radius: 8px; font-family: inherit; font-size: 1rem; transition: all 0.3s ease; background: var(--cream); color: var(--gray-800); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(45, 90, 71, 0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input.error, .form-group select.error { border-color: var(--error); }
.form-group .error-msg { color: var(--error); font-size: 0.75rem; display: none; }
.form-group input.error + .error-msg { display: block; }
.contact-form .btn { width: 100%; justify-content: center; }
.contact-form .btn:disabled { opacity: 0.7; cursor: not-allowed; }
.form-message { padding: 1rem; border-radius: 8px; margin-bottom: 1.5rem; display: none; }
.form-message.success { display: block; background: #dcfce7; color: #166534; }
.form-message.error { display: block; background: #fee2e2; color: #991b1b; }

/* Footer */
footer { background: var(--dark); color: #fff; padding: 4rem 0 2rem; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { color: #888; margin-top: 1rem; font-size: 0.875rem; }
.footer-column h4 { font-size: 1rem; font-weight: 600; margin-bottom: 1.25rem; }
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 0.75rem; }
.footer-column a { color: #888; text-decoration: none; font-size: 0.875rem; transition: all 0.3s ease; }
.footer-column a:hover { color: #fff; padding-left: 4px; }
.footer-bottom { padding-top: 2rem; border-top: 1px solid #333; display: flex; justify-content: space-between; align-items: center; font-size: 0.875rem; color: #888; }

/* Breadcrumbs */
.breadcrumbs { padding: 1rem 0; font-size: 0.875rem; }
.breadcrumbs a { color: var(--gray-600); text-decoration: none; }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs span { color: var(--gray-400); margin: 0 0.5rem; }
.breadcrumbs .current { color: var(--dark); font-weight: 500; }

/* FAQ */
.faq-grid { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: 12px; margin-bottom: 1rem; overflow: hidden; }
.faq-question { padding: 1.25rem 1.5rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: var(--dark); }
.faq-question:hover { background: rgba(45,90,71,0.03); }
.faq-question svg { width: 20px; height: 20px; stroke: var(--gray-400); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: all 0.3s; }
.faq-item.open .faq-answer { padding: 0 1.5rem 1.25rem; max-height: 500px; }
.faq-answer p { color: var(--gray-600); line-height: 1.7; }

/* Product Page Gallery */
.product-page { padding: 3rem 0; }
.product-page .container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.product-gallery { background: var(--white); border-radius: 16px; padding: 3rem; border: 1px solid var(--gray-200); }
.gallery-container { display: flex; flex-direction: column; gap: 1rem; }
.gallery-main { background: var(--white); border-radius: 16px; padding: 2rem; border: 1px solid var(--gray-200); min-height: 300px; display: flex; align-items: center; justify-content: center; }
.gallery-main svg { width: 100%; height: auto; max-height: 280px; }
.gallery-thumbs { display: flex; gap: 0.75rem; }
.gallery-thumb { flex: 1; background: var(--white); border-radius: 8px; padding: 0.75rem; border: 2px solid var(--gray-200); cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center; }
.gallery-thumb:hover { border-color: var(--primary); }
.gallery-thumb.active { border-color: var(--primary); background: rgba(45,90,71,0.05); }
.gallery-thumb svg { width: 100%; height: 50px; }
.gallery-thumb span { font-size: 0.7rem; color: var(--gray-600); display: block; text-align: center; margin-top: 0.25rem; }

/* Product Details */
.product-details h1 { font-size: 2.5rem; color: var(--dark); margin-bottom: 0.5rem; }
.product-price { font-size: 2.5rem; font-weight: 700; color: var(--primary); margin-bottom: 1.5rem; }
.product-price small { font-size: 1rem; font-weight: 400; color: var(--gray-600); }
.product-description { color: var(--gray-600); margin-bottom: 2rem; line-height: 1.8; }
.product-features { margin-bottom: 2rem; }
.product-features h3 { font-size: 1.125rem; margin-bottom: 1rem; color: var(--dark); }
.product-features ul { list-style: none; }
.product-features li { padding: 0.75rem 0; border-bottom: 1px solid var(--gray-200); display: flex; justify-content: space-between; }
.product-features li span:first-child { color: var(--gray-600); }
.product-features li span:last-child { font-weight: 500; color: var(--dark); }
.product-usps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem; }
.product-usp { display: flex; align-items: center; gap: 0.75rem; padding: 1rem; background: var(--white); border-radius: 8px; border: 1px solid var(--gray-200); }
.product-usp svg { width: 24px; height: 24px; stroke: var(--primary); flex-shrink: 0; }
.product-usp span { font-size: 0.875rem; color: var(--gray-600); }

/* Stock Info */
.stock-info { background: #e8f5e9; border: 1px solid #a5d6a7; border-radius: 8px; padding: 1rem; margin-bottom: 1.5rem; }
.stock-info.low { background: #fff3e0; border-color: #ffcc80; }
.stock-badge { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; color: #2e7d32; margin-bottom: 0.5rem; }
.stock-info.low .stock-badge { color: #e65100; }
.stock-badge .dot { width: 8px; height: 8px; background: #4caf50; border-radius: 50%; animation: pulse 2s infinite; }
.stock-info.low .stock-badge .dot { background: #ff9800; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.delivery-info { font-size: 0.875rem; color: #555; }
.delivery-info strong { color: #2e7d32; }
.stock-info.low .delivery-info strong { color: #e65100; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card { background: var(--white); border-radius: 16px; overflow: hidden; border: 1px solid var(--gray-200); text-decoration: none; color: inherit; transition: all 0.3s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.blog-card-image { height: 180px; background: var(--gray-100); display: flex; align-items: center; justify-content: center; }
.blog-card-content { padding: 1.5rem; }
.blog-card h3 { font-size: 1.125rem; color: var(--dark); margin-bottom: 0.5rem; }
.blog-card p { color: var(--gray-600); font-size: 0.875rem; }

/* Responsive */
@media (max-width: 1024px) {
    .hero .container, .benefits .container, .contact .container, .product-page .container { grid-template-columns: 1fr; gap: 3rem; }
    .hero-content h1 { font-size: 2.75rem; }
    .products-grid, .features-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .usps-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu { display: block; }
    .hero { padding: 8rem 0 4rem; }
    .hero-content h1 { font-size: 2rem; }
    .product-details h1 { font-size: 2rem; }
    .section-header h2, .benefits-content h2, .contact-info h2 { font-size: 2rem; }
    .products-grid, .features-grid, .blog-grid { grid-template-columns: 1fr; }
    .product-usps { grid-template-columns: 1fr; }
    .hero-badge { position: static; margin-top: 1.5rem; display: inline-flex; }
    .footer-content { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .cookie-banner .container { flex-direction: column; text-align: center; }
    .theme-toggle { bottom: 1rem; right: 1rem; width: 42px; height: 42px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
