/* ============================================================
   MILITARIAVERKOOP.NL — MAIN STYLESHEET
   Dark Museum Aesthetic | Gold Accents | Premium Design
   ============================================================ */

/* ──────────────────────────────────────────────────────────
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ────────────────────────────────────────────────────────── */
:root {
    /* Colours */
    --c-bg: #080808;
    --c-surface: #111111;
    --c-surface-2: #1a1a1a;
    --c-surface-3: #222222;
    --c-border: #2a2a2a;
    --c-border-glow: #c9a84c44;

    --c-gold: #c9a84c;
    --c-gold-light: #e8c96a;
    --c-gold-dark: #9a7a2a;
    --c-red: #8b1a1a;
    --c-red-muted: #5a1a1a;

    --c-text: #e4e4e4;
    --c-text-muted: #888888;
    --c-text-faint: #444444;
    --c-white: #ffffff;

    /* Typography */
    --font-serif: 'Playfair Display', 'Georgia', serif;
    --font-sans: 'Inter', 'Segoe UI', sans-serif;

    /* Spacing */
    --sp-xs: 0.25rem;
    --sp-sm: 0.5rem;
    --sp-md: 1rem;
    --sp-lg: 1.5rem;
    --sp-xl: 2.5rem;
    --sp-2xl: 4rem;
    --sp-3xl: 6rem;

    /* Radius */
    --r-sm: 4px;
    --r-md: 8px;
    --r-lg: 12px;
    --r-xl: 20px;
    --r-full: 9999px;

    /* Shadows */
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.6);
    --shadow-card-hover: 0 8px 40px rgba(201, 168, 76, 0.15);
    --shadow-nav: 0 4px 30px rgba(0, 0, 0, 0.8);
    --shadow-glow: 0 0 20px rgba(201, 168, 76, 0.3);

    /* Transitions */
    --t-fast: 150ms ease;
    --t-mid: 250ms ease;
    --t-slow: 400ms ease;

    /* Layout */
    --container: 1280px;
    --header-h: 72px;
    --nav-h: 52px;
}

/* ──────────────────────────────────────────────────────────
   2. RESET & BASE
   ────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    color-scheme: dark;
}

body {
    font-family: var(--font-sans);
    background-color: var(--c-bg);
    color: var(--c-text);
    line-height: 1.65;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--c-gold);
    text-decoration: none;
    transition: color var(--t-fast);
}

a:hover {
    color: var(--c-gold-light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    color: var(--c-white);
    line-height: 1.2;
    font-weight: 700;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ──────────────────────────────────────────────────────────
   3. LAYOUT UTILITIES
   ────────────────────────────────────────────────────────── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--sp-lg);
}

.section-pad {
    padding: var(--sp-3xl) 0;
}

.section-dark {
    background-color: var(--c-surface);
}

.section-header {
    text-align: center;
    margin-bottom: var(--sp-2xl);
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--sp-sm);
}

.section-subtitle {
    color: var(--c-text-muted);
    font-size: 1rem;
}

.view-all-btn {
    display: inline-block;
    margin-top: var(--sp-md);
    color: var(--c-gold);
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 1px solid var(--c-gold-dark);
    padding-bottom: 2px;
    transition: all var(--t-fast);
}

.view-all-btn:hover {
    color: var(--c-gold-light);
    border-color: var(--c-gold-light);
}

/* ──────────────────────────────────────────────────────────
   4. BUTTONS
   ────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border-radius: var(--r-md);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-sans);
    transition: all var(--t-mid);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-dark) 100%);
    color: var(--c-bg);
    border-color: var(--c-gold);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--c-gold-light) 0%, var(--c-gold) 100%);
    color: var(--c-bg);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: var(--c-gold);
    border-color: var(--c-gold);
}

.btn-outline:hover {
    background: var(--c-gold);
    color: var(--c-bg);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 0.85rem 2rem;
    font-size: 1rem;
}

.btn-small {
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
}

.section-cta {
    display: flex;
    gap: var(--sp-md);
    justify-content: center;
    margin-top: var(--sp-2xl);
    flex-wrap: wrap;
}

/* ──────────────────────────────────────────────────────────
   5. TOP BAR
   ────────────────────────────────────────────────────────── */
