/* ============================================================
   CODEXAEL FINDS — styles.css
   Sections:
     1. Tokens & Reset
     2. Cursor
     3. Atmosphere (grid, noise, blobs)
     4. Layout shell
     5. Top Bar / Nav
     6. Affiliate Notice
     7. Hero Strip
     8. Stats Bar
     9. Controls Bar
    10. Search Input
    11. Filter Dropdowns
    12. Sort Controls
    13. Active Filter Chips
    14. Products Section & Grid
    15. Empty State
    16. Product Card
    17. Lazy-load Spinner
    18. Marquee
    19. Footer
    20. Responsive
   ============================================================ */


/* ── 1. Tokens & Reset ───────────────────────────────────── */

:root {
    --bg: #0a0a0a;
    --surface: #111111;
    --surface2: #161616;
    --border: rgba(255, 255, 255, 0.07);
    --accent: #e8ff00;
    --accent2: #00ffe0;
    --text: #f0ede6;
    --muted: rgba(240, 237, 230, 0.4);

    --font-hero: 'Bebas Neue', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'Space Mono', monospace;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    min-height: 100vh;
    overflow-x: hidden;
    cursor: none;
}


/* ── 2. Cursor ───────────────────────────────────────────── */

.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
}

.cursor-ring {
    position: fixed;
    width: 38px;
    height: 38px;
    border: 1.5px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, opacity 0.2s;
    opacity: 0.5;
}


/* ── 3. Atmosphere ───────────────────────────────────────── */

.grid-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
}

.noise {
    position: fixed;
    inset: 0;
    opacity: 0.025;
    pointer-events: none;
    z-index: 1;
    background-size: 180px;
}

.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.13;
    animation: drift 14s ease-in-out infinite alternate;
}

.blob-1 {
    width: 520px;
    height: 520px;
    background: var(--accent);
    top: -150px;
    left: -180px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--accent2);
    bottom: -120px;
    right: -120px;
    animation-delay: -7s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(40px, 30px) scale(1.08);
    }
}


/* ── 4. Layout Shell ─────────────────────────────────────── */

.page-wrap {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


/* ── 5. Top Bar / Nav ────────────────────────────────────── */

.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.6rem 3rem;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(18px);
    z-index: 100;
    animation: slideDown 0.8s ease both;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.logo-mark {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text);
    text-transform: uppercase;
    text-decoration: none;
}

.logo-mark span {
    color: var(--accent);
}

.logo-sub {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--accent2);
    text-transform: uppercase;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.status-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--muted);
    border: 1px solid var(--border);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(232, 255, 0, 0.5);
    }

    50% {
        opacity: 0.6;
        box-shadow: 0 0 0 5px rgba(232, 255, 0, 0);
    }
}

.submit-btn {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    background: transparent;
    border: 1px solid var(--border);
    padding: 0.35rem 0.9rem;
    border-radius: 3px;
    cursor: none;
    transition: all 0.2s;
    text-decoration: none;
}

.submit-btn:hover {
    color: #0a0a0a;
    background: var(--accent);
    border-color: var(--accent);
}


/* ── 6. Affiliate Notice ─────────────────────────────────── */

.affiliate-notice {
    padding: 0.55rem 3rem;
    background: rgba(232, 255, 0, 0.04);
    border-bottom: 1px solid rgba(232, 255, 0, 0.1);
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    color: rgba(232, 255, 0, 0.5);
    text-transform: uppercase;
    text-align: center;
}


/* ── 7. Hero Strip ───────────────────────────────────────── */

.hero-strip {
    padding: 3.5rem 3rem 2.5rem;
    border-bottom: 1px solid var(--border);
    animation: fadeUp 0.7s 0.3s ease both;
}

.eyebrow {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-headline {
    font-family: var(--font-hero);
    font-size: clamp(3.5rem, 9vw, 8rem);
    line-height: 0.9;
    letter-spacing: -0.01em;
    color: var(--text);
}

.hero-headline .accent-line {
    color: var(--accent);
}

.hero-sub {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--muted);
    margin-top: 1.2rem;
    max-width: 480px;
    line-height: 1.7;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ── 8. Stats Bar ────────────────────────────────────────── */

.stats-bar {
    display: flex;
    border-bottom: 1px solid var(--border);
    animation: fadeUp 0.7s 0.5s ease both;
    overflow-x: auto;
}

.stat-cell {
    padding: 1.1rem 2.2rem;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 110px;
}

.stat-cell:last-child {
    border-right: none;
}

.stat-num {
    font-family: var(--font-hero);
    font-size: 2rem;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    color: var(--muted);
    text-transform: uppercase;
}


/* ── 9. Controls Bar ─────────────────────────────────────── */

.controls-bar {
    padding: 1rem 3rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    animation: fadeUp 0.7s 0.65s ease both;
    position: sticky;
    top: 87px;
    background: rgba(10, 10, 10, 0.93);
    backdrop-filter: blur(16px);
    z-index: 90;
}


/* ── 10. Search Input ────────────────────────────────────── */

.search-wrap {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid var(--border);
    padding: 0.4rem 0.9rem;
    border-radius: 3px;
    background: var(--surface);
    flex: 1;
    min-width: 160px;
    max-width: 280px;
    transition: border-color 0.2s;
}

.search-wrap:focus-within {
    border-color: rgba(232, 255, 0, 0.5);
}

.search-icon {
    color: var(--muted);
    font-size: 0.9rem;
}

#searchInput {
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    color: var(--text);
    width: 100%;
    cursor: none;
}

