/* =========================================
   HET VERHUURLOKET — Premium Marketplace CSS
   ========================================= */

:root {
    --black:    #0B0B0B;
    --yellow:   #FFD600;
    --yellow-dark: #E6C200;
    --white:    #FFFFFF;
    --gray-50:  #F9F9F9;
    --gray-100: #F3F3F3;
    --gray-200: #E8E8E8;
    --gray-400: #ABABAB;
    --gray-600: #6B6B6B;
    --gray-800: #2C2C2C;
    --success:  #16A34A;
    --error:    #DC2626;
    --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --max-w: 1280px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── LAYOUT ────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ── TYPOGRAPHY ─────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--gray-600); line-height: 1.7; }

.text-center { text-align: center; }
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 12px;
}
.section-title { color: var(--black); margin-bottom: 16px; }
.section-sub   { font-size: 1.05rem; color: var(--gray-600); max-width: 560px; margin: 0 auto 48px; }

/* ── BUTTONS ────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary {
    background: var(--yellow);
    color: var(--black);
}
.btn-primary:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,214,0,0.35);
}
.btn-secondary {
    background: var(--black);
    color: var(--white);
}
.btn-secondary:hover {
    background: var(--gray-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-outline {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}
.btn-outline:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── NAVBAR ─────────────────────────────────── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo-mark {
    width: 36px;
    height: 36px;
    background: var(--yellow);
    color: var(--black);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
}
.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--black);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}
.nav-link {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: all var(--transition);
    position: relative;
}
.nav-link:hover { color: var(--black); background: var(--gray-100); }
.nav-link-muted { color: var(--gray-400); }
.nav-link-muted:hover { color: var(--gray-600); }

.nav-icon { font-size: 1.1rem; }

.nav-avatar {
    width: 36px;
    height: 36px;
    background: var(--yellow);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

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

.badge {
    position: absolute;
    top: 2px; right: 2px;
    background: var(--error);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    width: 16px; height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}
.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 16px 24px 20px;
    border-top: 1px solid var(--gray-200);
    background: var(--white);
}
.nav-mobile.open { display: flex; }
.nav-mobile-link {
    padding: 12px 0;
    font-weight: 500;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-800);
}
.nav-mobile-link:hover { color: var(--black); }

/* ── FLASH MESSAGES ─────────────────────────── */
.flash {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    font-weight: 500;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
}
.flash-success { background: #ECFDF5; color: var(--success); border-color: #A7F3D0; }
.flash-error   { background: #FEF2F2; color: var(--error);   border-color: #FECACA; }
.flash-info    { background: #EFF6FF; color: #2563EB;         border-color: #BFDBFE; }
.flash-close   { background: none; border: none; cursor: pointer; font-size: 1.2rem; color: inherit; opacity: 0.6; }
.flash-close:hover { opacity: 1; }

/* ── HERO ───────────────────────────────────── */
.hero {
    background: var(--black);
    color: var(--white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 60% 50%, rgba(255,214,0,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,214,0,0.12);
    border: 1px solid rgba(255,214,0,0.25);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--yellow);
    margin-bottom: 24px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}
.hero h1 .highlight { color: var(--yellow); }

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
}
.hero-trust-item .check {
    color: var(--yellow);
    font-weight: 700;
}

.hero-visual {
    position: relative;
}
.hero-cards-stack {
    position: relative;
    height: 340px;
}
.hero-card-float {
    position: absolute;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    padding: 20px;
    color: white;
}
.hero-card-float:nth-child(1) {
    top: 0; left: 0; right: 80px;
    animation: float1 6s ease-in-out infinite;
}
.hero-card-float:nth-child(2) {
    bottom: 0; right: 0; left: 80px;
    animation: float2 6s ease-in-out infinite 1.5s;
}
.hero-card-float:nth-child(3) {
    top: 50%; right: 0;
    transform: translateY(-50%);
    width: 160px;
    animation: float3 6s ease-in-out infinite 3s;
}
.hero-card-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}
.hero-card-title { font-size: 0.875rem; font-weight: 600; margin-bottom: 4px; }
.hero-card-price { font-size: 0.8rem; color: var(--yellow); font-weight: 700; }

@keyframes float1 {
    0%,100% { transform: translateY(0px); }
    50%      { transform: translateY(-10px); }
}
@keyframes float2 {
    0%,100% { transform: translateY(0px); }
    50%      { transform: translateY(8px); }
}
@keyframes float3 {
    0%,100% { transform: translateY(-50%) translateX(0px); }
    50%      { transform: translateY(-50%) translateX(-8px); }
}

/* ── SEARCH BAR ─────────────────────────────── */
.hero-search {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 6px 6px 6px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-xl);
    margin-bottom: 32px;
    max-width: 560px;
}
.hero-search input {
    flex: 1;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--black);
    background: transparent;
}
.hero-search input::placeholder { color: var(--gray-400); }
.hero-search select {
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--gray-600);
    background: transparent;
    padding: 0 8px;
    border-left: 1px solid var(--gray-200);
}