.top-bar {
    background-color: var(--c-surface);
    border-bottom: 1px solid var(--c-border);
    padding: 6px 0;
    font-size: 0.78rem;
    color: var(--c-text-muted);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.top-bar-right {
    display: flex;
    gap: var(--sp-lg);
}

.top-bar-link {
    color: var(--c-text-muted);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: color var(--t-fast);
}

.top-bar-link:hover {
    color: var(--c-gold);
}

.cart-count {
    background: var(--c-gold);
    color: var(--c-bg);
    border-radius: var(--r-full);
    padding: 0 5px;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.4;
}

/* ──────────────────────────────────────────────────────────
   6. SITE HEADER
   ────────────────────────────────────────────────────────── */
.site-header {
    background-color: var(--c-surface);
    border-bottom: 1px solid var(--c-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--t-mid);
}

.site-header.scrolled {
    box-shadow: var(--shadow-nav);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: var(--sp-xl);
    padding-top: 12px;
    padding-bottom: 12px;
}

/* Logo */
.site-logo-text {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--c-white);
    flex-shrink: 0;
}

.logo-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.5));
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}

.logo-tld {
    color: var(--c-gold);
}

/* Header Search */
.header-search {
    flex: 1;
    max-width: 480px;
}

.search-input-wrap {
    display: flex;
    align-items: center;
    background: var(--c-surface-3);
    border: 1px solid var(--c-border);
    border-radius: var(--r-full);
    overflow: hidden;
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.search-input-wrap:focus-within {
    border-color: var(--c-gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.search-input-wrap .search-field,
.search-input-wrap input[type="search"] {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    padding: 0.5rem 1rem;
    color: var(--c-text);
    font-size: 0.88rem;
    font-family: var(--font-sans);
}

.search-input-wrap .search-field::placeholder {
    color: var(--c-text-muted);
}

.search-submit {
    background: var(--c-gold);
    border: none;
    padding: 0 14px;
    height: 38px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background var(--t-fast);
}

.search-submit svg {
    width: 16px;
    height: 16px;
    stroke: var(--c-bg);
}

.search-submit:hover {
    background: var(--c-gold-light);
}

/* Mobile toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    flex-shrink: 0;
    margin-left: auto;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c-text);
    border-radius: 2px;
    transition: all var(--t-mid);
}

/* ──────────────────────────────────────────────────────────
   7. MAIN NAVIGATION
   ────────────────────────────────────────────────────────── */
.site-nav {
    background-color: var(--c-surface-2);
    border-top: 1px solid var(--c-border);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.75rem 1rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--c-text);
    transition: color var(--t-fast), background var(--t-fast);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--c-gold);
    background: rgba(255, 255, 255, 0.04);
}

.cat-icon {
    font-size: 1rem;
}

.dropdown-arrow {
    width: 10px;
    height: 6px;
    stroke: currentColor;
    margin-left: 2px;
    transition: transform var(--t-mid);
}

.has-mega-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Mega Dropdown */
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 340px;
    background: var(--c-surface-2);
    border: 1px solid var(--c-border);
    border-top: 2px solid var(--c-gold);
    border-radius: 0 0 var(--r-lg) var(--r-lg);
    box-shadow: var(--shadow-nav);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--t-mid);
    z-index: 999;
}

.has-mega-dropdown:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-dropdown-inner {
    padding: var(--sp-lg);
}

.mega-cat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--sp-md);
    padding-bottom: var(--sp-sm);
    border-bottom: 1px solid var(--c-border);
}

.mega-cat-header h3 {
    font-size: 0.9rem;
    color: var(--c-gold);
    font-family: var(--font-serif);
}

.view-all-link {
    font-size: 0.78rem;
    color: var(--c-text-muted);
}

.view-all-link:hover {
    color: var(--c-gold);
}

.mega-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.2rem;
}

.mega-links a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--c-text-muted);
    font-size: 0.82rem;
    padding: 0.3rem 0.4rem;
    border-radius: var(--r-sm);
    transition: all var(--t-fast);
}

.mega-links a:hover {
    color: var(--c-gold);
    background: rgba(201, 168, 76, 0.08);
}

.sub-arrow {
    color: var(--c-gold-dark);
    font-size: 0.75rem;
}