#searchInput::placeholder {
    color: var(--muted);
}

.clear-search-btn {
    background: none;
    border: none;
    color: var(--muted);
    cursor: none;
    font-size: 0.75rem;
    padding: 0;
    display: none;
    transition: color 0.15s;
}

.clear-search-btn:hover {
    color: var(--text);
}


/* ── 11. Filter Dropdowns ────────────────────────────────── */

.dropdowns-group {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.filter-dropdown {
    position: relative;
}

/* Trigger button */
.fdd-btn {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--font-mono);
    font-size: 0.63rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 0.4rem 0.9rem;
    border-radius: 3px;
    cursor: none;
    transition: all 0.2s;
    white-space: nowrap;
    user-select: none;
}

.fdd-btn.has-active {
    color: var(--accent);
    border-color: rgba(232, 255, 0, 0.4);
    background: rgba(232, 255, 0, 0.06);
}

.fdd-chevron {
    font-size: 0.5rem;
    transition: transform 0.2s;
    display: inline-block;
}

.fdd-btn.open .fdd-chevron {
    transform: rotate(180deg);
}

/* Panel */
.fdd-panel {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: #141414;
    border: 1px solid var(--border);
    border-radius: 3px;
    z-index: 300;
    display: none;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
    min-width: 200px;
    overflow: hidden;
}

.fdd-panel.open {
    display: flex;
}

/* Inline search inside panel */
.fdd-search-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.6rem;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
}

.fdd-search-icon {
    color: var(--muted);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.fdd-search {
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    color: var(--text);
    width: 100%;
    cursor: none;
}

.fdd-search::placeholder {
    color: var(--muted);
}

/* Scrollable options list */
.fdd-options-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: 220px;
    overflow-y: auto;
    padding: 0.3rem 0;
}

/* Scrollbar styling */
.fdd-options-list::-webkit-scrollbar {
    width: 4px;
}

.fdd-options-list::-webkit-scrollbar-track {
    background: transparent;
}

.fdd-options-list::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 2px;
}

/* No-results hint */
.fdd-no-results {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    color: var(--muted);
    text-transform: uppercase;
    text-align: center;
    padding: 0.8rem 0.6rem;
    opacity: 0.5;
    display: none;
}

.fdd-no-results.visible {
    display: block;
}

/* Option row */
.fdd-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 0.35rem 0.6rem;
    cursor: none;
    transition: color 0.15s, background 0.15s;
    white-space: nowrap;
}

.fdd-option:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}

.fdd-option.selected {
    color: var(--accent);
}

.fdd-option.hidden {
    display: none;
}

/* Checkbox tick */
.opt-check {
    width: 11px;
    height: 11px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.45rem;
    transition: background 0.15s, border-color 0.15s;
}

.fdd-option.selected .opt-check {
    background: var(--accent);
    border-color: var(--accent);
    color: #0a0a0a;
}


/* ── 12. Sort Controls ───────────────────────────────────── */

.sort-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    flex-wrap: wrap;
}

.sort-label {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
}

.sort-btn {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    background: transparent;
    border: 1px solid var(--border);
    padding: 0.32rem 0.75rem;
    border-radius: 3px;
    cursor: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.sort-btn.active {
    color: #0a0a0a;
    background: var(--accent);
    border-color: var(--accent);
}

.sort-btn:hover:not(.active) {
    border-color: rgba(255, 255, 255, 0.18);
    color: var(--text);
}


/* ── 13. Active Filter Chips ─────────────────────────────── */

.chips-bar {
    padding: 0.65rem 3rem;
    display: none;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--border);
    background: rgba(232, 255, 0, 0.025);
}

.chips-bar.visible {
    display: flex;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-mono);
    font-size: 0.57rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0a0a0a;
    background: var(--accent);
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    cursor: none;
}

.chip-x {
    font-size: 0.6rem;
    opacity: 0.65;
    transition: opacity 0.15s;
}

.chip:hover .chip-x {
    opacity: 1;
}

.chips-clear {
    font-family: var(--font-mono);
    font-size: 0.57rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    background: transparent;
    border: 1px solid var(--border);
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    cursor: none;
    transition: all 0.2s;
}

