   /* ═══════════════════════════════════════
       TOKENS
    ═══════════════════════════════════════ */
   :root {
     --bg: #0d0d0f;
     --bg2: #131316;
     --bg3: #1a1a1f;
     --surface: #202026;
     --surface2: #28282f;
     --border: rgba(255, 255, 255, 0.06);
     --border2: rgba(255, 255, 255, 0.11);
     --text: #f0efe8;
     --text2: #9896a4;
     --muted: #54535f;
     --accent: #ff6a3d;
     --accent2: #ff8c66;
     --accent-dim: rgba(255, 106, 61, 0.10);
     --accent-glow: rgba(255, 106, 61, 0.25);
     --green: #22d383;
     --green-dim: rgba(34, 211, 131, 0.10);
     --amber: #f5a623;
     --blue: #4d9fff;
     --radius: 12px;
     --radius-sm: 8px;
     --radius-xs: 6px;
     --pill: 999px;
     --ease: cubic-bezier(.22, .68, 0, 1.2);
     --font: 'Outfit', sans-serif;
     --mono: 'JetBrains Mono', monospace;
     --hdr: 60px;
     --sidebar: 240px;
   }

   /* ═══════════════════════════════════════
       RESET
    ═══════════════════════════════════════ */
   *,
   *::before,
   *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
   }

   html {
     scroll-behavior: smooth;
   }

   body {
     font-family: var(--font);
     background: var(--bg);
     color: var(--text);
     min-height: 100vh;
     -webkit-font-smoothing: antialiased;
   }

   a {
     color: inherit;
     text-decoration: none;
   }

   button,
   select,
   input {
     font-family: inherit;
   }

   ::-webkit-scrollbar {
     width: 4px;
   }

   ::-webkit-scrollbar-track {
     background: var(--bg);
   }

   ::-webkit-scrollbar-thumb {
     background: var(--surface2);
     border-radius: var(--pill);
   }

   /* ═══════════════════════════════════════
       HEADER
    ═══════════════════════════════════════ */
   .hdr {
     position: sticky;
     top: 0;
     z-index: 200;
     height: var(--hdr);
     background: rgba(13, 13, 15, .9);
     backdrop-filter: blur(24px);
     -webkit-backdrop-filter: blur(24px);
     border-bottom: 1px solid var(--border);
   }

   .hdr-inner {
     max-width: 1320px;
     margin: 0 auto;
     padding: 0 24px;
     height: 100%;
     display: flex;
     align-items: center;
     gap: 20px;
   }

   .logo {
     font-weight: 800;
     font-size: 18px;
     letter-spacing: -0.5px;
     flex-shrink: 0;
     display: flex;
     align-items: center;
     gap: 6px;
   }

   .logo-icon {
     width: 28px;
     height: 28px;
     background: var(--accent);
     border-radius: 7px;
     display: grid;
     place-items: center;
     font-size: 14px;
   }

   .logo-text {
     color: var(--text);
   }

   .logo-text span {
     color: var(--accent);
   }

   /* Search */
   .search-wrap {
     flex: 1;
     max-width: 520px;
     position: relative;
   }

   .search-ico {
     position: absolute;
     left: 14px;
     top: 50%;
     transform: translateY(-50%);
     color: var(--muted);
     pointer-events: none;
   }

   .search-inp {
     width: 100%;
     background: var(--bg3);
     border: 1px solid var(--border2);
     border-radius: var(--pill);
     padding: 10px 18px 10px 42px;
     font-size: 14px;
     color: var(--text);
     outline: none;
     transition: border-color .2s, background .2s;
   }

   .search-inp::placeholder {
     color: var(--muted);
   }

   .search-inp:focus {
     border-color: var(--accent);
     background: var(--bg2);
   }

   .hdr-meta {
     flex-shrink: 0;
     margin-left: auto;
   }

   .hdr-count {
     font-size: 12px;
     color: var(--muted);
     font-family: var(--mono);
   }

   .hdr-count b {
     color: var(--text2);
     font-weight: 500;
   }

   /* ═══════════════════════════════════════
       HERO — compact strip
    ═══════════════════════════════════════ */
   .hero {
     max-width: 1320px;
     margin: 0 auto;
     padding: 32px 24px 0;
     display: flex;
     align-items: flex-end;
     justify-content: space-between;
     gap: 24px;
     flex-wrap: wrap;
   }

   .hero-left {}

   .hero-eyebrow {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     background: var(--accent-dim);
     border: 1px solid rgba(255, 106, 61, .18);
     border-radius: var(--pill);
     padding: 3px 12px;
     font-size: 11px;
     font-weight: 600;
     color: var(--accent2);
     letter-spacing: .06em;
     text-transform: uppercase;
     margin-bottom: 12px;
   }

   .hero-dot {
     width: 5px;
     height: 5px;
     background: var(--accent);
     border-radius: 50%;
     animation: pulse 2s ease-in-out infinite;
   }

   @keyframes pulse {

     0%,
     100% {
       opacity: 1;
       transform: scale(1);
     }

     50% {
       opacity: .3;
       transform: scale(.7);
     }
   }

   .hero h1 {
     font-size: clamp(22px, 3vw, 34px);
     font-weight: 800;
     letter-spacing: -1px;
     line-height: 1.1;
     color: var(--text);
   }

   .hero h1 em {
     font-style: normal;
     color: var(--accent);
   }

   .hero-sub {
     font-size: 14px;
     color: var(--text2);
     font-weight: 300;
     margin-top: 6px;
   }

   .hero-stats {
     display: flex;
     gap: 8px;
     flex-wrap: wrap;
     align-self: flex-end;
   }

   .stat-chip {
     background: var(--bg2);
     border: 1px solid var(--border);
     border-radius: var(--pill);
     padding: 7px 16px;
     font-size: 13px;
     display: flex;
     align-items: center;
     gap: 7px;
   }

   .stat-chip b {
     font-weight: 700;
     color: var(--text);
   }

   .stat-chip span {
     color: var(--muted);
     font-size: 12px;
   }

   /* ═══════════════════════════════════════
       LAYOUT MAIN
    ═══════════════════════════════════════ */
   .layout {
     max-width: 1320px;
     margin: 0 auto;
     padding: 24px 24px 80px;
     display: grid;
     grid-template-columns: var(--sidebar) 1fr;
     gap: 24px;
     align-items: start;
   }

   /* ═══════════════════════════════════════
       SIDEBAR
    ═══════════════════════════════════════ */
   .sidebar {
     position: sticky;
     top: calc(var(--hdr) + 16px);
     background: var(--bg2);
     border: 1px solid var(--border);
     border-radius: var(--radius);
     overflow: hidden;
   }

   .sb-section {
     padding: 16px;
     border-bottom: 1px solid var(--border);
   }

   .sb-section:last-child {
     border-bottom: none;
   }

   .sb-title {
     font-size: 9px;
     font-weight: 700;
     letter-spacing: .14em;
     text-transform: uppercase;
     color: var(--muted);
     margin-bottom: 12px;
   }

   /* Categories */
   .cat-list {
     display: flex;
     flex-direction: column;
     gap: 2px;
   }

   .cat-btn {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 8px 10px;
     border-radius: var(--radius-xs);
     border: 1px solid transparent;
     background: transparent;
     color: var(--text2);
     font-size: 13px;
     cursor: pointer;
     transition: background .12s, color .12s, border-color .12s;
     text-align: left;
     width: 100%;
   }

   .cat-btn:hover {
     background: var(--bg3);
     color: var(--text);
   }

   .cat-btn.active {
     background: var(--accent-dim);
     border-color: rgba(255, 106, 61, .22);
     color: var(--accent2);
   }

   .cat-count {
     background: var(--surface);
     border-radius: var(--pill);
     padding: 1px 7px;
     font-size: 10px;
     color: var(--muted);
     font-family: var(--mono);
   }

   .cat-btn.active .cat-count {
     background: rgba(255, 106, 61, .15);
     color: var(--accent);
   }

   /* Price Range */
   .price-range {
     display: flex;
     flex-direction: column;
     gap: 10px;
   }

   .price-inputs {
     display: flex;
     gap: 8px;
   }

   .price-inp {
     flex: 1;
     background: var(--bg3);
     border: 1px solid var(--border2);
     border-radius: var(--radius-xs);
     color: var(--text);
     font-size: 12px;
     padding: 7px 8px;
     outline: none;
     font-family: var(--mono);
     transition: border-color .2s;
     width: 100%;
   }

   .price-inp:focus {
     border-color: var(--accent);
   }

   .price-apply {
     background: var(--accent-dim);
     border: 1px solid rgba(255, 106, 61, .22);
     border-radius: var(--radius-xs);
     color: var(--accent2);
     font-size: 12px;
     font-weight: 600;
     padding: 7px 12px;
     cursor: pointer;
     width: 100%;
     transition: background .15s;
   }

   .price-apply:hover {
     background: rgba(255, 106, 61, .18);
   }

   /* Sort */
   .sort-sel {
     width: 100%;
     background: var(--bg3);
     border: 1px solid var(--border2);
     border-radius: var(--radius-xs);
     color: var(--text);
     font-size: 13px;
     padding: 9px 32px 9px 10px;
     outline: none;
     cursor: pointer;
     appearance: none;
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2354535f' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
     background-repeat: no-repeat;
     background-position: right 10px center;
     transition: border-color .2s;
   }

   .sort-sel:focus {
     border-color: var(--accent);
   }

   /* Clear */
   .clear-btn {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 6px;
     width: 100%;
     background: transparent;
     border: 1px solid var(--border2);
     border-radius: var(--radius-xs);
     color: var(--muted);
     font-size: 12px;
     padding: 9px;
     cursor: pointer;
     transition: border-color .15s, color .15s;
   }

   .clear-btn:hover {
     border-color: var(--accent);
     color: var(--accent);
   }

   /* ═══════════════════════════════════════
       CONTENT AREA
    ═══════════════════════════════════════ */
   .content {
     display: flex;
     flex-direction: column;
     gap: 0;
   }

   /* Toolbar */
   .toolbar {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 12px;
     margin-bottom: 16px;
     min-height: 36px;
   }

   .chips-row {
     display: flex;
     gap: 6px;
     flex-wrap: wrap;
     flex: 1;
   }

   .chip {
     display: inline-flex;
     align-items: center;
     gap: 4px;
     background: var(--accent-dim);
     border: 1px solid rgba(255, 106, 61, .2);
     border-radius: var(--pill);
     padding: 4px 10px;
     font-size: 11px;
     color: var(--accent2);
     cursor: pointer;
     transition: background .12s;
   }

   .chip:hover {
     background: rgba(255, 106, 61, .18);
   }

   .view-toggle {
     display: flex;
     gap: 2px;
     background: var(--bg2);
     border: 1px solid var(--border);
     border-radius: var(--radius-xs);
     padding: 3px;
     flex-shrink: 0;
   }

   .vbtn {
     border: none;
     background: transparent;
     color: var(--muted);
     padding: 5px 7px;
     border-radius: 5px;
     cursor: pointer;
     transition: background .12s, color .12s;
     line-height: 0;
   }

   .vbtn.active {
     background: var(--surface);
     color: var(--text);
   }

   /* ═══════════════════════════════════════
       PRODUCT GRID
    ═══════════════════════════════════════ */
   .pgrid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
     gap: 12px;
   }

   .pgrid.list {
     grid-template-columns: 1fr;
     gap: 8px;
   }

   /* ═══════════════════════════════════════
       SKELETON
    ═══════════════════════════════════════ */
   .skel {
     background: linear-gradient(90deg, var(--bg3) 25%, var(--surface) 50%, var(--bg3) 75%);
     background-size: 200% 100%;
     animation: shimmer 1.4s infinite;
     border-radius: var(--radius-xs);
   }

   @keyframes shimmer {
     0% {
       background-position: 200% 0;
     }

     100% {
       background-position: -200% 0;
     }
   }

   .skel-card {
     background: var(--bg2);
     border: 1px solid var(--border);
     border-radius: var(--radius);
     overflow: hidden;
     padding-bottom: 14px;
   }

   .skel-img {
     aspect-ratio: 1;
     border-radius: 0;
     margin-bottom: 14px;
   }

   .skel-line {
     height: 11px;
     margin: 8px 14px 0;
   }

   /* ═══════════════════════════════════════
       CARD — GRID
    ═══════════════════════════════════════ */
   .card {
     background: var(--bg2);
     border: 1px solid var(--border);
     border-radius: var(--radius);
     overflow: hidden;
     cursor: pointer;
     display: flex;
     flex-direction: column;
     position: relative;
     transition: border-color .2s, transform .22s var(--ease), box-shadow .22s;
     animation: fadeup .3s both;
   }

   @keyframes fadeup {
     from {
       opacity: 0;
       transform: translateY(8px);
     }

     to {
       opacity: 1;
       transform: translateY(0);
     }
   }

   .card:hover {
     border-color: rgba(255, 106, 61, .25);
     transform: translateY(-3px);
     box-shadow: 0 16px 40px rgba(0, 0, 0, .5);
   }

   /* Badge */
   .card-badge {
     position: absolute;
     top: 10px;
     left: 10px;
     z-index: 3;
     display: inline-flex;
     align-items: center;
     gap: 3px;
     padding: 3px 8px;
     border-radius: var(--pill);
     font-size: 10px;
     font-weight: 700;
     letter-spacing: .03em;
     backdrop-filter: blur(8px);
   }

   .badge-hot {
     background: rgba(255, 106, 61, .85);
     color: #fff;
   }

   .badge-best {
     background: rgba(34, 211, 131, .85);
     color: #0d0d0f;
   }

   .badge-promo {
     background: rgba(77, 159, 255, .85);
     color: #fff;
   }

   /* Image */
   .card-img {
     position: relative;
     aspect-ratio: 1;
     overflow: hidden;
     background: var(--bg3);
     flex-shrink: 0;
   }

   .card-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform .38s var(--ease);
     display: block;
   }

   .card:hover .card-img img {
     transform: scale(1.07);
   }

   /* CTA overlay */
   .card-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(to top, rgba(13, 13, 15, .88) 0%, transparent 52%);
     display: flex;
     align-items: flex-end;
     justify-content: center;
     padding-bottom: 12px;
     opacity: 0;
     transition: opacity .18s;
     pointer-events: none;
     z-index: 2;
   }

   .card:hover .card-overlay {
     opacity: 1;
   }

   .cta-pill {
     background: var(--accent);
     color: #fff;
     font-weight: 700;
     font-size: 12px;
     padding: 8px 20px;
     border-radius: var(--pill);
     letter-spacing: .03em;
     box-shadow: 0 4px 18px var(--accent-glow);
     pointer-events: auto;
   }

   /* Body */
   .card-body {
     padding: 10px 12px 12px;
     display: flex;
     flex-direction: column;
     gap: 6px;
     flex: 1;
   }

   .card-name {
     font-size: 12.5px;
     color: var(--text);
     line-height: 1.45;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
   }

   .card-bottom {
     margin-top: auto;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 6px;
   }

   .card-price {
     font-family: var(--mono);
     font-size: 15px;
     font-weight: 500;
     color: var(--green);
     letter-spacing: -0.3px;
   }

   .card-source {
     font-size: 10px;
     color: var(--muted);
     background: var(--surface);
     padding: 2px 7px;
     border-radius: var(--pill);
   }

   /* ═══════════════════════════════════════
       CARD — LIST VIEW
    ═══════════════════════════════════════ */
   .pgrid.list .card {
     flex-direction: row;
     min-height: 100px;
   }

   .pgrid.list .card-img {
     width: 100px;
     aspect-ratio: auto;
     flex-shrink: 0;
     border-radius: 0;
   }

   .pgrid.list .card-overlay {
     display: none;
   }

   .pgrid.list .card-body {
     padding: 12px 14px;
     justify-content: center;
   }

   .pgrid.list .card-name {
     -webkit-line-clamp: 1;
     font-size: 14px;
   }

   .pgrid.list .card-bottom {
     flex-direction: row;
     align-items: center;
   }

   .pgrid.list .list-cta {
     display: flex !important;
   }

   .list-cta {
     display: none;
     align-items: center;
     padding: 0 14px 0 0;
     flex-shrink: 0;
   }

   .list-cta-btn {
     background: var(--accent);
     color: #fff;
     font-weight: 700;
     font-size: 11px;
     padding: 7px 14px;
     border-radius: var(--radius-xs);
     white-space: nowrap;
     cursor: pointer;
     transition: opacity .14s;
   }

   .list-cta-btn:hover {
     opacity: .85;
   }

   /* ═══════════════════════════════════════
       PAGINATION
    ═══════════════════════════════════════ */
   .pagination {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     margin-top: 28px;
   }

   .pg-btn {
     background: var(--bg2);
     border: 1px solid var(--border2);
     border-radius: var(--radius-xs);
     color: var(--text2);
     font-size: 13px;
     padding: 8px 18px;
     cursor: pointer;
     transition: border-color .15s, color .15s;
   }

   .pg-btn:hover:not(:disabled) {
     border-color: var(--accent);
     color: var(--accent);
   }

   .pg-btn:disabled {
     opacity: .35;
     cursor: not-allowed;
   }

   .pg-info {
     font-size: 12px;
     color: var(--muted);
     font-family: var(--mono);
     padding: 0 4px;
   }

   /* ═══════════════════════════════════════
       EMPTY STATE
    ═══════════════════════════════════════ */
   .empty {
     grid-column: 1/-1;
     text-align: center;
     padding: 80px 20px;
   }

   .empty-icon {
     font-size: 40px;
     opacity: .25;
     margin-bottom: 14px;
   }

   .empty h3 {
     font-size: 18px;
     font-weight: 700;
     margin-bottom: 6px;
   }

   .empty p {
     font-size: 14px;
     color: var(--text2);
   }

   /* ═══════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════ */
   .footer {
     border-top: 1px solid var(--border);
     text-align: center;
     padding: 20px 24px;
     font-size: 11px;
     color: var(--muted);
   }

   /* ═══════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════ */
   @media (max-width: 960px) {
     .layout {
       grid-template-columns: 1fr;
       padding: 16px 16px 60px;
     }

     .sidebar {
       position: static;
     }

     .sb-section {
       display: inline-block;
       min-width: 180px;
     }

     .sidebar {
       display: flex;
       flex-wrap: wrap;
       gap: 0;
     }
   }

   @media (max-width: 640px) {
     :root {
       --hdr: 54px;
     }

     .hero {
       padding: 20px 16px 0;
       flex-direction: column;
       align-items: flex-start;
     }

     .layout {
       padding: 14px 12px 60px;
       gap: 16px;
     }

     .hdr-meta {
       display: none;
     }

     .pgrid {
       grid-template-columns: repeat(2, 1fr);
       gap: 10px;
     }

     .pgrid.list {
       grid-template-columns: 1fr;
     }

     .search-wrap {
       max-width: 100%;
     }
   }