/* ──────────────────────────────────────────────────────────
   8. BREADCRUMB BAR
   ────────────────────────────────────────────────────────── */
.breadcrumb-bar {
    background: var(--c-surface-2);
    border-bottom: 1px solid var(--c-border);
    padding: 0.6rem 0;
    font-size: 0.8rem;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    color: var(--c-text-muted);
}

.breadcrumbs a {
    color: var(--c-text-muted);
}

.breadcrumbs a:hover {
    color: var(--c-gold);
}

.sep {
    color: var(--c-text-faint);
}

/* WooCommerce breadcrumb */
.woocommerce-breadcrumb {
    font-size: 0.8rem;
    color: var(--c-text-muted);
    padding: 0.6rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.woocommerce-breadcrumb a {
    color: var(--c-text-muted);
}

.woocommerce-breadcrumb a:hover {
    color: var(--c-gold);
}

/* ──────────────────────────────────────────────────────────
   9. MOBILE NAVIGATION
   ────────────────────────────────────────────────────────── */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1998;
}

.mobile-overlay.active {
    display: block;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: var(--c-surface);
    border-right: 1px solid var(--c-border);
    z-index: 1999;
    overflow-y: auto;
    transition: left var(--t-slow);
    padding: var(--sp-lg);
}

.mobile-menu.open {
    left: 0;
}

.mobile-menu-close {
    font-size: 1.2rem;
    color: var(--c-text-muted);
    float: right;
    margin-bottom: var(--sp-lg);
    transition: color var(--t-fast);
}

.mobile-menu-close:hover {
    color: var(--c-gold);
}

.mobile-logo {
    margin-bottom: var(--sp-xl);
    clear: both;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.mobile-nav-list>li>a {
    display: block;
    padding: 0.75rem;
    color: var(--c-text);
    border-radius: var(--r-sm);
    font-weight: 500;
    transition: all var(--t-fast);
}

.mobile-nav-list>li>a:hover {
    color: var(--c-gold);
    background: rgba(201, 168, 76, 0.08);
}

.mobile-cat-toggle {
    width: 100%;
    text-align: left;
    padding: 0.75rem;
    color: var(--c-text);
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    border-radius: var(--r-sm);
    transition: all var(--t-fast);
}

.mobile-cat-toggle:hover {
    color: var(--c-gold);
    background: rgba(201, 168, 76, 0.08);
}

.mobile-arrow {
    transition: transform var(--t-mid);
}

.mobile-cat-item.open .mobile-arrow {
    transform: rotate(90deg);
}

.mobile-sub-nav {
    display: none;
    padding-left: var(--sp-lg);
}

.mobile-cat-item.open .mobile-sub-nav {
    display: block;
}

.mobile-sub-nav a {
    display: block;
    padding: 0.4rem 0.6rem;
    color: var(--c-text-muted);
    font-size: 0.85rem;
    border-radius: var(--r-sm);
    transition: all var(--t-fast);
}

.mobile-sub-nav a:hover {
    color: var(--c-gold);
}

/* ──────────────────────────────────────────────────────────
   10. HERO SECTION
   ────────────────────────────────────────────────────────── */
.hero-section {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
        linear-gradient(160deg, #0a0502 0%, #0f0a04 40%, #080808 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 26, 26, 0.12) 0%, rgba(0, 0, 0, 0) 60%, rgba(201, 168, 76, 0.06) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: var(--sp-3xl) var(--sp-lg);
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--c-gold);
    padding: 0.35rem 0.9rem;
    border-radius: var(--r-full);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: var(--sp-lg);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--sp-lg);
    line-height: 1.1;
}

.hero-accent {
    background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-light) 50%, var(--c-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.hero-subtitle {
    color: var(--c-text-muted);
    font-size: 1.05rem;
    margin-bottom: var(--sp-xl);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: var(--sp-md);
    flex-wrap: wrap;
    margin-bottom: var(--sp-xl);
}

.hero-stats {
    display: flex;
    gap: var(--sp-xl);
    padding-top: var(--sp-xl);
    border-top: 1px solid var(--c-border);
}

.hero-stat {
    text-align: left;
}

.stat-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--c-gold);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--c-text-muted);
    margin-top: 0.25rem;
}