.chips-clear:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.2);
}


/* ── 14. Products Section & Grid ─────────────────────────── */

.products-section {
    padding: 2.5rem 3rem;
    flex: 1;
}

.section-head {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.section-head-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    color: var(--muted);
    text-transform: uppercase;
    white-space: nowrap;
}

.section-head-line {
    flex: 1;
    height: 1px;
    background: var(--border);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    background: transparent;
    border: none;
}


/* ── 15. Empty State ─────────────────────────────────────── */

.empty-state {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    text-align: center;
    gap: 1rem;
    grid-column: 1 / -1;
    background: var(--surface);
}

.empty-state.visible {
    display: flex;
}

.empty-icon {
    font-family: var(--font-hero);
    font-size: 4.5rem;
    color: rgba(255, 255, 255, 0.05);
}

.empty-title {
    font-family: var(--font-hero);
    font-size: 2.2rem;
    color: var(--muted);
}

.empty-sub {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    color: var(--muted);
    opacity: 0.55;
    text-transform: uppercase;
}


/* ── 16. Product Card ────────────────────────────────────── */

.product-card {
    background: var(--surface);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(22px);
    transition:  opacity 0.45s ease, transform 0.3s ease, background 0.25s, box-shadow 0.3s ease;
}

.product-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    background: var(--surface2);
    transform:   translateY(-4px);
    box-shadow:  0 12px 40px rgba(232, 255, 0, 0.07), 0 4px  16px rgba(0, 0, 0, 0.4);
}

/* Accent border on hover */
.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    transition: border-color 0.25s;
    pointer-events: none;
    z-index: 2;
}

.product-card:hover::before {
    border-color: var(--accent);
}

/* Badge */
.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    z-index: 3;
}

.badge-hot {
    background: var(--accent);
    color: #0a0a0a;
}

.badge-new {
    background: var(--accent2);
    color: #0a0a0a;
}

.badge-deal {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}

/* Image area */
.product-img-wrap {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0d0d0d;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-hero);
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.06);
    transition: color 0.3s;
}

.product-card:hover .img-placeholder {
    color: rgba(255, 255, 255, 0.1);
}

/* Body */
.product-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.product-category {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    color: var(--accent2);
    text-transform: uppercase;
}

.product-name {
    font-family: var(--font-hero);
    font-size: 1.5rem;
    line-height: 1.05;
    color: var(--text);
}

.product-desc {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.65;
    flex: 1;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.product-tag {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    border: 1px solid var(--border);
    padding: 0.18rem 0.55rem;
    border-radius: 2px;
}

/* Footer */
.product-footer {
    padding: 1.1rem 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.price-label {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    color: var(--muted);
    text-transform: uppercase;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-value {
    font-family: var(--font-hero);
    font-size: 1.5rem;
    color: var(--accent);
    line-height: 1;
}

.price-old {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--muted);
    text-decoration: line-through;
}

/* CTA button */
.product-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0a0a0a;
    background: var(--accent);
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 2px;
    cursor: none;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.product-cta:hover {
    background: var(--accent2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 255, 224, 0.25);
}

.cta-arrow {
    transition: transform 0.2s;
}

.product-cta:hover .cta-arrow {
    transform: translateX(3px);
}


/* ── 17. Lazy-load Spinner ───────────────────────────────── */

.load-sentinel {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.load-spinner {
    width: 22px;
    height: 22px;
    border: 2px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    display: none;
}

.load-spinner.active {
    display: block;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* ── 18. Marquee ─────────────────────────────────────────── */

.marquee-wrap {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

.marquee-track {
    display: flex;
    animation: marquee 28s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    font-family: var(--font-hero);
    font-size: 1.1rem;
    letter-spacing: 0.18em;
    color: var(--muted);
    text-transform: uppercase;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.marquee-item .dot {
    color: var(--accent);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* ── 19. Footer ──────────────────────────────────────────── */

.bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    border-top: 1px solid var(--border);
}

.copyright {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: var(--muted);
}

.tagline {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-style: italic;
    color: var(--muted);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--muted);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s;
}

.social-link:hover {
    color: var(--accent);
}


/* ── 20. Responsive ──────────────────────────────────────── */

@media (max-width: 900px) {
    .sort-wrap {
        margin-left: 0;
    }
}

@media (max-width: 768px) {

    .top-bar,
    .hero-strip,
    .products-section,
    .bottom-bar,
    .controls-bar,
    .chips-bar {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .top-bar-right .status-pill {
        display: none;
    }

    .controls-bar {
        top: 87px;
    }
}

@media (max-width: 520px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .hero-headline {
        font-size: clamp(3rem, 14vw, 5rem);
    }

    .search-wrap {
        max-width: 100%;
    }
}