/* ========================================
   KOFFIEBOOM.NL - Consolidated Styles
   Minimalist & Clean Design
   ======================================== */

/* Base Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #faf9f7;
    --text: #1a1a1a;
    --text-light: #6b6b6b;
    --accent: #2d5016;
    --accent-dark: #1a3409;
    --accent-light: #e8efe3;
    --border: #e5e5e5;
    --card-bg: #ffffff;
    --warning: #f59e0b;
    --error: #dc2626;
    --success: #16a34a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* Accessibility */
*:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    padding: 16px 24px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 16px;
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-in > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-in.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-in.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-in.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-in.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-in.visible > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-in.visible > *:nth-child(6) { transition-delay: 0.5s; }

.stagger-in.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Free Shipping Banner */
.free-shipping-banner {
    background: var(--accent);
    color: white;
    text-align: center;
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 500;
}

.free-shipping-banner strong {
    font-weight: 700;
}

/* Header */
header {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: rgba(250, 249, 247, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text);
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

nav a:hover {
    color: var(--text);
    background: var(--accent-light);
}

.nav-cta {
    background: var(--text) !important;
    color: white !important;
    font-weight: 500;
}

.nav-cta:hover {
    background: var(--accent) !important;
    transform: translateY(-2px);
}

/* Cart Icon */
.cart-link {
    position: relative;
    display: flex;
    align-items: center;
    padding: 8px !important;
}

.cart-link svg {
    width: 24px;
    height: 24px;
    stroke: var(--text);
    transition: stroke 0.3s;
}

.cart-link:hover svg {
    stroke: var(--accent);
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 18px;
    height: 18px;
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    position: absolute;
    left: 10px;
    transition: all 0.3s ease;
}

.mobile-menu-btn span:nth-child(1) { top: 14px; }
.mobile-menu-btn span:nth-child(2) { top: 21px; }
.mobile-menu-btn span:nth-child(3) { top: 28px; }

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 21px;
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 21px;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    width: 100%;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 99;
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav a {
    display: block;
    padding: 16px 0;
    color: var(--text);
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border);
}

.mobile-nav a:last-child {
    border-bottom: none;
}

/* Hero */
.hero {
    padding: 80px 0 100px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-light);
    color: var(--accent);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 28px;
    animation: slideDown 0.8s ease;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

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

.hero h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 24px;
    line-height: 1;
    animation: fadeUp 1s ease 0.2s both;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--accent) 0%, #4a7c23 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero p {
    color: var(--text-light);
    font-size: 1.25rem;
    max-width: 520px;
    margin: 0 auto 48px;
    animation: fadeUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 1s ease 0.6s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--text);
    color: white;
    padding: 18px 36px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(45, 80, 22, 0.3);
}

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

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-light);
    box-shadow: 0 16px 40px rgba(45, 80, 22, 0.1);
}

.btn-arrow {
    transition: transform 0.3s;
}

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

/* Trust badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
    animation: fadeUp 1s ease 0.8s both;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.trust-badge svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
}

/* Section Styling */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

/* How it works */
.how-it-works {
    padding: 100px 0;
    background: var(--card-bg);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.steps::before { display: none; }

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.2);
}

.step h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.step p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Products Section */
.products {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg) 0%, #f5f3ef 100%);
}

.products .section-header p {
    color: var(--text-light);
    max-width: 500px;
    margin: 16px auto 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.product-body {
    padding: 24px;
}

.product-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.product-origin {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.product-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Weight Options */
.weight-options {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.weight-btn {
    flex: 1;
    padding: 8px 12px;
    border: 2px solid var(--border);
    border-radius: 8px;
    background: transparent;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.weight-btn:hover {
    border-color: var(--accent);
}

.weight-btn.active {
    border-color: var(--accent);
    background: var(--accent-light);
    color: var(--accent);
}

.weight-btn span {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-light);
    margin-top: 2px;
}

.weight-btn.active span {
    color: var(--accent);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

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

.product-card .price::before {
    content: "\20AC";
    font-size: 1rem;
    margin-right: 2px;
}

.product-card .price-unit {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 400;
}

.product-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--accent);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-btn:hover {
    background: var(--accent-dark);
    transform: scale(1.1);
}

.product-btn.added {
    background: var(--success) !important;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--card-bg);
}

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

.about h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.about p {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature {
    background: var(--bg);
    padding: 28px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.06);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.feature-icon svg {
    width: 26px;
    height: 26px;
    stroke: white;
}

.feature strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.feature span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.contact-info > p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.contact-method:hover {
    transform: translateX(8px);
    border-color: var(--accent);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
}

.contact-method strong {
    display: block;
    font-size: 1rem;
}

.contact-method span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Contact Form */
.contact-form {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border);
    border-radius: 14px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg);
    color: var(--text);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-submit {
    width: 100%;
    padding: 18px 36px;
    background: var(--text);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-submit:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(45, 80, 22, 0.3);
}

/* Newsletter */
.newsletter {
    padding: 80px 0;
    background: var(--text);
    color: white;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
}

.newsletter h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.newsletter p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
}

.newsletter-form {
    display: flex;
    gap: 14px;
    flex: 1;
    max-width: 480px;
}

.newsletter-form input {
    flex: 1;
    padding: 18px 24px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 14px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.15);
}