/* ──────────────────────────────────────────────────────────
   11. WELCOME NOTICE
   ────────────────────────────────────────────────────────── */
.welcome-notice {
    padding: var(--sp-lg) 0;
}

.notice-card {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-md);
    background: rgba(201, 168, 76, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-left: 3px solid var(--c-gold);
    border-radius: var(--r-md);
    padding: var(--sp-lg);
    font-size: 0.88rem;
    color: var(--c-text-muted);
    line-height: 1.6;
}

.notice-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ──────────────────────────────────────────────────────────
   12. CATEGORY CARDS
   ────────────────────────────────────────────────────────── */
.category-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-lg);
}

.category-card {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-lg);
    background: var(--c-surface-2);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: var(--sp-xl);
    text-decoration: none;
    color: var(--c-text);
    transition: all var(--t-mid);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--t-mid);
}

.category-card:hover {
    border-color: var(--c-gold-dark);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
    color: var(--c-text);
}

.category-card:hover::before {
    opacity: 1;
}

.cat-card-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(201, 168, 76, 0.3));
    animation: float 3s ease-in-out infinite;
}

.category-card:nth-child(2) .cat-card-icon {
    animation-delay: 1s;
}

.category-card:nth-child(3) .cat-card-icon {
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.cat-card-body {
    flex: 1;
}

.cat-card-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--c-white);
    margin-bottom: 0.4rem;
}

.cat-card-count {
    font-size: 0.78rem;
    color: var(--c-gold);
    margin-bottom: 0.75rem;
}

.cat-card-subs {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.cat-card-subs li {
    font-size: 0.78rem;
    color: var(--c-text-muted);
}

.cat-card-subs li::before {
    content: '› ';
    color: var(--c-gold-dark);
}

.more-subs {
    color: var(--c-text-faint) !important;
    font-style: italic;
}

.cat-card-arrow {
    font-size: 1.2rem;
    color: var(--c-gold-dark);
    align-self: center;
    transition: transform var(--t-fast);
}

.category-card:hover .cat-card-arrow {
    transform: translateX(4px);
    color: var(--c-gold);
}

/* ──────────────────────────────────────────────────────────
   13. PRODUCT GRID
   ────────────────────────────────────────────────────────── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-lg);
}

.products-grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

.product-card {
    background: var(--c-surface-2);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: all var(--t-mid);
}

.product-card:hover {
    border-color: var(--c-border-glow);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-card-img {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--c-surface-3);
    overflow: hidden;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}

.product-card:hover .product-card-img img {
    transform: scale(1.05);
}

.product-no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--c-text-faint);
}

.product-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--t-mid);
}

.product-card-overlay span {
    background: var(--c-gold);
    color: var(--c-bg);
    padding: 0.4rem 1rem;
    border-radius: var(--r-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.product-card:hover .product-card-overlay {
    opacity: 1;
}

.product-card-body {
    padding: var(--sp-md);
}

.product-card-title {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-white);
    margin-bottom: 0.4rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.product-card-price {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--c-gold);
    margin-bottom: 0.3rem;
}

.price-label {
    color: var(--c-text-muted);
    font-weight: 400;
    margin-right: 0.3rem;
}

.bid-label {
    font-size: 0.78rem;
    background: rgba(201, 168, 76, 0.1);
    color: var(--c-gold);
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 0.15rem 0.5rem;
    border-radius: var(--r-full);
}

.product-card-cat {
    font-size: 0.72rem;
    color: var(--c-text-muted);
    margin-top: 0.3rem;
}

.product-card-cat span::before {
    content: '📂 ';
}

.no-products-notice,
.no-woo-notice {
    background: var(--c-surface-3);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: var(--sp-2xl);
    text-align: center;
    color: var(--c-text-muted);
}

/* ──────────────────────────────────────────────────────────
   14. HOW IT WORKS
   ────────────────────────────────────────────────────────── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-lg);
    counter-reset: steps;
}

.step-card {
    background: var(--c-surface-2);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: var(--sp-xl);
    text-align: center;
    position: relative;
    transition: all var(--t-mid);
}

.step-card:hover {
    border-color: var(--c-gold-dark);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.step-num {
    position: absolute;
    top: var(--sp-md);
    right: var(--sp-md);
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 900;
    color: rgba(201, 168, 76, 0.1);
    line-height: 1;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: var(--sp-md);
}

.step-card h3 {
    font-size: 1rem;
    margin-bottom: var(--sp-sm);
    color: var(--c-gold);
}

.step-card p {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    line-height: 1.6;
}

/* ──────────────────────────────────────────────────────────
   15. SINGLE PRODUCT PAGE (WooCommerce & Custom)
   ────────────────────────────────────────────────────────── */
.product-detail-section {
    padding: var(--sp-2xl) 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--sp-2xl);
    align-items: start;
}

