/* =============================================
   Verzendzakken Bulk - Clean Modern Design
   Based on SpieringStore design system
   ============================================= */

/* --- Variables --- */
:root {
    --vz-primary: #4f46e5;
    --vz-primary-light: #6366f1;
    --vz-primary-dark: #4338ca;
    --vz-accent: #f59e0b;
    --vz-success: #22c55e;
    --vz-danger: #ef4444;
    --vz-text: #1e293b;
    --vz-text-light: #64748b;
    --vz-text-muted: #94a3b8;
    --vz-bg: #ffffff;
    --vz-bg-alt: #f8fafc;
    --vz-border: #e2e8f0;
    --vz-border-light: #f1f5f9;
    --vz-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --vz-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --vz-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --vz-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --vz-radius: 12px;
    --vz-radius-sm: 8px;
    --vz-max-width: 1200px;
    --vz-nav-height: 64px;
    --vz-topbar-height: 36px;
    --vz-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--vz-font); font-size: 15px; color: var(--vz-text); background: var(--vz-bg); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

.vz-container { max-width: var(--vz-max-width); margin: 0 auto; padding: 0 20px; }

/* --- Top Bar --- */
.vz-topbar {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    color: rgba(255,255,255,0.9); font-size: 12px; font-weight: 500;
    height: var(--vz-topbar-height); position: fixed; top: 0; left: 0; right: 0; z-index: 101;
}
.vz-topbar-inner {
    max-width: var(--vz-max-width); margin: 0 auto; padding: 0 20px;
    display: flex; align-items: center; justify-content: space-between; height: 100%;
}
.vz-topbar-usps { display: flex; align-items: center; gap: 24px; }
.vz-topbar-item { display: flex; align-items: center; gap: 5px; white-space: nowrap; }
.vz-topbar-item svg { color: #a5b4fc; flex-shrink: 0; }
.vz-topbar-right { display: flex; align-items: center; }
.vz-topbar-bol {
    display: flex; align-items: center; gap: 6px;
    font-weight: 600; font-size: 11px; color: white; white-space: nowrap;
}

/* --- Navigation --- */
.vz-nav {
    position: fixed; top: var(--vz-topbar-height); left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--vz-border-light);
    height: var(--vz-nav-height);
    transition: box-shadow 0.3s;
}
.vz-nav.scrolled { box-shadow: var(--vz-shadow); }
.vz-nav-container {
    max-width: var(--vz-max-width); margin: 0 auto; padding: 0 20px;
    display: flex; align-items: center; justify-content: space-between; height: 100%;
}
.vz-nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.vz-logo-icon { width: 32px; height: 32px; background: var(--vz-primary); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.vz-logo-icon svg { width: 20px; height: 20px; color: white; }
.vz-logo-text { font-size: 18px; font-weight: 800; letter-spacing: -0.5px; }
.vz-logo-accent { color: var(--vz-primary); }

.vz-nav-links { display: flex; align-items: center; gap: 4px; }
.vz-nav-link {
    padding: 8px 14px; border-radius: 8px; font-size: 14px; font-weight: 500;
    color: var(--vz-text-light); transition: all 0.2s; white-space: nowrap;
}
.vz-nav-link:hover { color: var(--vz-text); background: var(--vz-bg-alt); }

.vz-nav-cart {
    position: relative; display: flex; align-items: center; padding: 8px;
    border-radius: 8px; color: var(--vz-text-light); transition: all 0.2s;
}
.vz-nav-cart:hover { color: var(--vz-text); background: var(--vz-bg-alt); }
.vz-cart-badge {
    position: absolute; top: 0; right: -2px; min-width: 18px; height: 18px;
    background: var(--vz-primary); color: white; font-size: 11px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    border-radius: 100px; padding: 0 5px;
}

.vz-nav-cta {
    padding: 8px 20px; background: var(--vz-primary); color: white;
    border-radius: 100px; font-size: 13px; font-weight: 600;
    transition: all 0.2s; display: none;
}
.vz-nav-cta:hover { background: var(--vz-primary-dark); }

.vz-hamburger { display: none; width: 36px; height: 36px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.vz-hamburger span { display: block; width: 22px; height: 2px; background: var(--vz-text); border-radius: 2px; transition: all 0.3s; }
.vz-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.vz-hamburger.open span:nth-child(2) { opacity: 0; }
.vz-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.vz-mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.3); z-index: 90; }
.vz-mobile-overlay.open { display: block; }

