/* Desktop fixed stats */
@media (min-width: 1024px) {
.psp-fixed-stats {
    position: fixed;
    top: 200px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    z-index: 9999;
    align-items: center;
    padding: 10px 10px 10px 5px;
    border-radius: 0 10px 10px 0;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
}

.psp-fixed-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.psp-fixed-stats img {
    width: 30px;
    height: 30px;
}

.psp-fixed-stats .psp-count {
    font-size: 14px;
}

.psp-fixed-stats.psp-hide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.1s ease;
}

/* Mobile bottom bar */
.psp-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
    justify-content: space-evenly;
    align-items: center;
    padding: 10px 0;
    z-index: 9999;
}

.psp-mobile-bar span {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.psp-mobile-bar img {
    width: 24px;
    height: 24px;
}

.psp-mobile-bar .psp-count {
    font-size: 14px;
}

.psp-mobile-bar.psp-hide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

@media (max-width: 1024px) {
    .psp-fixed-stats {
        display: none;
    }

    .psp-mobile-bar {
        display: flex;
    }
}

/* Inline stats in list (archive) */
.psp-inline-stats {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 12px;
    font-size: 14px;
    color: #555;
}

.psp-inline-stats span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.psp-inline-stats img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}