/* Gallery */
.product-gallery {
    position: sticky;
    top: calc(var(--header-h) + var(--nav-h) + 16px);
}

.product-gallery-main {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--c-surface-2);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    overflow: hidden;
    cursor: zoom-in;
    margin-bottom: var(--sp-md);
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--t-slow);
}

.product-gallery-main:hover img {
    transform: scale(1.04);
}

.product-gallery-thumbs {
    display: flex;
    gap: var(--sp-sm);
    flex-wrap: wrap;
}

.product-gallery-thumb {
    width: 70px;
    height: 54px;
    border: 2px solid var(--c-border);
    border-radius: var(--r-sm);
    overflow: hidden;
    cursor: pointer;
    transition: border-color var(--t-fast), transform var(--t-fast);
}

.product-gallery-thumb:hover,
.product-gallery-thumb.active {
    border-color: var(--c-gold);
    transform: scale(1.05);
}

.product-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.product-info h1 {
    font-size: 1.6rem;
    margin-bottom: var(--sp-md);
}

.product-meta-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: var(--sp-lg);
}

.meta-tag {
    font-size: 0.74rem;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    color: var(--c-gold);
    padding: 0.2rem 0.6rem;
    border-radius: var(--r-full);
}

.product-price-box {
    background: var(--c-surface-2);
    border: 1px solid var(--c-gold-dark);
    border-radius: var(--r-lg);
    padding: var(--sp-lg);
    margin-bottom: var(--sp-lg);
}

.price-main {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--c-gold);
    margin-bottom: 0.3rem;
}

.price-type {
    font-size: 0.82rem;
    color: var(--c-text-muted);
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: var(--sp-sm);
    margin-bottom: var(--sp-lg);
}

.info-grid {
    background: var(--c-surface-2);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-bottom: var(--sp-lg);
}

.info-grid-row {
    display: flex;
    border-bottom: 1px solid var(--c-border);
}

.info-grid-row:last-child {
    border-bottom: none;
}

.info-label {
    width: 130px;
    flex-shrink: 0;
    padding: var(--sp-sm) var(--sp-md);
    background: rgba(255, 255, 255, 0.02);
    font-size: 0.8rem;
    color: var(--c-text-muted);
    font-weight: 600;
}

.info-value {
    padding: var(--sp-sm) var(--sp-md);
    font-size: 0.85rem;
    color: var(--c-text);
    flex: 1;
}

.product-description {
    margin-top: var(--sp-xl);
}

.product-description h3 {
    font-size: 1.1rem;
    margin-bottom: var(--sp-md);
    color: var(--c-gold);
}

.product-description p {
    color: var(--c-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.7rem;
}

/* Seller Card */
.seller-card {
    background: var(--c-surface-2);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: var(--sp-lg);
    margin-top: var(--sp-xl);
}

.seller-card h3 {
    font-size: 0.95rem;
    margin-bottom: var(--sp-md);
    color: var(--c-gold);
}

.seller-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--c-text-muted);
}

.seller-info strong {
    color: var(--c-white);
}

/* ──────────────────────────────────────────────────────────
   16. INFO PAGES (Contact, Voorwaarden, etc.)
   ────────────────────────────────────────────────────────── */
.page-content-wrap {
    padding: var(--sp-2xl) var(--sp-lg);
    max-width: 900px;
    margin: 0 auto;
}

.page-header-section {
    margin-bottom: var(--sp-2xl);
    padding-bottom: var(--sp-lg);
    border-bottom: 1px solid var(--c-border);
}