/* --- Main Content --- */
.vz-main { margin-top: calc(var(--vz-nav-height) + var(--vz-topbar-height)); min-height: calc(100vh - var(--vz-nav-height) - var(--vz-topbar-height) - 200px); }

/* --- Hero Section --- */
.vz-hero {
    position: relative;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 40%, #3730a3 100%);
    padding: 80px 0 60px;
    overflow: hidden;
    color: white;
}
.vz-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400"><defs><linearGradient id="g" x1="0" y1="0" x2="1" y2="1"><stop offset="0" stop-color="%23818cf8" stop-opacity="0.08"/><stop offset="1" stop-color="%23818cf8" stop-opacity="0"/></linearGradient></defs><rect x="50" y="60" width="120" height="160" rx="8" fill="none" stroke="%23818cf8" stroke-width="1.5" opacity="0.15" transform="rotate(-12 110 140)"/><rect x="620" y="40" width="140" height="180" rx="8" fill="none" stroke="%23818cf8" stroke-width="1.5" opacity="0.12" transform="rotate(8 690 130)"/><rect x="350" y="220" width="100" height="130" rx="8" fill="none" stroke="%23818cf8" stroke-width="1" opacity="0.1" transform="rotate(-5 400 285)"/><rect x="150" y="280" width="80" height="60" rx="6" fill="none" stroke="%23818cf8" stroke-width="1" opacity="0.08"/><circle cx="700" cy="300" r="40" fill="none" stroke="%23818cf8" stroke-width="1" opacity="0.1"/><circle cx="700" cy="300" r="15" fill="none" stroke="%23818cf8" stroke-width="1" opacity="0.08"/><path d="M500 80 L540 80 L560 60 L560 120 L540 120 L500 120 Z" fill="none" stroke="%23818cf8" stroke-width="1" opacity="0.1" transform="rotate(5 530 90)"/></svg>') center/cover no-repeat;
    pointer-events: none;
}
.vz-hero-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.vz-hero-content { max-width: 540px; position: relative; z-index: 1; }
.vz-hero-visual {
    position: relative; z-index: 1; display: flex; align-items: center; justify-content: center;
}
.vz-hero-img {
    width: 100%; max-width: 420px; border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3); transform: rotate(2deg);
    border: 3px solid rgba(255,255,255,0.15);
}
.vz-hero-float-card {
    position: absolute; background: white; border-radius: 12px; padding: 14px 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2); color: var(--vz-text);
}
.vz-hero-float-card.top-left {
    top: -10px; left: -20px; transform: rotate(-3deg);
}
.vz-hero-float-card.bottom-right {
    bottom: 10px; right: -10px; transform: rotate(2deg);
}
.vz-hero-float-card .float-label { font-size: 11px; color: var(--vz-text-muted); font-weight: 500; }
.vz-hero-float-card .float-value { font-size: 18px; font-weight: 800; color: var(--vz-primary); }
.vz-hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.9);
    margin-bottom: 0; backdrop-filter: blur(4px);
}
.vz-hero-badge svg { color: #a5b4fc; }
.vz-hero-badge.vz-bol-badge { background: rgba(0,0,204,0.25); border-color: rgba(100,100,255,0.4); }
.vz-hero-badge.vz-bol-badge svg { color: white; }
.vz-hero-title {
    font-size: clamp(32px, 5vw, 48px); font-weight: 800;
    line-height: 1.1; letter-spacing: -1px; color: white;
}
.vz-hero-title .vz-title-accent { color: #a5b4fc; }
.vz-hero-subtitle { margin-top: 16px; font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.6; }
.vz-hero-buttons { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.vz-hero-buttons .vz-btn-primary { background: white; color: var(--vz-primary); border-color: white; }
.vz-hero-buttons .vz-btn-primary:hover { background: #eef2ff; border-color: #eef2ff; }
.vz-hero-buttons .vz-btn-outline { background: transparent; color: white; border-color: rgba(255,255,255,0.3); }
.vz-hero-buttons .vz-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); color: white; }
.vz-hero-stats { display: flex; flex-wrap: wrap; gap: 32px; margin-top: 40px; }
.vz-stat { text-align: left; }
.vz-stat-number { font-size: 28px; font-weight: 800; color: #a5b4fc; letter-spacing: -1px; }
.vz-stat-label { font-size: 13px; color: rgba(255,255,255,0.6); }
.vz-hero-badges { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
.vz-hero-badge-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.7); }
.vz-hero-badge-item svg { color: #a5b4fc; flex-shrink: 0; }

/* --- Buttons --- */
.vz-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 11px 24px; border-radius: 100px; font-weight: 600; font-size: 14px;
    transition: all 0.2s; white-space: nowrap; border: 2px solid transparent;
}
.vz-btn-primary { background: var(--vz-primary); color: white; border-color: var(--vz-primary); }
.vz-btn-primary:hover { background: var(--vz-primary-dark); border-color: var(--vz-primary-dark); transform: translateY(-1px); box-shadow: var(--vz-shadow-md); }
.vz-btn-outline { background: white; color: var(--vz-text); border-color: var(--vz-border); }
.vz-btn-outline:hover { border-color: var(--vz-primary); color: var(--vz-primary); }
.vz-btn-small { padding: 7px 14px; font-size: 13px; }
.vz-btn-large { padding: 14px 32px; font-size: 16px; }

/* --- Sections --- */
.vz-section { padding: 60px 0; }
.vz-section-alt { background: var(--vz-bg-alt); }
.vz-section-title { font-size: 28px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.5px; text-align: center; }
.vz-section-subtitle { font-size: 16px; color: var(--vz-text-light); text-align: center; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* --- Category Cards --- */
.vz-categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.vz-category-card {
    display: flex; flex-direction: column; align-items: center; gap: 16px;
    padding: 32px 20px; background: white; border: 1px solid var(--vz-border);
    border-radius: var(--vz-radius); transition: all 0.25s; text-align: center;
}
.vz-category-card:hover { border-color: var(--vz-primary); transform: translateY(-3px); box-shadow: var(--vz-shadow-md); }
.vz-category-icon {
    width: 64px; height: 64px; background: #eef2ff; border-radius: 14px;
    display: flex; align-items: center; justify-content: center; color: var(--vz-primary);
}
.vz-category-name { font-size: 16px; font-weight: 700; }
.vz-category-desc { font-size: 13px; color: var(--vz-text-light); }
.vz-category-price { font-size: 14px; font-weight: 600; color: var(--vz-primary); }

/* --- Product Cards --- */
.vz-products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.vz-product-card {
    background: white; border: 1px solid var(--vz-border); border-radius: var(--vz-radius);
    overflow: hidden; transition: all 0.25s;
}
.vz-product-card:hover { transform: translateY(-3px); box-shadow: var(--vz-shadow-md); border-color: transparent; }
.vz-product-image {
    aspect-ratio: 4/3; background: var(--vz-bg-alt); display: flex;
    align-items: center; justify-content: center; padding: 0; overflow: hidden;
}
.vz-product-image svg { width: 80px; height: 80px; color: var(--vz-text-muted); opacity: 0.5; }
.vz-product-image img { width: 100%; height: 100%; object-fit: cover; }
.vz-product-info { padding: 16px; }
.vz-product-name { font-size: 15px; font-weight: 600; line-height: 1.4; margin-bottom: 4px; }
.vz-product-specs { font-size: 12px; color: var(--vz-text-muted); margin-bottom: 10px; }
.vz-product-price-row { display: flex; align-items: center; justify-content: space-between; }
.vz-product-price { font-size: 18px; font-weight: 700; color: var(--vz-text); }
.vz-product-price-from { font-size: 12px; color: var(--vz-text-muted); font-weight: 400; }
.vz-product-cta {
    padding: 6px 14px; background: var(--vz-primary); color: white;
    border-radius: 100px; font-size: 12px; font-weight: 600; transition: all 0.2s;
}
.vz-product-cta:hover { background: var(--vz-primary-dark); }

/* --- Product Detail --- */
.vz-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 40px 0; }

/* Image Gallery */
.vz-gallery { display: flex; flex-direction: column; gap: 12px; }
.vz-gallery-main {
    aspect-ratio: 1; background: var(--vz-bg-alt); border-radius: var(--vz-radius);
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.vz-gallery-main svg { width: 160px; height: 160px; color: var(--vz-text-muted); opacity: 0.4; }
.vz-gallery-main img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--vz-radius); transition: opacity 0.2s; }
.vz-gallery-thumbs { display: flex; gap: 10px; }
.vz-gallery-thumb {
    width: 72px; height: 72px; border-radius: var(--vz-radius-sm); overflow: hidden;
    border: 2px solid var(--vz-border); cursor: pointer; transition: all 0.2s;
    padding: 0; background: var(--vz-bg-alt); flex-shrink: 0;
}
.vz-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.vz-gallery-thumb:hover { border-color: var(--vz-primary-light); }
.vz-gallery-thumb.active { border-color: var(--vz-primary); box-shadow: 0 0 0 1px var(--vz-primary); }

/* Legacy single image fallback */
.vz-detail-image {
    aspect-ratio: 1; background: var(--vz-bg-alt); border-radius: var(--vz-radius);
    display: flex; align-items: center; justify-content: center; padding: 0; overflow: hidden;
}
.vz-detail-image svg { width: 160px; height: 160px; color: var(--vz-text-muted); opacity: 0.4; }
.vz-detail-image img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--vz-radius); }