/* ── CATEGORIES ─────────────────────────────── */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.category-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    text-decoration: none;
    color: var(--black);
    transition: all var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.category-card:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.category-card:hover .cat-icon { transform: scale(1.1); }
.cat-icon { font-size: 2rem; transition: transform var(--transition); }
.cat-label { font-weight: 600; font-size: 0.9rem; }
.cat-count { font-size: 0.75rem; color: var(--gray-400); }
.category-card:hover .cat-count { color: rgba(255,255,255,0.5); }

/* ── ITEM CARDS ─────────────────────────────── */
.items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.item-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    text-decoration: none;
    color: var(--black);
    display: flex;
    flex-direction: column;
}
.item-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}
.item-card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}
.item-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.item-card:hover .item-card-image img { transform: scale(1.05); }
.item-card-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--yellow);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.item-card-badge.premium { background: var(--black); color: var(--yellow); }
.item-card-fav {
    position: absolute;
    top: 12px; right: 12px;
    width: 32px; height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all var(--transition);
}
.item-card-fav:hover { transform: scale(1.1); }

.item-card-body {
    padding: 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.item-card-category {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    margin-bottom: 6px;
}
.item-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.item-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-bottom: 14px;
    margin-top: auto;
}
.item-card-location::before { content: '📍 '; }

.item-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--gray-100);
}
.item-card-price { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }
.item-card-price span { font-size: 0.75rem; font-weight: 400; color: var(--gray-400); }

.stars .star { color: var(--yellow); font-size: 0.9rem; }
.stars .star.empty { color: var(--gray-200); }
.stars .star.half { color: var(--yellow); opacity: 0.5; }
.rating-count { font-size: 0.75rem; color: var(--gray-400); }

/* ── HOW IT WORKS ───────────────────────────── */
.how-section { background: var(--gray-50); }
.how-tabs {
    display: flex;
    gap: 0;
    background: var(--gray-200);
    border-radius: var(--radius-md);
    padding: 4px;
    margin-bottom: 48px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.how-tab {
    padding: 10px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    background: none;
    font-family: var(--font-body);
    color: var(--gray-600);
}
.how-tab.active {
    background: var(--black);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.how-step {
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    position: relative;
    transition: all var(--transition);
}
.how-step:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.how-step-num {
    width: 48px;
    height: 48px;
    background: var(--yellow);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 auto 20px;
}
.how-step h3 { margin-bottom: 10px; }
.how-step p  { font-size: 0.9rem; }

/* ── TRUST SECTION ──────────────────────────── */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.trust-card {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}
.trust-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.trust-icon { font-size: 2rem; margin-bottom: 16px; }
.trust-card h3 { margin-bottom: 10px; }

/* ── MONETIZATION ───────────────────────────── */
.mono-section {
    background: var(--black);
    color: var(--white);
    border-radius: var(--radius-xl);
    padding: 64px;
    margin: 0 24px;
}
.mono-section .section-label { color: var(--yellow); }
.mono-section h2 { color: var(--white); }
.mono-section p { color: rgba(255,255,255,0.6); }
.mono-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.mono-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition);
}
.mono-card:hover {
    background: rgba(255,214,0,0.08);
    border-color: rgba(255,214,0,0.2);
}
.mono-card-icon { font-size: 1.5rem; margin-bottom: 14px; }
.mono-card h4 { color: var(--white); margin-bottom: 8px; }
.mono-card p  { font-size: 0.875rem; color: rgba(255,255,255,0.5); }
.mono-badge {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

/* ── FORMS ──────────────────────────────────── */
.form-page { max-width: 480px; margin: 80px auto; padding: 0 24px; }
.form-page-wide { max-width: 720px; margin: 60px auto; padding: 0 24px; }
.form-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 44px 40px;
    box-shadow: var(--shadow-md);
}
.form-title { margin-bottom: 6px; }
.form-sub { font-size: 0.9rem; margin-bottom: 32px; }

.form-group { margin-bottom: 20px; }
.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--black);
}
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--black);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--black);
    box-shadow: 0 0 0 3px rgba(11,11,11,0.08);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M0 0l6 8 6-8z' fill='%236B6B6B'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-hint { font-size: 0.78rem; color: var(--gray-400); margin-top: 6px; }
.form-error-text { font-size: 0.78rem; color: var(--error); margin-top: 4px; }
.form-divider {
    text-align: center;
    color: var(--gray-400);
    font-size: 0.85rem;
    margin: 20px 0;
    position: relative;
}
.form-divider::before {
    content: '';
    position: absolute;
    top: 50%; left: 0; right: 0;
    height: 1px;
    background: var(--gray-200);
}
.form-divider span { background: var(--white); padding: 0 12px; position: relative; }