.page-header-section h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.page-header-section p {
    color: var(--c-text-muted);
}

.info-card {
    background: var(--c-surface-2);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: var(--sp-xl);
    margin-bottom: var(--sp-lg);
}

.content-prose h2 {
    font-size: 1.3rem;
    margin: var(--sp-lg) 0 var(--sp-sm);
    color: var(--c-gold);
}

.content-prose h3 {
    font-size: 1.05rem;
    margin: var(--sp-lg) 0 var(--sp-sm);
    color: var(--c-white);
}

.content-prose p {
    color: var(--c-text-muted);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--sp-xl);
    align-items: start;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: var(--sp-md);
    font-size: 0.88rem;
}

.contact-list li {
    color: var(--c-text-muted);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--sp-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--c-text-muted);
}

.form-control {
    background: var(--c-surface-3);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    padding: 0.6rem 0.9rem;
    color: var(--c-text);
    font-size: 0.88rem;
    font-family: var(--font-sans);
    outline: none;
    transition: border-color var(--t-fast);
}

.form-control:focus {
    border-color: var(--c-gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* ──────────────────────────────────────────────────────────
   17. 404 PAGE
   ────────────────────────────────────────────────────────── */
.error-404-section {
    padding: var(--sp-3xl) 0;
    text-align: center;
}

.error-404-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-code {
    font-family: var(--font-serif);
    font-size: clamp(6rem, 15vw, 10rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--c-gold-dark) 0%, var(--c-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.6;
}

.error-icon {
    font-size: 3rem;
    margin: var(--sp-md) 0;
}

.error-404-content h1 {
    font-size: 1.8rem;
    margin-bottom: var(--sp-md);
}

.error-404-content p {
    color: var(--c-text-muted);
    margin-bottom: var(--sp-xl);
}

.error-cats {
    margin-top: var(--sp-2xl);
}

.error-cats h3 {
    color: var(--c-text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--sp-md);
    font-family: var(--font-sans);
}

.error-cats-grid {
    display: flex;
    gap: var(--sp-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.error-cat-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--c-surface-2);
    border: 1px solid var(--c-border);
    border-radius: var(--r-full);
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
    color: var(--c-text);
    transition: all var(--t-fast);
}

.error-cat-link:hover {
    border-color: var(--c-gold);
    color: var(--c-gold);
}

/* ──────────────────────────────────────────────────────────
   18. FOOTER
   ────────────────────────────────────────────────────────── */
.site-footer {
    background: var(--c-surface);
    border-top: 1px solid var(--c-border);
}

.footer-top {
    padding: var(--sp-3xl) 0;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.4fr 1.6fr 1fr;
    gap: var(--sp-2xl);
}

.footer-col h4 {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: var(--c-gold);
    margin-bottom: var(--sp-md);
    padding-bottom: var(--sp-sm);
    border-bottom: 1px solid var(--c-border);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: var(--sp-lg);
}

.logo-icon-footer {
    font-size: 1.5rem;
}

.footer-logo-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-white);
}

.footer-logo-text span {
    color: var(--c-gold);
}

.footer-about p {
    font-size: 0.82rem;
    color: var(--c-text-muted);
    line-height: 1.6;
    margin-bottom: var(--sp-md);
}

.footer-flags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: var(--c-text-muted);
}

.footer-cat-group {
    margin-bottom: var(--sp-lg);
}

.footer-cat-group strong {
    font-size: 0.78rem;
    color: var(--c-text-muted);
    display: block;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.footer-cat-group ul {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.footer-cat-group a {
    font-size: 0.8rem;
    color: var(--c-text-faint);
    transition: color var(--t-fast);
}

.footer-cat-group a:hover {
    color: var(--c-gold);
}

.footer-info ul {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.footer-info a {
    font-size: 0.82rem;
    color: var(--c-text-muted);
    transition: color var(--t-fast);
}

.footer-info a:hover {
    color: var(--c-gold);
}

.payment-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.4rem;
}

.pay-badge {
    background: var(--c-surface-3);
    border: 1px solid var(--c-border);
    color: var(--c-text-muted);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: var(--r-sm);
}

.footer-bottom {
    border-top: 1px solid var(--c-border);
    padding: var(--sp-lg) 0;
    background: var(--c-bg);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.copyright {
    font-size: 0.78rem;
    color: var(--c-text-muted);
}

.copyright a {
    color: var(--c-text-muted);
}

.copyright a:hover {
    color: var(--c-gold);
}

.footer-tagline {
    font-size: 0.72rem;
    color: var(--c-text-faint);
    font-style: italic;
}

/* ──────────────────────────────────────────────────────────
   19. LIGHTBOX
   ────────────────────────────────────────────────────────── */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--r-md);
}

.lightbox-close {
    position: fixed;
    top: var(--sp-xl);
    right: var(--sp-xl);
    font-size: 2rem;
    color: var(--c-text-muted);
    cursor: pointer;
    background: var(--c-surface);
    border-radius: var(--r-full);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--t-fast);
}