.newsletter-form button {
    padding: 18px 32px;
    background: white;
    color: var(--text);
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--accent-light);
    color: var(--accent);
}

/* Footer */
footer {
    padding: 60px 0 40px;
    background: var(--accent-dark);
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    margin-top: 16px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.5);
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s;
}

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 52px;
    height: 52px;
    background: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-4px);
}

.back-to-top:hover svg {
    stroke: white;
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    stroke: var(--text);
    transition: stroke 0.3s;
}

/* Cookie Banner - Minimal */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 380px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    z-index: 1000;
    transform: translateY(150%);
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.5;
}

.cookie-banner a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    flex: 1;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.cookie-btn-accept {
    background: var(--accent);
    color: white;
}

.cookie-btn-accept:hover {
    background: var(--accent-dark);
}

.cookie-btn-decline {
    background: var(--bg);
    color: var(--text-light);
    border: 1px solid var(--border);
}

.cookie-btn-decline:hover {
    border-color: var(--text-light);
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
}

.cart-notification.visible {
    transform: translateY(0);
    opacity: 1;
}

.cart-notification svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
}

.cart-notification span {
    font-size: 0.95rem;
}

.cart-notification a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    margin-left: 8px;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--card-bg);
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    pointer-events: auto;
    animation: toastIn 0.4s ease;
    max-width: 360px;
}

@keyframes toastIn {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .steps::before { display: none; }

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

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-nav {
        display: block;
    }

    .hero {
        padding: 60px 0 80px;
    }

    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .trust-badges {
        flex-direction: column;
        gap: 20px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about h2 {
        font-size: 2rem;
    }

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

    .stats {
        flex-wrap: wrap;
        gap: 32px;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .cookie-banner {
        left: 16px;
        right: 16px;
        max-width: none;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
}

/* Product Images - Photo Style */
.product-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

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

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

.product-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0,0,0,0.1), transparent);
    pointer-events: none;
}


/* ========================================
   SHARED SUBPAGE STYLES
   ======================================== */

/* Page Header */
.page-header {
    padding: 80px 0 60px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.page-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    padding: 16px 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s;
}

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

.breadcrumb .sep {
    margin: 0 8px;
    opacity: 0.4;
}

/* Content Section */
.content {
    padding: 60px 0 100px;
}

/* Product Link Button (homepage cards) */
.product-btn-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 0;
    transition: gap 0.2s;
}