/* ── ITEM VIEW PAGE ─────────────────────────── */
.item-view { max-width: 1100px; margin: 48px auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.item-view-image { border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 0; }
.item-view-image img { width: 100%; height: 400px; object-fit: cover; }
.item-view-info h1 { font-size: 2rem; margin-bottom: 12px; }
.item-view-meta { display: flex; gap: 16px; align-items: center; margin-bottom: 20px; flex-wrap: wrap; }
.item-view-price { font-family: var(--font-display); font-size: 2rem; font-weight: 800; }
.item-view-price span { font-size: 1rem; font-weight: 400; color: var(--gray-400); }
.item-view-desc { color: var(--gray-600); line-height: 1.8; margin: 20px 0; }

.item-sidebar { position: sticky; top: 84px; }
.item-contact-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-md);
}
.item-contact-card h3 { margin-bottom: 6px; }
.item-contact-card p { font-size: 0.875rem; margin-bottom: 20px; }

.owner-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    margin-top: 20px;
}
.owner-avatar {
    width: 44px;
    height: 44px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}
.owner-name { font-weight: 600; font-size: 0.9rem; }
.owner-since { font-size: 0.75rem; color: var(--gray-400); }

/* ── DASHBOARD ──────────────────────────────── */
.dashboard { max-width: 1100px; margin: 48px auto; padding: 0 24px; display: grid; grid-template-columns: 240px 1fr; gap: 32px; }
.dashboard-sidebar { }
.dashboard-nav {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.dashboard-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
    transition: all var(--transition);
}
.dashboard-nav a:hover, .dashboard-nav a.active { color: var(--black); background: var(--gray-50); }
.dashboard-nav a:last-child { border-bottom: none; }

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}
.stat-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
}
.stat-value { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; }
.stat-label { font-size: 0.8rem; color: var(--gray-400); }

.table-wrap { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th { padding: 14px 20px; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-400); text-align: left; border-bottom: 1px solid var(--gray-100); background: var(--gray-50); }
.data-table td { padding: 16px 20px; font-size: 0.9rem; border-bottom: 1px solid var(--gray-100); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--gray-50); }

/* ── MESSAGES ───────────────────────────────── */
.messages-page { max-width: 800px; margin: 48px auto; padding: 0 24px; }
.message-thread {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 16px;
}
.message-thread-header {
    padding: 16px 20px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.message-thread-header h4 { font-size: 0.95rem; }
.message-thread-header time { font-size: 0.78rem; color: var(--gray-400); }
.message-body { padding: 20px; color: var(--gray-600); font-size: 0.9rem; }
.message-item-ref { font-size: 0.8rem; color: var(--gray-400); }

/* ── SEARCH PAGE ────────────────────────────── */
.search-page { max-width: var(--max-w); margin: 0 auto; padding: 40px 24px; }
.search-header { margin-bottom: 32px; }
.search-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    align-items: flex-end;
}
.search-filter-group { flex: 1; min-width: 160px; }
.results-count { font-size: 0.875rem; color: var(--gray-400); margin-bottom: 20px; }

/* ── PAGE HEADER ────────────────────────────── */
.page-header {
    background: var(--black);
    color: var(--white);
    padding: 56px 0 48px;
}
.page-header .container { }
.page-header h1 { color: var(--white); margin-bottom: 8px; }
.page-header p { color: rgba(255,255,255,0.5); }
.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* ── EMPTY STATE ────────────────────────────── */
.empty-state {
    text-align: center;
    padding: 64px 24px;
    color: var(--gray-400);
}
.empty-state-icon { font-size: 3rem; margin-bottom: 16px; }
.empty-state h3 { color: var(--gray-600); margin-bottom: 8px; }
.empty-state p  { margin-bottom: 24px; font-size: 0.9rem; }

/* ── UTILITIES ──────────────────────────────── */
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.gap-8 { gap: 8px; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.hidden { display: none !important; }

.tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.tag-category { background: var(--gray-100); color: var(--gray-600); }
.tag-premium { background: var(--yellow); color: var(--black); }

/* ── FOOTER ─────────────────────────────────── */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 64px 0 0;
    margin-top: 80px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.4); line-height: 1.7; margin-bottom: 20px; }
.footer-trust { display: flex; flex-direction: column; gap: 6px; }
.trust-dot { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-col h4 { font-size: 0.875rem; font-weight: 700; margin-bottom: 16px; color: var(--white); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.25);
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.3); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .items-grid { grid-template-columns: repeat(2, 1fr); }
    .how-steps { grid-template-columns: repeat(2, 1fr); }
    .how-steps > *:last-child { grid-column: span 2; max-width: 360px; margin: 0 auto; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-container { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .item-view { grid-template-columns: 1fr; }
    .dashboard { grid-template-columns: 1fr; }
    .mono-section { margin: 0 0; border-radius: 0; }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .nav-hamburger { display: flex; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .items-grid { grid-template-columns: 1fr; }
    .how-steps { grid-template-columns: 1fr; }
    .how-steps > *:last-child { grid-column: auto; max-width: 100%; }
    .trust-grid { grid-template-columns: 1fr; }
    .dashboard-stats { grid-template-columns: repeat(2, 1fr); }
    .mono-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero { padding: 64px 0 56px; }
    .hero-ctas { flex-direction: column; }
    .form-card { padding: 28px 24px; }
    .search-filters { flex-direction: column; }
    .section { padding: 56px 0; }
    .mono-section { padding: 40px 24px; }
}