.lightbox-close:hover {
    color: var(--c-gold);
}

/* ──────────────────────────────────────────────────────────
   20. PAGINATION
   ────────────────────────────────────────────────────────── */
.pagination {
    text-align: center;
    padding: var(--sp-xl) 0;
}

.pagination .nav-links {
    display: inline-flex;
    gap: 0.4rem;
    align-items: center;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 0.5rem;
    background: var(--c-surface-2);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    font-size: 0.85rem;
    color: var(--c-text-muted);
    transition: all var(--t-fast);
}

.pagination a:hover {
    border-color: var(--c-gold);
    color: var(--c-gold);
}

.pagination .current {
    background: var(--c-gold);
    border-color: var(--c-gold);
    color: var(--c-bg);
    font-weight: 700;
}

/* ──────────────────────────────────────────────────────────
   21. WIDGET SIDEBAR
   ────────────────────────────────────────────────────────── */
.widget {
    background: var(--c-surface-2);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: var(--sp-lg);
    margin-bottom: var(--sp-lg);
}

.widget-title {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: var(--c-gold);
    margin-bottom: var(--sp-md);
    padding-bottom: var(--sp-sm);
    border-bottom: 1px solid var(--c-border);
}

.widget ul li {
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.widget ul li a {
    font-size: 0.84rem;
    color: var(--c-text-muted);
}

.widget ul li a:hover {
    color: var(--c-gold);
}

/* ──────────────────────────────────────────────────────────
   22. POST GRID (Blog/Archive)
   ────────────────────────────────────────────────────────── */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-lg);
}

.post-card {
    background: var(--c-surface-2);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: all var(--t-mid);
}

.post-card:hover {
    border-color: var(--c-gold-dark);
    transform: translateY(-2px);
}

.post-card-img {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.post-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}

.post-card:hover .post-card-img img {
    transform: scale(1.04);
}

.post-card-body {
    padding: var(--sp-lg);
}

.post-card-title a {
    font-size: 1rem;
    color: var(--c-white);
    font-weight: 600;
}

.post-card-title a:hover {
    color: var(--c-gold);
}

.post-card-meta {
    font-size: 0.75rem;
    color: var(--c-text-muted);
    margin: 0.4rem 0 0.7rem;
}

.post-card-excerpt {
    font-size: 0.84rem;
    color: var(--c-text-muted);
    line-height: 1.6;
    margin-bottom: var(--sp-md);
}

/* ──────────────────────────────────────────────────────────
   23. SCROLLBAR & SELECTION
   ────────────────────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--c-surface);
}

::-webkit-scrollbar-thumb {
    background: var(--c-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--c-gold-dark);
}

::selection {
    background: rgba(201, 168, 76, 0.35);
    color: var(--c-white);
}

/* ──────────────────────────────────────────────────────────
   24. RESPONSIVE
   ────────────────────────────────────────────────────────── */

/* Large Tablet */
@media (max-width: 1100px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-grid-5 {
        grid-template-columns: repeat(4, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Tablet */
@media (max-width: 900px) {
    .category-cards {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top-grid {
        grid-template-columns: 1fr;
    }

    .site-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-search {
        display: none;
    }

    .mega-links {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .products-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .posts-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-stats {
        gap: var(--sp-lg);
    }

    .stat-num {
        font-size: 1.4rem;
    }

    .section-cta {
        flex-direction: column;
        align-items: center;
    }

    .top-bar-right {
        display: none;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}