.header-favorites-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none !important;
    transition: color 0.15s;
    margin-right: 12px;
    background: transparent;
    border: 0;
    padding: 0;
}

.header-favorites-btn:hover {
    color: var(--4win-primary);
}

.header-favorites-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #ea1e63;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    display: none;
    border: 2px solid #edf0f5;
}

.header-favorites-panel {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(420px, 92vw);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e6e8eb;
    z-index: 1003;
    overflow: hidden;
}

.header-favorites-panel.open {
    display: block;
}

.header-favorites-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    padding: 12px 14px;
    border-bottom: 1px solid #eef1f4;
}

.header-favorites-clear {
    border: 0;
    background: transparent;
    color: #7a8596;
    font-size: 12px;
    font-weight: 700;
    padding: 0;
}

.header-favorites-clear:hover {
    color: #d64545;
}

.header-favorites-list {
    max-height: 420px;
    overflow-y: auto;
}

.header-favorites-empty {
    font-size: 13px;
    font-weight: 600;
    color: #7a8596;
    padding: 16px 14px;
}

.header-favorites-item {
    display: grid;
    grid-template-columns: 46px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 10px 14px;
    text-decoration: none !important;
    border-bottom: 1px solid #f0f2f5;
}

.header-favorites-item:hover {
    background: #f8fafc;
}

.header-favorites-thumb {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    object-fit: cover;
    background: #f3f5f8;
}

.header-favorites-name {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.25;
}

.header-favorites-price {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    white-space: nowrap;
}

.header-favorites-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-favorites-remove {
    border: 0;
    background: transparent;
    color: #9aa3b2;
    font-size: 16px;
    line-height: 1;
    padding: 0;
}

.header-favorites-remove:hover {
    color: #d64545;
}

@media (max-width: 768px) {
    .header-favorites-btn {
        margin-right: 10px;
    }

    .header-favorites-panel {
        position: fixed;
        left: 10px;
        right: 10px;
        top: 62px;
        width: auto;
    }

    .header-favorites-list {
        max-height: min(62vh, 420px);
    }
}
