/* MarathonDB — Stickers catalog (cosmetics grid, implants-style chrome) */

.stickers-list-page {
    --wl-border: rgba(255, 255, 255, 0.08);
    --wl-border-hover: rgba(255, 255, 255, 0.16);
    text-transform: uppercase;
    background: var(--bg-black);
}

.stickers-list-page input,
.stickers-list-page select,
.stickers-list-page .footer-disclaimer,
.stickers-list-page .footer-platform,
.stickers-list-page .footer-links,
.stickers-list-page .sticker-card-desc,
.stickers-list-page .sticker-card-acq {
    text-transform: none;
}

.stickers-list-page .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 18px 0 0;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--text-dim);
}

.stickers-list-page .breadcrumb a {
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.stickers-list-page .breadcrumb a:hover {
    color: var(--neon);
}

.stickers-list-page .breadcrumb .separator {
    opacity: 0.45;
}

.stickers-list-page .wp-header {
    display: block;
    padding: 14px 0 12px;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stickers-list-page .wp-header-main {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px 16px;
}

.stickers-list-page .wp-header-copy {
    min-width: 0;
}

.stickers-list-page .wp-eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3.5px;
    color: var(--neon-dim);
    margin: 0 0 6px;
}

.stickers-list-page .wp-title {
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-white);
    margin: 0;
    line-height: 1.1;
}

.stickers-list-page .wp-title .db-page-count {
    font-weight: 600;
    color: var(--text-dim);
    letter-spacing: 1px;
    font-size: 0.72em;
}

.stickers-list-page .wp-header-main .db-toolbar-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-left: auto;
}

.stickers-toolbar-stack {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 10px 0 12px;
}

.stickers-toolbar-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.stickers-toolbar-row .db-toolbar-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.stickers-list-page .db-filter-btn {
    appearance: none;
    border: 1px solid var(--wl-border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    font: inherit;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    padding: 5px 8px;
    cursor: pointer;
    clip-path: var(--clip-corner);
    transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
}

.stickers-list-page .db-filter-btn:hover {
    border-color: var(--wl-border-hover);
    color: var(--text-primary);
}

.stickers-list-page .db-filter-btn.active {
    border-color: rgba(212, 255, 0, 0.45);
    color: var(--neon);
    background: rgba(212, 255, 0, 0.08);
}

.stickers-list-page .db-search,
.stickers-list-page .db-sort {
    appearance: none;
    border: 1px solid var(--wl-border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    font: inherit;
    font-size: 0.8rem;
    padding: 6px 10px;
    min-height: 32px;
    clip-path: var(--clip-corner);
}

.stickers-list-page .db-search {
    min-width: min(200px, 100%);
}

.stickers-list-page .db-sort {
    cursor: pointer;
}

/* Square sticker grid */
.stickers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-bottom: 48px;
    min-height: 120px;
}

.stickers-list-page .sticker-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--wl-border);
    clip-path: var(--clip-corner);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color var(--transition-fast), background var(--transition-fast);
}

.stickers-list-page .sticker-card:hover {
    border-color: var(--wl-border-hover);
    background: rgba(255, 255, 255, 0.045);
}

.stickers-list-page .sticker-card.rarity-superior {
    border-color: rgba(168, 85, 247, 0.28);
    box-shadow: inset 3px 0 0 #a855f7;
}

.stickers-list-page .sticker-card.rarity-prestige {
    border-color: rgba(240, 222, 15, 0.3);
    box-shadow: inset 3px 0 0 #f0de0f;
}

.stickers-list-page .sticker-card.rarity-deluxe {
    box-shadow: inset 3px 0 0 #3b82f6;
}

.stickers-list-page .sticker-card.rarity-enhanced {
    box-shadow: inset 3px 0 0 #02e185;
}

.stickers-list-page .sticker-card-art {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.stickers-list-page .sticker-card-art img {
    width: 78%;
    height: 78%;
    object-fit: contain;
    display: block;
}

.stickers-list-page .sticker-card-art--empty {
    color: var(--text-dim);
}

.stickers-list-page .sticker-card-art--empty svg {
    width: 36px;
    height: 36px;
    opacity: 0.4;
}

.stickers-list-page .sticker-card-body {
    min-width: 0;
}

.stickers-list-page .sticker-card-name {
    margin: 0 0 6px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    line-height: 1.2;
    color: var(--text-white);
}

.stickers-list-page .sticker-card-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 8px;
}

.stickers-list-page .lab-pill {
    display: inline-flex;
    align-items: center;
    padding: 2px 7px;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stickers-list-page .lab-pill--rarity.rarity-prestige { color: #f5c542; border-color: rgba(245, 197, 66, 0.35); }
.stickers-list-page .lab-pill--rarity.rarity-superior { color: #c084fc; border-color: rgba(192, 132, 252, 0.35); }
.stickers-list-page .lab-pill--rarity.rarity-deluxe { color: #60a5fa; border-color: rgba(96, 165, 250, 0.35); }
.stickers-list-page .lab-pill--rarity.rarity-enhanced { color: #34d399; border-color: rgba(52, 211, 153, 0.35); }

.stickers-list-page .sticker-card-desc,
.stickers-list-page .sticker-card-acq {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0;
    color: var(--text-secondary);
    line-height: 1.4;
}

.stickers-list-page .sticker-card-acq {
    margin-top: 6px;
    color: var(--text-dim);
}

.stickers-list-page .db-empty {
    grid-column: 1 / -1;
    padding: 48px 16px;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.9rem;
    letter-spacing: 0;
    text-transform: none;
}

.stickers-list-page .lab-skel {
    height: 260px;
    background: linear-gradient(90deg, rgba(255,255,255,0.03), rgba(255,255,255,0.07), rgba(255,255,255,0.03));
    background-size: 200% 100%;
    animation: stickers-skel 1.2s ease-in-out infinite;
    border: 1px solid var(--wl-border);
    clip-path: var(--clip-corner);
}

@keyframes stickers-skel {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

@media (max-width: 600px) {
    .stickers-list-page .wp-header-main .db-toolbar-controls {
        width: 100%;
        margin-left: 0;
    }

    .stickers-list-page .db-search {
        flex: 1 1 auto;
        min-width: 0;
    }

    .stickers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }
}