.vz-detail-info { padding-top: 8px; }
.vz-detail-breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--vz-text-muted); margin-bottom: 16px; }
.vz-detail-breadcrumb a { color: var(--vz-text-light); }
.vz-detail-breadcrumb a:hover { color: var(--vz-primary); }
.vz-detail-title { font-size: clamp(22px, 3vw, 30px); font-weight: 700; line-height: 1.2; letter-spacing: -0.5px; }
.vz-detail-specs {
    display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px;
}
.vz-spec-tag {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 4px 10px; background: var(--vz-bg-alt); border-radius: 100px;
    font-size: 12px; color: var(--vz-text-light); font-weight: 500;
}
.vz-detail-price {
    font-size: 32px; font-weight: 800; color: var(--vz-text); margin-top: 20px;
}
.vz-detail-price-per {
    font-size: 14px; color: var(--vz-text-muted); font-weight: 400; margin-top: 4px;
}
.vz-detail-shipping {
    display: flex; align-items: center; gap: 6px;
    margin-top: 12px; font-size: 13px; color: var(--vz-success); font-weight: 500;
}

/* Variant selector */
.vz-variants { margin-top: 24px; }
.vz-variant-label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 10px; }
.vz-variant-options { display: flex; gap: 8px; flex-wrap: wrap; }
.vz-variant-btn {
    padding: 10px 18px; border: 2px solid var(--vz-border); border-radius: var(--vz-radius-sm);
    font-size: 13px; font-weight: 500; transition: all 0.2s; background: white;
    display: flex; flex-direction: column; align-items: center; gap: 2px; min-width: 100px;
}
.vz-variant-btn:hover { border-color: var(--vz-primary-light); }
.vz-variant-btn.active { border-color: var(--vz-primary); background: #eef2ff; color: var(--vz-primary); }
.vz-variant-qty { font-size: 15px; font-weight: 700; }
.vz-variant-price { font-size: 11px; color: var(--vz-text-muted); }
.vz-variant-btn.active .vz-variant-price { color: var(--vz-primary); }

/* Add to cart */
.vz-add-to-cart { display: flex; gap: 12px; margin-top: 24px; align-items: center; }
.vz-qty-selector {
    display: flex; align-items: center; border: 1px solid var(--vz-border);
    border-radius: var(--vz-radius-sm); overflow: hidden;
}
.vz-qty-btn {
    width: 40px; height: 44px; display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--vz-text-light); transition: background 0.15s;
}
.vz-qty-btn:hover { background: var(--vz-bg-alt); }
.vz-qty-input {
    width: 50px; height: 44px; text-align: center; border: none;
    border-left: 1px solid var(--vz-border); border-right: 1px solid var(--vz-border);
    outline: none; font-weight: 600; -moz-appearance: textfield;
}
.vz-qty-input::-webkit-outer-spin-button, .vz-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.vz-btn-add-cart { flex: 1; max-width: 300px; }