.product-btn-link:hover {
    gap: 10px;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--accent-dark);
    color: white;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item .stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item .stat-desc {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive additions */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .page-header {
        padding: 60px 0 40px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

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

@media (max-width: 1024px) {
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ========================================
   PRODUCT DETAIL PAGES
   ======================================== */

/* Product Hero */
.product-hero {
    padding: 60px 0 80px;
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Product Image */
.product-image-section {
    position: sticky;
    top: 120px;
}

.product-main-image {
    border-radius: 24px;
    height: 480px;
    position: relative;
    overflow: hidden;
}

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

.product-main-image:hover img {
    transform: scale(1.03);
}

.product-badges {
    position: absolute;
    top: 24px;
    left: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.product-badge-large {
    background: rgba(255,255,255,0.95);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

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

.product-badge-large.popular {
    background: var(--warning);
    color: white;
}

/* Product Info */
.product-info {
    padding: 20px 0;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.meta-dot {
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
}

.product-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 20px;
    line-height: 1.05;
}

.product-tagline {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Flavor Tags */
.flavor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.flavor-tag {
    padding: 10px 20px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Quick Stats */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.quick-stats .stat-item {
    text-align: center;
    padding: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.quick-stats .stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    margin-bottom: 6px;
}

.quick-stats .stat-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}

/* Purchase Box */
.purchase-box {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s ease;
}

.purchase-box:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 28px;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -2px;
}

.purchase-box .price-unit {
    font-size: 1rem;
    color: var(--text-light);
    margin-left: 8px;
}

.option-group {
    margin-bottom: 24px;
}

.option-label {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.purchase-box .weight-buttons {
    display: flex;
    gap: 10px;
}

.purchase-box .weight-btn {
    flex: 1;
    padding: 16px;
    border: 2px solid var(--border);
    background: white;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
    font-family: inherit;
}

.purchase-box .weight-btn:hover {
    border-color: var(--accent);
}

.purchase-box .weight-btn.active {
    border-color: var(--accent);
    background: var(--accent-light);
}

.purchase-box .weight-btn .size {
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
}

.purchase-box .weight-btn .price {
    font-size: 0.85rem;
    color: var(--text-light);
}

.grind-select {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.grind-select:focus {
    outline: none;
    border-color: var(--accent);
}

.quantity-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.quantity-input {
    display: flex;
    align-items: center;
    border: 2px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.quantity-input button {
    width: 48px;
    height: 48px;
    border: none;
    background: var(--bg);
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s ease;
    font-family: inherit;
}

.quantity-input button:hover {
    background: var(--accent-light);
}

.quantity-input input {
    width: 60px;
    height: 48px;
    border: none;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: inherit;
}

.quantity-input input:focus {
    outline: none;
}

.add-to-cart-btn {
    width: 100%;
    padding: 20px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.add-to-cart-btn:hover {
    background: #3d6b1f;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 80, 22, 0.3);
}

.add-to-cart-btn svg {
    width: 24px;
    height: 24px;
}

.add-to-cart-btn.added {
    background: #16a34a;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

.content-section:first-of-type {
    border-top: none;
}

/* Het Verhaal Section */
.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text);
}

.story-text p {
    margin-bottom: 24px;
}

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

.story-sidebar {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    height: fit-content;
}

.sidebar-item {
    margin-bottom: 24px;
}

.sidebar-item:last-child {
    margin-bottom: 0;
}

.sidebar-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    margin-bottom: 6px;
}

.sidebar-value {
    font-size: 1rem;
    font-weight: 600;
}

/* Smaaknotities Section */
.tasting-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.tasting-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.tasting-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.tasting-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tasting-icon {
    width: 32px;
    height: 32px;
    background: var(--accent-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tasting-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent);
}

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

/* Taste Profile Visual */
.taste-profile {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 40px;
}

.taste-profile h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.taste-bars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.taste-bar-item {
    text-align: center;
}

.taste-bar-container {
    height: 100px;
    background: var(--bg);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}

.taste-bar-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, var(--accent), #6b8f3a);
    border-radius: 8px;
    transition: height 1s ease;
}

.taste-bar-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
}

/* Bereidingstips Section */
.brewing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.brewing-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.brewing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.brewing-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.brewing-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brewing-icon svg {
    width: 22px;
    height: 22px;
    stroke: white;
}

.brewing-specs {
    list-style: none;
}

.brewing-specs li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.brewing-specs li:last-child {
    border-bottom: none;
}

.spec-label {
    color: var(--text-light);
}

.spec-value {
    font-weight: 600;
}

/* Related Products */
.related-section {
    padding: 80px 0;
    background: var(--bg);
}

.related-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.related-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 28px;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.related-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

.related-card h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.related-card .origin {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.related-card .price {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.1rem;
}

/* Product Detail Responsive */
@media (max-width: 1000px) {
    .product-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-image-section {
        position: static;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tasting-grid,
    .brewing-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .product-main-image {
        height: 300px;
        border-radius: 16px;
    }

    .product-title {
        font-size: 2.5rem;
    }

    .quick-stats {
        grid-template-columns: 1fr;
    }

    .taste-bars {
        grid-template-columns: repeat(2, 1fr);
    }

    .purchase-box .weight-buttons {
        flex-wrap: wrap;
    }

    .purchase-box .weight-btn {
        flex: 1 1 45%;
    }
}
