.snkr-popup {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 300px;
    max-height: 70vh;
    background: #fff;
    border: 2px solid #c6ff00;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.18);
    z-index: 999999;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    font-family: inherit;
    animation: snkr-popup-in .35s ease;
}

@keyframes snkr-popup-in {
    from { transform: translateY(20px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

.snkr-popup.snkr-popup-hidden {
    display: none;
}

.snkr-popup-header {
    padding: 12px 40px 12px 16px;
    font-weight: 700;
    font-size: 14px;
    border-bottom: 2px solid #c6ff00;
    background: #c6ff00;
    color: #111;
}

.snkr-popup-header-link {
    color: #111 !important;
    text-decoration: none;
}

.snkr-popup-header-link:hover {
    text-decoration: underline;
}

.snkr-popup-close {
    position: absolute;
    top: 6px;
    right: 8px;
    background: transparent;
    border: none;
    color: #111;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    padding: 6px;
}

.snkr-popup-list {
    overflow-y: auto;
    padding: 6px;
}

.snkr-popup-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px;
    border-radius: 8px;
}

.snkr-popup-item:hover {
    background: #f5f5f5;
}

.snkr-popup-item img,
.snkr-popup-item-img-placeholder {
    width: 44px !important;
    height: 44px !important;
    object-fit: contain !important;
    object-position: center !important;
    border-radius: 6px;
    flex-shrink: 0;
    background: #f0f0f0;
    padding: 2px;
    box-sizing: border-box;
}

.snkr-popup-item-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1 1 auto;
    gap: 4px;
}

.snkr-popup-item-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.snkr-popup-item-text strong {
    font-size: 13px;
    font-weight: 600;
    color: #111 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.snkr-popup-item-text small {
    font-size: 11px;
    color: #888 !important;
}

.snkr-popup-item-links {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.snkr-popup-link {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 999px;
    background: #111;
    color: #fff !important;
    text-decoration: none;
}

@media (max-width: 480px) {
    .snkr-popup {
        right: 10px;
        left: 10px;
        bottom: 10px;
        width: auto;
    }
}