/* Description */
.vz-description { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--vz-border); }
.vz-desc-title { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.vz-desc-content { font-size: 14px; color: var(--vz-text-light); line-height: 1.7; }
.vz-desc-content p { margin-bottom: 12px; }
.vz-desc-content ul { padding-left: 20px; margin-bottom: 12px; }

/* --- USP Section --- */
.vz-usps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.vz-usp {
    text-align: center; padding: 32px 20px;
    background: white; border: 1px solid var(--vz-border); border-radius: var(--vz-radius);
}
.vz-usp-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 56px; height: 56px; background: #eef2ff; color: var(--vz-primary);
    border-radius: 14px; margin-bottom: 16px;
}
.vz-usp-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.vz-usp-text { font-size: 14px; color: var(--vz-text-light); }

/* --- Cart Page --- */
.vz-cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }
.vz-cart-items { display: flex; flex-direction: column; gap: 12px; }
.vz-cart-item {
    display: flex; align-items: center; gap: 16px; padding: 16px;
    background: white; border: 1px solid var(--vz-border); border-radius: var(--vz-radius);
}
.vz-cart-item-image {
    width: 72px; height: 72px; flex-shrink: 0; border-radius: var(--vz-radius-sm);
    overflow: hidden; background: var(--vz-bg-alt); display: flex; align-items: center; justify-content: center;
}
.vz-cart-item-image svg { width: 32px; height: 32px; color: var(--vz-text-muted); opacity: 0.5; }
.vz-cart-item-info { flex: 1; min-width: 0; }
.vz-cart-item-name { font-size: 14px; font-weight: 600; }
.vz-cart-item-variant { font-size: 12px; color: var(--vz-text-muted); }
.vz-cart-item-qty { display: flex; align-items: center; gap: 0; border: 1px solid var(--vz-border); border-radius: 6px; overflow: hidden; }
.vz-cart-item-qty .vz-qty-btn { width: 30px; height: 30px; font-size: 14px; }
.vz-cart-qty-display {
    width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 600; border-left: 1px solid var(--vz-border); border-right: 1px solid var(--vz-border);
}
.vz-cart-item-total { font-size: 15px; font-weight: 700; white-space: nowrap; min-width: 70px; text-align: right; }
.vz-cart-item-remove { color: var(--vz-text-muted); padding: 4px; border-radius: 4px; }
.vz-cart-item-remove:hover { color: var(--vz-danger); background: #fef2f2; }

.vz-cart-summary {
    position: sticky; top: calc(var(--vz-nav-height) + 20px);
    background: white; border: 1px solid var(--vz-border); border-radius: var(--vz-radius); padding: 24px;
}
.vz-cart-summary-title { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.vz-summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; }
.vz-summary-row.total { border-top: 1px solid var(--vz-border); margin-top: 12px; padding-top: 16px; font-size: 18px; font-weight: 700; }
.vz-btn-checkout { width: 100%; margin-top: 20px; padding: 14px; font-size: 16px; }

/* --- Checkout --- */
.vz-checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
.vz-checkout-section {
    background: white; border: 1px solid var(--vz-border); border-radius: var(--vz-radius); padding: 24px;
    margin-bottom: 20px;
}
.vz-checkout-section-title { font-size: 16px; font-weight: 700; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.vz-form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.vz-form-group label { font-size: 13px; font-weight: 600; }
.vz-form-group input, .vz-form-group select {
    padding: 10px 14px; border: 1px solid var(--vz-border); border-radius: var(--vz-radius-sm);
    outline: none; transition: border-color 0.2s;
}
.vz-form-group input:focus, .vz-form-group select:focus { border-color: var(--vz-primary); }
.vz-form-row { display: flex; gap: 12px; }
.vz-form-row > .vz-form-group { flex: 1; }

.vz-payment-methods { display: flex; gap: 10px; margin-bottom: 16px; }
.vz-payment-method {
    flex: 1; display: flex; align-items: center; gap: 10px;
    border: 2px solid var(--vz-border); border-radius: var(--vz-radius-sm);
    padding: 14px; cursor: pointer; transition: all 0.2s;
}
.vz-payment-method input[type="radio"] { display: none; }
.vz-payment-method.active { border-color: var(--vz-primary); background: #f5f3ff; }
.vz-payment-method:hover { border-color: var(--vz-primary-light); }

.vz-stripe-element { padding: 12px 14px; border: 1px solid var(--vz-border); border-radius: var(--vz-radius-sm); margin-top: 8px; }
.vz-payment-error { padding: 12px; margin-top: 12px; background: #fef2f2; border: 1px solid #fecaca; border-radius: var(--vz-radius-sm); font-size: 13px; color: #991b1b; }

.vz-checkout-sidebar { position: sticky; top: calc(var(--vz-nav-height) + 20px); }
.vz-checkout-summary {
    background: white; border: 1px solid var(--vz-border); border-radius: var(--vz-radius); padding: 24px;
}

.vz-address-result {
    display: flex; align-items: center; gap: 8px; padding: 10px 14px; margin-top: 10px;
    background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: var(--vz-radius-sm);
    font-size: 13px; color: #166534;
}

/* --- Empty State --- */
.vz-empty { text-align: center; padding: 60px 20px; }
.vz-empty p { color: var(--vz-text-light); margin-bottom: 8px; }
.vz-empty .vz-btn { margin-top: 16px; }

/* --- Toast --- */
.vz-toast {
    position: fixed; bottom: -60px; left: 50%; transform: translateX(-50%);
    background: var(--vz-text); color: white; padding: 12px 24px; border-radius: 100px;
    font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 8px;
    z-index: 200; transition: bottom 0.3s; box-shadow: var(--vz-shadow-lg);
}
.vz-toast.show { bottom: 30px; }

/* --- Success Page --- */
.vz-success { text-align: center; padding: 80px 20px; }
.vz-success-icon { margin: 0 auto 24px; }
.vz-success h1 { font-size: 28px; margin-bottom: 12px; }
.vz-success p { color: var(--vz-text-light); font-size: 16px; }

/* --- Footer --- */
.vz-footer { background: var(--vz-text); color: rgba(255,255,255,0.7); padding: 48px 0 24px; margin-top: 60px; }
.vz-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
.vz-footer-logo { font-size: 20px; font-weight: 800; color: white; display: block; margin-bottom: 12px; }
.vz-footer-heading { color: white; font-size: 14px; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
.vz-footer-text { font-size: 13px; line-height: 1.6; margin-bottom: 8px; }
.vz-footer-link { display: block; font-size: 13px; padding: 4px 0; transition: color 0.2s; }
.vz-footer-link:hover { color: white; }
.vz-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 32px; padding-top: 20px; font-size: 12px; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .vz-topbar-usps { gap: 16px; }
    .vz-topbar-item { font-size: 11px; }
    .vz-hamburger { display: flex; }
    .vz-nav-links {
        display: none; position: fixed; top: calc(var(--vz-nav-height) + var(--vz-topbar-height)); right: 0; bottom: 0;
        width: 280px; background: white; flex-direction: column; padding: 20px;
        box-shadow: var(--vz-shadow-lg); z-index: 95; overflow-y: auto; align-items: stretch; gap: 0;
    }
    .vz-nav-links.open { display: flex; }
    .vz-nav-link { padding: 12px 16px; }
    .vz-hero-inner { grid-template-columns: 1fr; }
    .vz-hero-visual { margin-top: 20px; }
    .vz-hero-img { max-width: 320px; }
    .vz-hero-float-card { display: none; }
    .vz-detail { grid-template-columns: 1fr; gap: 24px; }
    .vz-cart-layout { grid-template-columns: 1fr; }
    .vz-checkout-layout { grid-template-columns: 1fr; }
    .vz-checkout-sidebar { position: static; order: -1; }
    .vz-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .vz-topbar-usps { gap: 8px; }
    .vz-topbar-item:nth-child(3) { display: none; }
    .vz-topbar { font-size: 11px; }
    .vz-hero { padding: 48px 0 40px; }
    .vz-hero-inner { grid-template-columns: 1fr; }
    .vz-hero-visual { display: none; }
    .vz-hero-title { font-size: 28px; }
    .vz-hero-stats { gap: 20px; }
    .vz-stat-number { font-size: 22px; }
    .vz-products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .vz-product-info { padding: 10px; }
    .vz-product-name { font-size: 13px; }
    .vz-categories-grid { grid-template-columns: repeat(2, 1fr); }
    .vz-section { padding: 32px 0; }
    .vz-section-title { font-size: 22px; }
    .vz-footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .vz-detail { gap: 16px; padding: 20px 0; }
    .vz-detail-title { font-size: 20px; }
    .vz-detail-price { font-size: 24px; }
    .vz-variant-btn { min-width: 80px; padding: 8px 12px; }
    .vz-add-to-cart { flex-wrap: wrap; }
    .vz-btn-add-cart { max-width: 100%; }
    .vz-form-row { flex-direction: column; gap: 0; }
    .vz-payment-methods { flex-direction: column; }
    .vz-container { padding: 0 16px; }
    .vz-footer { padding: 32px 0 20px; margin-top: 40px; }
    input, select, textarea { font-size: 16px !important; }
    .vz-gallery-thumb { width: 60px; height: 60px; }
    .vz-gallery-thumbs { gap: 8px; }
}

@media (max-width: 380px) {
    .vz-topbar-item:nth-child(2) { display: none; }
    .vz-products-grid { gap: 8px; }
    .vz-product-info { padding: 8px; }
    .vz-product-name { font-size: 12px; }
    .vz-hero-title { font-size: 24px; }
    .vz-nav-container { padding: 0 12px; gap: 12px; }
    .vz-logo-text { font-size: 16px; }
}

/* --- Ons Verhaal / About Section (GreenFeathers style) --- */
.vz-about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
}
.vz-about-story h3,
.vz-about-values h3 {
    font-size: 22px; font-weight: 700; margin-bottom: 20px; color: var(--vz-text);
}
.vz-about-story p {
    color: var(--vz-text-light); margin-bottom: 16px; line-height: 1.8; font-size: 15px;
}
.vz-values-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.vz-value-card {
    padding: 24px; background: var(--vz-bg-alt); border: 1px solid var(--vz-border);
    border-radius: var(--vz-radius); transition: all 0.3s ease;
}
.vz-value-card:hover {
    background: #eef2ff; transform: translateY(-4px);
    border-color: var(--vz-primary-light); box-shadow: var(--vz-shadow-md);
}
.vz-value-icon {
    width: 48px; height: 48px; background: #eef2ff; color: var(--vz-primary);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
}
.vz-value-card:hover .vz-value-icon { background: white; }
.vz-value-card h4 {
    font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--vz-text);
}
.vz-value-card p {
    font-size: 13px; color: var(--vz-text-light); line-height: 1.6;
}

@media (max-width: 1024px) {
    .vz-about-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
    .vz-values-grid { grid-template-columns: 1fr; }
    .vz-about-story h3, .vz-about-values h3 { font-size: 19px; }
}

/* Spinner */
@keyframes vz-spin { to { transform: rotate(360deg); } }
.vz-spin { animation: vz-spin 1s linear infinite; }
